Taxonomy List Tables: On mobile devices, hide the slug column, to avoid cramping the action links into two rows.

Props MikeNGarrett.

Fixes #29992.



git-svn-id: https://develop.svn.wordpress.org/trunk@31865 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Gary Pendergast 2015-03-23 12:20:11 +00:00
parent b3e3766233
commit 1676dd43b1
1 changed files with 10 additions and 0 deletions

View File

@ -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;
}
}