Changes between Initial Version and Version 1 of Ticket #33300


Ignore:
Timestamp:
Nov 18, 2021, 1:48:03 PM (2 years ago)
Author:
Mariusz Felisiak
Comment:

Thanks for the report.

PR

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33300

    • Property Has patch set
    • Property Owner changed from nobody to xdqc
    • Property Status newassigned
    • Property Summary admin form hidden field css error.Hidden fields are visible on small screens.
    • Property UI/UX set
  • Ticket #33300 – Description

    initial v1  
    11hidden admin field has wrapped div:
     2{{{
    23<div class="fieldBox field-value_char hidden">...</div>
    3 
    4 it is should be hidden:
    5 base.css, 302 row
     4}}}
     5it is should be hidden: `base.css`, 302 row
     6{{{
    67.hidden {
    78    display: none;
    89}
    9 
    10 But not for small screen:
    11 responsive.css, 559 row
     10}}}
     11But not for small screen: `responsive.css`, 559 row
     12{{{
    1213@media (max-width: 767px)
    1314.aligned .form-row, .aligned .form-row > div {
     
    1516    ...
    1617}
    17 
     18}}}
Back to Top