Taxonomy List Tables: On mobile devices, hide the slug column, to avoid cramping the action links into two rows.
Props MikeNGarrett. Fixes #29992. Built from https://develop.svn.wordpress.org/trunk@31865 git-svn-id: http://core.svn.wordpress.org/trunk@31844 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3b863ae173
commit
8acca2f52a
|
@ -1916,3 +1916,13 @@ div.action-links,
|
|||
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphone */
|
||||
@media screen and (max-width: 600px) {
|
||||
/* Remove slug column from taxonomy list page
|
||||
and role column from users list page */
|
||||
.tags .column-slug,
|
||||
.users .column-role {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1916,3 +1916,13 @@ div.action-links,
|
|||
box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphone */
|
||||
@media screen and (max-width: 600px) {
|
||||
/* Remove slug column from taxonomy list page
|
||||
and role column from users list page */
|
||||
.tags .column-slug,
|
||||
.users .column-role {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue