Make WordPress Core

Ticket #29556: 29556.3.diff

File 29556.3.diff, 3.5 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                float: none; /* Remove float from media-views.css */
     1239                position: relative;
     1240                margin: 20px 0;
     1241        }
     1242}
     1243
    12421244@media only screen and (max-width: 782px) {
    1243         .filter-group,
    12441245        .filter-group li {
    1245                 width: 100%;
     1246                padding: 0;
     1247                width: 50%;
    12461248        }
    1247 
    12481249}
    12491250
     1251@media only screen and (max-width: 320px) {
     1252        .filter-count {
     1253                display: none;
     1254        }
     1255
     1256        .wp-filter .drawer-toggle {
     1257                margin: 10px 0;
     1258        }
     1259
     1260        .filter-group li,
     1261        .wp-filter .search-form input[type="search"] {
     1262                width: 100%;
     1263        }
     1264}
    12501265
    12511266/*------------------------------------------------------------------------------
    12521267  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

     
    145145                <?php
    146146                $feature_list = get_theme_feature_list();
    147147                foreach ( $feature_list as $feature_name => $features ) {
    148                         if ( $feature_name === 'Features' || $feature_name === __( 'Features' ) ) { // hack hack hack
    149                                 echo '<div class="filter-group wide">';
    150                         } else {
    151                                 echo '<div class="filter-group">';
    152                         }
     148                        echo '<div class="filter-group">';
     149
    153150                        $feature_name = esc_html( $feature_name );
    154151                        echo '<h4>' . $feature_name . '</h4>';
    155152                        echo '<ol class="feature-group">';
  • src/wp-includes/css/media-views.css

     
    21432143}
    21442144
    21452145@media only screen and (max-width: 940px) {
    2146         .media-frame-content .media-toolbar-primary .search,
    21472146        .media-frame-content .media-toolbar-secondary .attachment-filters {
    21482147                max-width: 134px;
    21492148        }
     
    24622461}
    24632462
    24642463@media only screen and (max-width: 480px) {
    2465         .media-frame-content .media-toolbar .search,
    24662464        .media-frame-content .media-toolbar .attachment-filters {
    24672465                max-width: 90px;
    24682466        }