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:
Gary Pendergast 2015-03-23 12:21:28 +00:00
parent 3b863ae173
commit 8acca2f52a
4 changed files with 22 additions and 2 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;
}
}

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

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long