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:
parent
e682d6ba29
commit
36b2183f03
|
@ -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
|
@ -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
Loading…
Reference in New Issue