Make plugin and theme title columns narrower. Props garyc40. fixes #16563 for 3.1
git-svn-id: http://svn.automattic.com/wordpress/branches/3.1@17450 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
14ca237999
commit
c4289622f3
File diff suppressed because one or more lines are too long
|
@ -3784,8 +3784,6 @@ h2 .nav-tab {
|
||||||
17.0 - Plugins
|
17.0 - Plugins
|
||||||
------------------------------------------------------------------------------*/
|
------------------------------------------------------------------------------*/
|
||||||
|
|
||||||
.plugins #description {width: 60%}
|
|
||||||
|
|
||||||
.plugins .name,
|
.plugins .name,
|
||||||
#pass-strength-result.strong,
|
#pass-strength-result.strong,
|
||||||
#pass-strength-result.short,
|
#pass-strength-result.short,
|
||||||
|
@ -3839,8 +3837,9 @@ input.button-highlighted,
|
||||||
padding: 5px 7px 0;
|
padding: 5px 7px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#wpbody-content .plugins .plugin-title {
|
#wpbody-content .plugins .plugin-title, #wpbody-content .plugins .theme-title {
|
||||||
padding-right: 12px;
|
padding-right: 12px;
|
||||||
|
white-space:nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.plugins .second, .plugins .row-actions-visible {
|
.plugins .second, .plugins .row-actions-visible {
|
||||||
|
|
|
@ -38,7 +38,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
|
||||||
}
|
}
|
||||||
|
|
||||||
function get_table_classes() {
|
function get_table_classes() {
|
||||||
return array( 'widefat', 'fixed', 'plugins' ); // todo: remove and add CSS for .themes
|
return array( 'widefat', 'plugins' ); // todo: remove and add CSS for .themes
|
||||||
}
|
}
|
||||||
|
|
||||||
function ajax_user_can() {
|
function ajax_user_can() {
|
||||||
|
|
|
@ -27,6 +27,10 @@ class WP_Plugins_List_Table extends WP_List_Table {
|
||||||
'plural' => 'plugins',
|
'plural' => 'plugins',
|
||||||
) );
|
) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function get_table_classes() {
|
||||||
|
return array( 'widefat', $this->_args['plural'] );
|
||||||
|
}
|
||||||
|
|
||||||
function ajax_user_can() {
|
function ajax_user_can() {
|
||||||
if ( is_multisite() ) {
|
if ( is_multisite() ) {
|
||||||
|
|
Loading…
Reference in New Issue