Ticket #26600: 26600.diff
File 26600.diff, 2.2 KB (added by , 10 years ago) |
---|
-
src/wp-admin/css/themes.css
1137 1137 } 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; 1147 1148 } -
src/wp-admin/js/theme.js
79 79 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 }, 85 86 -
src/wp-admin/theme-install.php
166 166 </div> 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 175 175 <br class="clear" /> -
src/wp-admin/themes.php
198 198 199 199 ?> 200 200 201 <div class="theme-browser" >201 <div class="theme-browser" aria-live="polite"> 202 202 <div class="themes"> 203 203 204 204 <?php … … 250 250 <?php endforeach; ?> 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 256 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p>257 257 258 258 <?php 259 259 // List broken themes, if any.