Make WordPress Core

Changeset 31865


Ignore:
Timestamp:
03/23/2015 12:20:11 PM (10 years ago)
Author:
pento
Message:

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

Props MikeNGarrett.

Fixes #29992.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/css/list-tables.css

    r31513 r31865  
    19171917    }
    19181918}
     1919
     1920/* Smartphone */
     1921@media screen and (max-width: 600px) {
     1922    /* Remove slug column from taxonomy list page
     1923       and role column from users list page */
     1924    .tags .column-slug,
     1925    .users .column-role {
     1926        display: none;
     1927    }
     1928}
Note: See TracChangeset for help on using the changeset viewer.