Edgewall Software

Ticket #11014: t11014-r11483-2.patch

File t11014-r11483-2.patch, 1.2 KB (added by anonymous, 13 years ago)
  • trac/htdocs/css/report.css

    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 {  
    224224
    225225/* Batchmod Form */
    226226
     227
     228
    227229#batchmod_form fieldset input#batchmod_submit { font-size: 14px; }
    228230#batchmod_form fieldset input[type="button"]{ padding: 0.1em 0.5em; }
    229231#batchmod_form > fieldset { margin-top: 1.5em }
  • trac/htdocs/js/query.js

    diff --git a/trac/htdocs/js/query.js b/trac/htdocs/js/query.js
    index 1454f13..275a239 100644
    a b  
    392392    });
    393393
    394394    // 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.
    396396    $("table.listing tr th.id").each(function() {
    397397      $(this).before(
    398398        $('<th class="batchmod_selector">').append(
     
    449449      return valid;
    450450    });
    451451
     452
     453
     454
    452455    // Collapse the form by default
    453456    $("#batchmod_fieldset").toggleClass("collapsed");
    454457