Ticket #29556: 29556.3.diff
File 29556.3.diff, 3.5 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"] { … … 1083 1085 .show-filters .filter-drawer { 1084 1086 display: block; 1085 1087 overflow: hidden; 1088 width: 100%; 1086 1089 } 1087 1090 1088 1091 .show-filters .wp-filter .drawer-toggle:hover, … … 1113 1116 float: left; 1114 1117 margin: 0 1% 0 0; 1115 1118 padding: 10px; 1116 width: 19%;1119 width: 24%; 1117 1120 background: #fff; 1118 1121 border: 1px solid #e5e5e5; 1119 1122 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 1120 1123 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 1121 1124 } 1122 1125 1123 .filter-group.wide {1124 width: 38%;1125 }1126 1127 1126 .filter-group h4 { 1128 1127 position: relative; 1129 1128 margin: 0; … … 1219 1218 } 1220 1219 1221 1220 @media only screen and (max-width: 1120px) { 1222 .wp-filter .search-form {1223 float: none;1224 margin: 20px 0;1225 }1226 1227 1221 .filter-drawer { 1228 1222 border-bottom: 1px solid #eee; 1229 1223 } … … 1239 1233 } 1240 1234 } 1241 1235 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 1242 1244 @media only screen and (max-width: 782px) { 1243 .filter-group,1244 1245 .filter-group li { 1245 width: 100%; 1246 padding: 0; 1247 width: 50%; 1246 1248 } 1247 1248 1249 } 1249 1250 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 } 1250 1265 1251 1266 /*------------------------------------------------------------------------------ 1252 1267 4.0 - Notifications -
src/wp-admin/css/themes.css
1729 1729 .available-theme .action-links .delete-theme a { 1730 1730 padding: 0; 1731 1731 } 1732 1733 .theme-install-overlay .wp-full-overlay-header .theme-install { 1734 margin-top: 2px; 1735 } 1732 1736 } -
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 }