Changeset 36270
- Timestamp:
- 01/12/2016 05:12:17 PM (8 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/css/themes.css
r35801 r36270 10 10 .theme-browser .themes { 11 11 clear: both; 12 padding: 0 0 100px;13 12 } 14 13 … … 1125 1124 font-style: normal; 1126 1125 margin: 0; 1127 padding: 0;1126 padding: 100px 0; 1128 1127 text-align: center; 1129 1128 display: none; 1130 1129 } 1130 1131 1131 body.no-results p.no-themes { 1132 1132 display: block; 1133 1133 } 1134 1134 1135 body.show-upload-theme p.no-themes { 1135 1136 display: none !important; -
trunk/src/wp-admin/js/theme.js
r36204 r36270 81 81 this.view.render(); 82 82 this.$el.empty().append( this.view.el ).addClass( 'rendered' ); 83 this.$el.append( '<br class="clear"/>' );84 83 }, 85 84 … … 839 838 themes.view.Themes = wp.Backbone.View.extend({ 840 839 841 className: 'themes ',840 className: 'themes wp-clearfix', 842 841 $overlay: $( 'div.theme-overlay' ), 843 842 -
trunk/src/wp-admin/theme-install.php
r36092 r36270 196 196 <span class="spinner"></span> 197 197 198 <br class="clear" />199 198 <?php 200 199 if ( $tab ) { -
trunk/src/wp-admin/themes.php
r35483 r36270 230 230 231 231 <div class="theme-browser"> 232 <div class="themes ">232 <div class="themes wp-clearfix"> 233 233 234 234 <?php … … 283 283 </div> 284 284 <?php endforeach; ?> 285 <br class="clear" />286 285 </div> 287 286 </div>
Note: See TracChangeset
for help on using the changeset viewer.