Make WordPress Core

Ticket #41155: 41155.1.patch

File 41155.1.patch, 958 bytes (added by Girishpanchal, 7 years ago)

Hi, @adamsilverstein, Updated theme.css for appearing admin sidebar submenu. Also, Decreased the width of theme overlay for a perfect view of the submenu.

  • src/wp-admin/css/themes.css

     
    370370        bottom: 0;
    371371        background: #f1f1f1;
    372372        background: rgba( 238, 238, 238, 0.9 );
    373         z-index: 10000; /* Over WP Pointers. */
     373        z-index: 9989; /* Over WP Pointers. */
    374374}
    375375
    376376.theme-overlay .theme-header {
     
    481481        background: #fff;
    482482        -webkit-box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    483483        box-shadow: 0 1px 20px 5px rgba(0, 0, 0, 0.1);
    484         z-index: 10000; /* Over WP Pointers. */
     484        z-index: 9990; /* Over WP Pointers. */
    485485        -webkit-box-sizing: border-box;
    486486        -moz-box-sizing: border-box;
    487487        box-sizing: border-box;
     
    801801
    802802@media only screen and (min-width: 1680px) {
    803803        .theme-overlay .theme-wrap {
    804                 width: 1450px;
     804                width: 1435px; /* Reduced theme overlay width for admin sidebar submenu */
    805805                margin: 0 auto;
    806806        }
    807807}