Changeset 30740
- Timestamp:
- 12/04/2014 10:22:26 PM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/common.css
r30707 r30740 989 989 990 990 .wp-filter .search-form { 991 float: right; 992 margin-top: 9px; 991 margin: 10px; 992 position: absolute; 993 right: 0; 994 top: 0; 993 995 } 994 996 … … 996 998 margin: 0; 997 999 padding: 3px 5px; 998 width: 280px; 1000 max-width: 280px; 1001 width: 100%; 999 1002 font-size: 16px; 1000 1003 font-weight: 300; … … 1055 1058 display: block; 1056 1059 overflow: hidden; 1060 width: 100%; 1057 1061 } 1058 1062 … … 1085 1089 margin: 0 1% 0 0; 1086 1090 padding: 10px; 1087 width: 19%;1091 width: 24%; 1088 1092 background: #fff; 1089 1093 border: 1px solid #e5e5e5; 1090 1094 -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.04); 1091 1095 box-shadow: 0 1px 1px rgba(0,0,0,0.04); 1092 }1093 1094 .filter-group.wide {1095 width: 38%;1096 1096 } 1097 1097 … … 1191 1191 1192 1192 @media only screen and (max-width: 1120px) { 1193 .wp-filter .search-form {1194 float: none;1195 margin: 20px 0;1196 }1197 1198 1193 .filter-drawer { 1199 1194 border-bottom: 1px solid #eee; … … 1211 1206 } 1212 1207 1208 @media only screen and (max-width: 910px) { 1209 .wp-filter .search-form { 1210 float: none; /* Remove float from media-views.css */ 1211 position: relative; 1212 margin: 20px 0; 1213 } 1214 } 1215 1213 1216 @media only screen and (max-width: 782px) { 1214 .filter-group,1215 1217 .filter-group li { 1218 padding: 0; 1219 width: 50%; 1220 } 1221 } 1222 1223 @media only screen and (max-width: 320px) { 1224 .filter-count { 1225 display: none; 1226 } 1227 1228 .wp-filter .drawer-toggle { 1229 margin: 10px 0; 1230 } 1231 1232 .filter-group li, 1233 .wp-filter .search-form input[type="search"] { 1216 1234 width: 100%; 1217 1235 } 1218 1219 1236 } 1220 1237 -
trunk/src/wp-admin/css/media.css
r29811 r30740 1130 1130 float: none; 1131 1131 } 1132 1133 /* override for media-views.css */ 1134 #wp-media-grid .wp-filter .attachment-filters { 1135 max-width: 100%; 1136 } 1132 1137 } 1133 1138 -
trunk/src/wp-admin/css/themes.css
r30101 r30740 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; … … 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 -
trunk/src/wp-admin/theme-install.php
r30649 r30740 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">'; 153 149 $feature_name = esc_html( $feature_name ); 154 150 echo '<h4>' . $feature_name . '</h4>'; -
trunk/src/wp-includes/css/media-views.css
r30460 r30740 2149 2149 2150 2150 @media only screen and (max-width: 940px) { 2151 .media-frame-content .media-toolbar-primary .search,2152 2151 .media-frame-content .media-toolbar-secondary .attachment-filters { 2153 2152 max-width: 134px; … … 2468 2467 2469 2468 @media only screen and (max-width: 480px) { 2470 .media-frame-content .media-toolbar .search,2471 2469 .media-frame-content .media-toolbar .attachment-filters { 2472 2470 max-width: 90px;
Note: See TracChangeset
for help on using the changeset viewer.