diff --git src/wp-admin/css/themes.css src/wp-admin/css/themes.css
index c2cab3f..5a09fca 100644
|
|
|
|
| 12 | 12 | padding: 0 0 100px; |
| 13 | 13 | } |
| 14 | 14 | |
| | 15 | .theme-browser .themes:after { |
| | 16 | content: ''; |
| | 17 | display: table; |
| | 18 | clear: both; |
| | 19 | } |
| | 20 | |
| 15 | 21 | .themes-php .wrap h2 { |
| 16 | 22 | float: left; |
| 17 | 23 | margin-bottom: 15px; |
diff --git src/wp-admin/js/theme.js src/wp-admin/js/theme.js
index fbd3789..19c5f03 100644
|
|
|
themes.view.Appearance = wp.Backbone.View.extend({ |
| 81 | 81 | this.view.render(); |
| 82 | 82 | this.$el.find( '.themes' ).remove(); |
| 83 | 83 | this.$el.append( this.view.el ).addClass( 'rendered' ); |
| 84 | | this.$el.append( '<br class="clear"/>' ); |
| 85 | 84 | }, |
| 86 | 85 | |
| 87 | 86 | // Defines search element container |
diff --git src/wp-admin/theme-install.php src/wp-admin/theme-install.php
index 73e343a..4b692a3 100644
|
|
|
include(ABSPATH . 'wp-admin/admin-header.php'); |
| 172 | 172 | <div class="theme-install-overlay wp-full-overlay expanded"></div> |
| 173 | 173 | <span class="spinner"></span> |
| 174 | 174 | |
| 175 | | <br class="clear" /> |
| 176 | 175 | <?php |
| 177 | 176 | if ( $tab ) { |
| 178 | 177 | /** |
diff --git src/wp-admin/themes.php src/wp-admin/themes.php
index 52e3531..22d11fc 100644
|
|
|
foreach ( $themes as $theme ) : |
| 248 | 248 | <?php } ?> |
| 249 | 249 | </div> |
| 250 | 250 | <?php endforeach; ?> |
| 251 | | <br class="clear" /> |
| 252 | 251 | </div> |
| 253 | 252 | <p class="no-themes"><?php _e( 'No themes found. Try a different search.' ); ?></p> |
| 254 | 253 | </div> |