Ticket #26646: 26646.2.diff
File 26646.2.diff, 2.1 KB (added by , 8 years ago) |
---|
-
src/wp-admin/css/themes.css
9 9 10 10 .theme-browser .themes { 11 11 clear: both; 12 padding: 0 0 100px;13 12 } 14 13 15 14 .themes-php .wrap h1 { … … 1124 1123 font-size: 18px; 1125 1124 font-style: normal; 1126 1125 margin: 0; 1127 padding: 0;1126 padding: 100px 0 0 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; 1136 1137 } -
src/wp-admin/js/theme.js
80 80 // Render and append 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 86 85 // Defines search element container … … 838 837 // a wrapper that will hold all the theme elements 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 844 843 // Number to keep track of scroll position -
src/wp-admin/theme-install.php
195 195 <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> 196 196 <span class="spinner"></span> 197 197 198 <br class="clear" />199 198 <?php 200 199 if ( $tab ) { 201 200 /** -
src/wp-admin/themes.php
229 229 ?> 230 230 231 231 <div class="theme-browser"> 232 <div class="themes ">232 <div class="themes wp-clearfix"> 233 233 234 234 <?php 235 235 /* … … 282 282 <?php } ?> 283 283 </div> 284 284 <?php endforeach; ?> 285 <br class="clear" />286 285 </div> 287 286 </div> 288 287 <div class="theme-overlay"></div>