Make WordPress Core

Changeset 26223


Ignore:
Timestamp:
11/15/2013 08:58:36 PM (13 years ago)
Author:
iammattthomas
Message:

Make the Install Plugins search results page responsive, so the table doesn't overflow the viewport. Props joen, fixes #25976.

File:
1 edited

Legend:

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

    r26221 r26223  
    1228212282                line-height: 1.6em;
    1228312283        }
    12284 
     12284       
     12285        /* Add New plugins page */
     12286        table.plugin-install .column-name,
     12287        table.plugin-install .column-version,
     12288        table.plugin-install .column-rating,
     12289        table.plugin-install .column-description {
     12290                display: block;
     12291                width: auto;
     12292        }
     12293       
     12294        table.plugin-install th.column-name, table.plugin-install th.column-version, table.plugin-install th.column-rating, table.plugin-install th.column-description {
     12295                display: none;
     12296        }
     12297       
     12298        table.plugin-install td.column-name strong {
     12299                font-size: 1.4em;
     12300                line-height: 1.6em;
     12301        }
     12302       
     12303        table.plugin-install #the-list td {
     12304                -webkit-box-shadow: none;
     12305                box-shadow: none;
     12306        }
     12307
     12308        table.plugin-install #the-list tr {
     12309                display: block;
     12310                -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
     12311                box-shadow: inset 0 -1px 0 rgba(0,0,0,0.1);
     12312        }
     12313       
    1228512314        /*  Dashboard */
    1228612315        #dashboard_recent_comments #the-comment-list .comment-item .avatar {
Note: See TracChangeset for help on using the changeset viewer.