Modify ↓
Opened 11 years ago
Closed 11 years ago
#11470 closed enhancement (fixed)
Add left margin to the Add button on the admin panels add form
Reported by: | Ryan J Ollos | Owned by: | Ryan J Ollos |
---|---|---|---|
Priority: | normal | Milestone: | 1.0.2 |
Component: | admin/web | Version: | |
Severity: | normal | Keywords: | css |
Cc: | Branch: | ||
Release Notes: |
Increased spacing between the Add button and the field to its left on the admin |
||
API Changes: | |||
Internal Changes: |
Description (last modified by )
This is a small refinement following [11164]. Now that the Add button is displayed in a horizontal form, I think it could benefit from a slightly larger margin to its left.
-
trac/htdocs/css/admin.css
diff --git a/trac/htdocs/css/admin.css b/trac/htdocs/css/admin.css index 908d841..5541a05 100644
a b form.addnew div.buttons { 60 60 padding: 0.2em 0.5em 0.2em 0; 61 61 white-space: nowrap; 62 62 } 63 form.addnew div.buttons { margin-left: 0.5em; } 63 64 form.addnew div.buttons input { margin: 0 0.5em 0 0; } 64 65 form.addnew p.hint, 65 66 form.addnew span.hint { 66 67 padding-left: 0.5em; 67 padding-right: 0.5em;68 68 } 69 69 form.addnew p.help { margin-top: 0.5em; } 70 70 form.addnew br { display: none; }
Attachments (1)
Change History (7)
comment:1 by , 11 years ago
Status: | new → assigned |
---|
comment:2 by , 11 years ago
Description: | modified (diff) |
---|
comment:3 by , 11 years ago
Description: | modified (diff) |
---|
by , 11 years ago
Attachment: | 20140205T192904.png added |
---|
comment:4 by , 11 years ago
comment:6 by , 11 years ago
Release Notes: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
I like
margin-right
rather thanmargin-left
. When the button is wrapped, the label and the button don't align at the left.