Make WordPress Core

Ticket #29556: 29556.4.diff

File 29556.4.diff, 3.9 KB (added by TacoVerdo, 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"] {
    10251027        margin: 0;
    10261028        padding: 3px 5px;
    1027         width: 280px;
     1029        max-width: 280px;
     1030        width: 100%;
    10281031        font-size: 16px;
    10291032        font-weight: 300;
    10301033        line-height: 1.5;
     
    10831086.show-filters .filter-drawer {
    10841087        display: block;
    10851088        overflow: hidden;
     1089        width: 100%;
    10861090}
    10871091
    10881092.show-filters .wp-filter .drawer-toggle:hover,
     
    11131117        float: left;
    11141118        margin: 0 1% 0 0;
    11151119        padding: 10px;
    1116         width: 19%;
     1120        width: 24%;
    11171121        background: #fff;
    11181122        border: 1px solid #e5e5e5;
    11191123        -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04);
     
    11201124        box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    11211125}
    11221126
    1123 .filter-group.wide {
    1124         width: 38%;
    1125 }
    1126 
    11271127.filter-group h4 {
    11281128        position: relative;
    11291129        margin: 0;
     
    12191219}
    12201220
    12211221@media only screen and (max-width: 1120px) {
    1222         .wp-filter .search-form {
    1223                 float: none;
    1224                 margin: 20px 0;
    1225         }
    1226 
    12271222        .filter-drawer {
    12281223                border-bottom: 1px solid #eee;
    12291224        }
     
    12391234        }
    12401235}
    12411236
     1237@media only screen and (max-width: 910px) {
     1238        .wp-filter .search-form {
     1239                float: none; /* Remove float from media-views.css */
     1240                position: relative;
     1241                margin: 20px 0;
     1242        }
     1243}
     1244
    12421245@media only screen and (max-width: 782px) {
    1243         .filter-group,
    12441246        .filter-group li {
     1247                padding: 0;
     1248                width: 50%;
     1249        }
     1250}
     1251
     1252@media only screen and (max-width: 320px) {
     1253        .filter-count {
     1254                display: none;
     1255        }
     1256
     1257        .wp-filter .drawer-toggle {
     1258                margin: 10px 0;
     1259        }
     1260
     1261        .filter-group li,
     1262        .wp-filter .search-form input[type="search"] {
    12451263                width: 100%;
    12461264        }
    1247 
    12481265}
    12491266
    1250 
    12511267/*------------------------------------------------------------------------------
    12521268  4.0 - Notifications
    12531269------------------------------------------------------------------------------*/
  • src/wp-admin/css/themes.css

     
    3131        top: -2px;
    3232        left: 20px;
    3333        margin: 0;
    34         width: 280px;
     34        max-width: 280px;
     35        width: 100%;
    3536        font-size: 16px;
    3637        font-weight: 300;
    3738        line-height: 1.5;
     
    17201721        .theme-install-overlay .wp-full-overlay-main {
    17211722                background-image: url(../images/spinner-2x.gif);
    17221723        }
     1724
     1725        .theme-install-overlay .wp-full-overlay-header .theme-install {
     1726                margin-top: 2px;
     1727        }
    17231728}
    17241729
    17251730@media screen and ( max-width: 782px ) {
  • 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        }