Make WordPress Core

Ticket #29556: 29556.2.diff

File 29556.2.diff, 2.8 KB (added by obenland, 10 years ago)
  • src/wp-admin/css/common.css

     
    10171017}
    10181018
    10191019.wp-filter .search-form {
    1020         float: right;
    1021         margin-top: 9px;
     1020        margin: 10px;
     1021        position: absolute;
     1022        right: 0;
     1023        top: 0;
    10221024}
    10231025
    10241026.wp-filter .search-form input[type="search"] {
     
    10831085.show-filters .filter-drawer {
    10841086        display: block;
    10851087        overflow: hidden;
     1088        width: 100%;
    10861089}
    10871090
    10881091.show-filters .wp-filter .drawer-toggle:hover,
     
    11131116        float: left;
    11141117        margin: 0 1% 0 0;
    11151118        padding: 10px;
    1116         width: 19%;
     1119        width: 24%;
    11171120        background: #fff;
    11181121        border: 1px solid #e5e5e5;
    11191122        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    11201123        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    11211124}
    11221125
    1123 .filter-group.wide {
    1124         width: 38%;
    1125 }
    1126 
    11271126.filter-group h4 {
    11281127        position: relative;
    11291128        margin: 0;
     
    12191218}
    12201219
    12211220@media only screen and (max-width: 1120px) {
    1222         .wp-filter .search-form {
    1223                 float: none;
    1224                 margin: 20px 0;
    1225         }
    1226 
    12271221        .filter-drawer {
    12281222                border-bottom: 1px solid #eee;
    12291223        }
     
    12391233        }
    12401234}
    12411235
     1236@media only screen and (max-width: 910px) {
     1237        .wp-filter .search-form {
     1238                position: relative;
     1239                margin: 20px 0;
     1240        }
     1241}
     1242
    12421243@media only screen and (max-width: 782px) {
    1243         .filter-group,
    12441244        .filter-group li {
    1245                 width: 100%;
     1245                padding: 0;
     1246                width: 50%;
    12461247        }
    1247 
    12481248}
    12491249
     1250@media only screen and (max-width: 320px) {
     1251        .filter-count {
     1252                display: none;
     1253        }
     1254
     1255        .wp-filter .drawer-toggle {
     1256                margin: 10px 0;
     1257        }
     1258
     1259        .filter-group li,
     1260        .wp-filter .search-form input[type="search"] {
     1261                width: 100%;
     1262        }
     1263}
    12501264
    12511265/*------------------------------------------------------------------------------
    12521266  4.0 - Notifications
  • src/wp-admin/css/themes.css

     
    17291729        .available-theme .action-links .delete-theme a {
    17301730                padding: 0;
    17311731        }
     1732
     1733        .theme-install-overlay .wp-full-overlay-header .theme-install {
     1734                margin-top: 2px;
     1735        }
    17321736}
  • src/wp-admin/theme-install.php

     
    154154                <?php
    155155                $feature_list = get_theme_feature_list();
    156156                foreach ( $feature_list as $feature_name => $features ) {
    157                         if ( $feature_name === 'Features' || $feature_name === __( 'Features' ) ) { // hack hack hack
    158                                 echo '<div class="filter-group wide">';
    159                         } else {
    160                                 echo '<div class="filter-group">';
    161                         }
     157                        echo '<div class="filter-group">';
     158
    162159                        $feature_name = esc_html( $feature_name );
    163160                        echo '<h4>' . $feature_name . '</h4>';
    164161                        echo '<ol class="feature-group">';