Ticket #29556: 29556.2.diff
File 29556.2.diff, 2.8 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 position: relative; 1239 margin: 20px 0; 1240 } 1241 } 1242 1242 1243 @media only screen and (max-width: 782px) { 1243 .filter-group,1244 1244 .filter-group li { 1245 width: 100%; 1245 padding: 0; 1246 width: 50%; 1246 1247 } 1247 1248 1248 } 1249 1249 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 } 1250 1264 1251 1265 /*------------------------------------------------------------------------------ 1252 1266 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
154 154 <?php 155 155 $feature_list = get_theme_feature_list(); 156 156 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 162 159 $feature_name = esc_html( $feature_name ); 163 160 echo '<h4>' . $feature_name . '</h4>'; 164 161 echo '<ol class="feature-group">';