Ticket #28753: 28753-no-results.patch
| File 28753-no-results.patch, 998 bytes (added by , 12 years ago) |
|---|
-
src/wp-admin/css/common.css
1016 1016 line-height: 1.5; 1017 1017 } 1018 1018 1019 .wp-filter-no-results { 1020 color: #999; 1021 font-size: 18px; 1022 font-style: normal; 1023 margin: 0; 1024 padding: 100px 0 0; 1025 text-align: center; 1026 } 1027 1019 1028 .wp-filter-drawer-toggle { 1020 1029 display: inline-block; 1021 1030 margin: 0 10px; -
src/wp-admin/includes/class-wp-plugin-install-list-table.php
186 186 } 187 187 188 188 public function no_items() { 189 _e( 'No plugins match your request.' );189 echo '<div class="wp-filter-no-results">' . __( 'No plugins match your request.' ) . '</div>'; 190 190 } 191 191 192 192 protected function get_views() {