Changeset 31497
- Timestamp:
- 02/22/2015 10:14:45 AM (10 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/themes.css
r31422 r31497 1138 1138 1139 1139 p.no-themes { 1140 clear: both; 1140 1141 color: #999; 1141 1142 font-size: 18px; 1142 1143 font-style: normal; 1143 1144 margin: 0; 1144 padding: 0;1145 padding: 100px 0 0; 1145 1146 text-align: center; 1146 1147 display: none; -
trunk/src/wp-admin/js/theme.js
r31495 r31497 80 80 // Render and append 81 81 this.view.render(); 82 this.$el.empty().append( this.view.el ).addClass('rendered'); 82 this.$el.find( '.themes' ).remove(); 83 this.$el.append( this.view.el ).addClass( 'rendered' ); 83 84 this.$el.append( '<br class="clear"/>' ); 84 85 }, -
trunk/src/wp-admin/theme-install.php
r31077 r31497 167 167 </div> 168 168 </div> 169 <div class="theme-browser content-filterable"></div> 169 <div class="theme-browser content-filterable" aria-live="polite"> 170 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> 171 </div> 170 172 <div class="theme-install-overlay wp-full-overlay expanded"></div> 171 172 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p>173 173 <span class="spinner"></span> 174 174 -
trunk/src/wp-admin/themes.php
r30794 r31497 199 199 ?> 200 200 201 <div class="theme-browser" >201 <div class="theme-browser" aria-live="polite"> 202 202 <div class="themes"> 203 203 … … 251 251 <br class="clear" /> 252 252 </div> 253 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> 253 254 </div> 254 255 <div class="theme-overlay"></div> 255 256 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p>257 256 258 257 <?php
Note: See TracChangeset
for help on using the changeset viewer.