Hide registered and users columns in Sites table on small screens to prevent columms from becoming too narrow. Fixes #25973, props johnbillion.

Built from https://develop.svn.wordpress.org/trunk@26416


git-svn-id: http://core.svn.wordpress.org/trunk@26316 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Matt Thomas 2013-11-26 19:37:09 +00:00
parent e682d6ba29
commit 36b2183f03
4 changed files with 20 additions and 2 deletions

View File

@ -11602,6 +11602,15 @@ li#wp-admin-bar-menu-toggle {
width: 30%;
}
/* Network admin sites */
.sites .column-registered, .sites .column-users {
display: none;
}
.sites .column-blogname {
width: 55%;
}
/* Updates */
#wpbody-content #update-themes-table .plugin-title {
width: auto;

File diff suppressed because one or more lines are too long

View File

@ -11602,6 +11602,15 @@ li#wp-admin-bar-menu-toggle {
width: 30%;
}
/* Network admin sites */
.sites .column-registered, .sites .column-users {
display: none;
}
.sites .column-blogname {
width: 55%;
}
/* Updates */
#wpbody-content #update-themes-table .plugin-title {
width: auto;

File diff suppressed because one or more lines are too long