Modify ↓
#7675 closed defect (fixed)
Styling of "Change tickets" submit button
Reported by: | osimons | Owned by: | CuriousCurmudgeon |
---|---|---|---|
Priority: | normal | Component: | BatchModifyPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.12 |
Description
I have a Trac with a somewhat restyled interface, and the 'submit' button does not follow the styling of all the other buttons due to some missing class information + a plugin-specific size in the css.
I've fixed it running current 0.12 version using this patch:
-
batchmod/htdocs/css/batchmod.css
7 7 font-size: 11px; 8 8 } 9 9 10 #batchmod_form fieldset input#batchmod_submit {11 font-size: 14px;12 }13 14 10 #batchmod_form fieldset input[type="button"]{ 15 11 padding: 0.1em 0.5em; 16 12 } -
batchmod/templates/batchmod.html
37 37 </tr> 38 38 </table> 39 39 40 <div >40 <div class="buttons"> 41 41 <input type="hidden" name="selectedTickets" value=""/> 42 42 <input type="hidden" name="query_href" value="${query_href}"/> 43 43 <input type="submit" id="batchmod_submit" name="batchmod_submit" value="Change tickets" />
This allows the button to pick up on the general styling of buttons used by the themed Trac.
Attachments (0)
Change History (3)
comment:1 Changed 14 years ago by
comment:2 Changed 14 years ago by
Status: | new → assigned |
---|
comment:3 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Thanks for the patch. It is now applied on the trunk.
Note: See
TracTickets for help on using
tickets.
(In [8814]) refs #7675