diff --git a/trac/htdocs/css/report.css b/trac/htdocs/css/report.css
index 190b025..85e38b7 100644
|
a
|
b
|
table.tickets tbody tr.fullrow th {
|
| 224 | 224 | |
| 225 | 225 | /* Batchmod Form */ |
| 226 | 226 | |
| | 227 | |
| | 228 | |
| 227 | 229 | #batchmod_form fieldset input#batchmod_submit { font-size: 14px; } |
| 228 | 230 | #batchmod_form fieldset input[type="button"]{ padding: 0.1em 0.5em; } |
| 229 | 231 | #batchmod_form > fieldset { margin-top: 1.5em } |
diff --git a/trac/htdocs/js/query.js b/trac/htdocs/js/query.js
index 1454f13..275a239 100644
|
a
|
b
|
|
| 392 | 392 | }); |
| 393 | 393 | |
| 394 | 394 | // Add a checkbox at the top of the column |
| 395 | | // to select ever ticket in the group. |
| | 395 | // to select ever ticket in the group. |
| 396 | 396 | $("table.listing tr th.id").each(function() { |
| 397 | 397 | $(this).before( |
| 398 | 398 | $('<th class="batchmod_selector">').append( |
| … |
… |
|
| 449 | 449 | return valid; |
| 450 | 450 | }); |
| 451 | 451 | |
| | 452 | |
| | 453 | |
| | 454 | |
| 452 | 455 | // Collapse the form by default |
| 453 | 456 | $("#batchmod_fieldset").toggleClass("collapsed"); |
| 454 | 457 | |