Plugin install: Improve styling of the no results message.

see #28753.

git-svn-id: https://develop.svn.wordpress.org/trunk@29359 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Dominik Schilling (ocean90) 2014-08-02 15:23:17 +00:00
parent bcb49d44ab
commit a2a3e10f66
2 changed files with 10 additions and 1 deletions

View File

@ -1028,6 +1028,15 @@ th.action-links {
line-height: 1.5;
}
.wp-filter-no-results {
color: #999;
font-size: 18px;
font-style: normal;
margin: 0;
padding: 100px 0 0;
text-align: center;
}
.wp-filter-drawer-toggle {
display: inline-block;
margin: 0 10px;

View File

@ -187,7 +187,7 @@ class WP_Plugin_Install_List_Table extends WP_List_Table {
}
public function no_items() {
_e( 'No plugins match your request.' );
echo '<div class="wp-filter-no-results">' . __( 'No plugins match your request.' ) . '</div>';
}
protected function get_views() {