Opened 3 years ago
Closed 3 years ago
#33300 closed Bug (fixed)
Hidden fields are visible on small screens.
Reported by: | Maxim Danilov | Owned by: | Shubh Parmar |
---|---|---|---|
Component: | contrib.admin | Version: | 4.0 |
Severity: | Normal | Keywords: | admin, modeladmin, css |
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | yes |
Description (last modified by )
hidden admin field has wrapped div:
<div class="fieldBox field-value_char hidden">...</div>
it is should be hidden: base.css
, 302 row
.hidden { display: none; }
But not for small screen: responsive.css
, 559 row
@media (max-width: 767px) .aligned .form-row, .aligned .form-row > div { display: flex; ... }
Change History (7)
comment:1 by , 3 years ago
Description: | modified (diff) |
---|---|
Has patch: | set |
Owner: | changed from | to
Status: | new → assigned |
Summary: | admin form hidden field css error. → Hidden fields are visible on small screens. |
UI/UX: | set |
comment:2 by , 3 years ago
Triage Stage: | Unreviewed → Accepted |
---|
comment:3 by , 3 years ago
Needs tests: | set |
---|
comment:6 by , 3 years ago
Needs tests: | unset |
---|---|
Triage Stage: | Accepted → Ready for checkin |
Note:
See TracTickets
for help on using tickets.
Thanks for the report.
PR