Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #64466


Ignore:
Timestamp:
01/01/2026 11:01:58 AM (7 months ago)
Author:
sabernhardt
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #64466 – Description

    initial v1  
    2121In `wp-admin/css/common.min.css` (version 6.9), the following CSS creates a circular height dependency:
    2222
    23 ```css
     23{{{#!css
    2424#wpwrap {
    2525    min-height: 100%;
     
    2929    height: 100%;
    3030}
    31 ```
     31}}}
    3232
    3333**The problem:**
     
    5151Change the CSS in `wp-admin/css/common.css` from:
    5252
    53 ```css
     53{{{#!css
    5454#wpwrap {
    5555    min-height: 100%;
     
    5959    height: 100%;
    6060}
    61 ```
     61}}}
    6262
    6363To:
    6464
    65 ```css
     65{{{#!css
    6666html {
    6767    height: 100%;
     
    8282    height: auto;
    8383}
    84 ```
     84}}}
    8585
    8686This approach:
     
    9494Site administrators can add this CSS to their admin theme or via a plugin:
    9595
    96 ```css
     96{{{#!css
    9797html {
    9898    height: 100%;
     
    113113    height: auto !important;
    114114}
    115 ```
     115}}}
    116116
    117117**Impact:**