#2719 closed defect (duplicate)
styles for edit_inline broken, forms.css
Reported by: | Owned by: | Adrian Holovaty | |
---|---|---|---|
Component: | contrib.admin | Version: | |
Severity: | normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
when using edit_inline=models.STACKED, the admin-interface looks strange.
with changing the following lines in forms.css it´s fine again:
label.inline { margin-left:20px; }
TO: label.inline { font-weight:normal !important; color:#666; font-size:12px; }
.aligned label.inline { display:inline; float:none; }
TO: .aligned label.inline { display:block; padding:0 1em 3px 0; float:left; width:8em; }
Note:
See TracTickets
for help on using tickets.
duplicate of #2205