Make WordPress Core

Ticket #32296: 32296-d.diff

File 32296-d.diff, 1.9 KB (added by timmydcrawford, 7 years ago)
  • src/wp-admin/css/customize-controls.css

     
    11891189.customize-section-description-container + #customize-control-custom_css:last-child {
    11901190        margin-left: -12px;
    11911191        width: 299px;
     1192        width: -webkit-calc( 100% + 24px );
     1193        width: calc( 100% + 24px );
    11921194        margin-bottom: -12px;
    11931195}
    11941196
    11951197@media screen and ( max-width: 640px ) {
    11961198        .customize-section-description-container + #customize-control-custom_css:last-child {
    1197                 margin-left: 0;
    11981199                margin-right: 0;
    1199                 width: 100%;
    12001200        }
    12011201        .customize-section-description-container + #customize-control-custom_css:last-child textarea {
    12021202                height: -webkit-calc( 100vh - 140px );
    12031203                height: calc( 100vh - 140px );
    1204                 width: 100%;
    1205                 border: solid 1px #ddd;
    12061204        }
    12071205}
    12081206
  • src/wp-admin/css/themes.css

     
    13321332        -moz-box-sizing: border-box;
    13331333        box-sizing: border-box;
    13341334        position: fixed;
    1335         width: 300px;
     1335        min-width: 300px;
     1336        max-width: 600px;
     1337        width: 18%;
    13361338        height: 100%;
    13371339        top: 0;
    13381340        bottom: 0;
     
    13611363        margin-left: -300px;
    13621364}
    13631365
     1366@media screen and (min-width: 1667px) {
     1367        .wp-full-overlay.expanded {
     1368                margin-left: 18%;
     1369        }
     1370
     1371        .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
     1372                margin-left: -18%;
     1373        }
     1374}
     1375
     1376@media screen and (min-width: 3333px) {
     1377        .wp-full-overlay.expanded {
     1378                margin-left: 600px;
     1379        }
     1380
     1381        .wp-full-overlay.collapsed .wp-full-overlay-sidebar {
     1382                margin-left: -600px;
     1383        }
     1384}
     1385
    13641386.wp-full-overlay-sidebar:after {
    13651387        content: "";
    13661388        display: block;
     
    16161638        position: fixed;
    16171639        bottom: 0;
    16181640        left: 0;
    1619         width: 299px;
     1641        min-width: 299px;
     1642        max-width: 599px;
     1643        width: 18%;
    16201644        height: 45px;
    16211645        border-top: 1px solid #ddd;
    16221646        background: #eee;