Ticket #29556: 29556.4.diff
File 29556.4.diff, 3.9 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/common.css
1017 1017 } 1018 1018 1019 1019 .wp-filter .search-form { 1020 float: right; 1021 margin-top: 9px; 1020 margin: 10px; 1021 position: absolute; 1022 right: 0; 1023 top: 0; 1022 1024 } 1023 1025 1024 1026 .wp-filter .search-form input[type="search"] { 1025 1027 margin: 0; 1026 1028 padding: 3px 5px; 1027 width: 280px; 1029 max-width: 280px; 1030 width: 100%; 1028 1031 font-size: 16px; 1029 1032 font-weight: 300; 1030 1033 line-height: 1.5; … … 1083 1086 .show-filters .filter-drawer { 1084 1087 display: block; 1085 1088 overflow: hidden; 1089 width: 100%; 1086 1090 } 1087 1091 1088 1092 .show-filters .wp-filter .drawer-toggle:hover, … … 1113 1117 float: left; 1114 1118 margin: 0 1% 0 0; 1115 1119 padding: 10px; 1116 width: 19%;1120 width: 24%; 1117 1121 background: #fff; 1118 1122 border: 1px solid #e5e5e5; 1119 1123 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); … … 1120 1124 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 1121 1125 } 1122 1126 1123 .filter-group.wide {1124 width: 38%;1125 }1126 1127 1127 .filter-group h4 { 1128 1128 position: relative; 1129 1129 margin: 0; … … 1219 1219 } 1220 1220 1221 1221 @media only screen and (max-width: 1120px) { 1222 .wp-filter .search-form {1223 float: none;1224 margin: 20px 0;1225 }1226 1227 1222 .filter-drawer { 1228 1223 border-bottom: 1px solid #eee; 1229 1224 } … … 1239 1234 } 1240 1235 } 1241 1236 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 1242 1245 @media only screen and (max-width: 782px) { 1243 .filter-group,1244 1246 .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"] { 1245 1263 width: 100%; 1246 1264 } 1247 1248 1265 } 1249 1266 1250 1251 1267 /*------------------------------------------------------------------------------ 1252 1268 4.0 - Notifications 1253 1269 ------------------------------------------------------------------------------*/ -
src/wp-admin/css/themes.css
31 31 top: -2px; 32 32 left: 20px; 33 33 margin: 0; 34 width: 280px; 34 max-width: 280px; 35 width: 100%; 35 36 font-size: 16px; 36 37 font-weight: 300; 37 38 line-height: 1.5; … … 1720 1721 .theme-install-overlay .wp-full-overlay-main { 1721 1722 background-image: url(../images/spinner-2x.gif); 1722 1723 } 1724 1725 .theme-install-overlay .wp-full-overlay-header .theme-install { 1726 margin-top: 2px; 1727 } 1723 1728 } 1724 1729 1725 1730 @media screen and ( max-width: 782px ) { -
src/wp-admin/theme-install.php
145 145 <?php 146 146 $feature_list = get_theme_feature_list(); 147 147 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 153 150 $feature_name = esc_html( $feature_name ); 154 151 echo '<h4>' . $feature_name . '</h4>'; 155 152 echo '<ol class="feature-group">'; -
src/wp-includes/css/media-views.css
2143 2143 } 2144 2144 2145 2145 @media only screen and (max-width: 940px) { 2146 .media-frame-content .media-toolbar-primary .search,2147 2146 .media-frame-content .media-toolbar-secondary .attachment-filters { 2148 2147 max-width: 134px; 2149 2148 } … … 2462 2461 } 2463 2462 2464 2463 @media only screen and (max-width: 480px) { 2465 .media-frame-content .media-toolbar .search,2466 2464 .media-frame-content .media-toolbar .attachment-filters { 2467 2465 max-width: 90px; 2468 2466 }