Make WordPress Core

Ticket #49231: 49231.2.diff

File 49231.2.diff, 1.5 KB (added by maxpertici, 5 years ago)

CSS Fix for plugins search form and table list with media queries

  • src/wp-admin/css/common.css

    diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
    index 5c97f14453..1c344c203d 100644
    a b th.action-links { 
    10981098
    10991099.wp-filter .search-form.search-plugins {
    11001100        display: inline-block;
     1101    margin-top: 0;
     1102}
     1103
     1104@media only screen and (max-width: 1050px) {
     1105    .wp-filter .search-form.search-plugins{
     1106        width: 100%;
     1107    }
     1108}
     1109
     1110.wp-filter .search-form.search-plugins label,
     1111.wp-filter .search-form.search-plugins select{
     1112    display: inline-block;
     1113    margin-top: 10px;
     1114}
     1115
     1116@media only screen and (max-width: 600px) {
     1117    .wp-filter .search-form.search-plugins label {
     1118        width: 100%;
     1119    }
    11011120}
    11021121
    11031122.wp-filter .button.drawer-toggle {
  • src/wp-admin/css/list-tables.css

    diff --git a/src/wp-admin/css/list-tables.css b/src/wp-admin/css/list-tables.css
    index 3e55bb2d0e..b0a92c29e7 100644
    a b ul.cat-checklist { 
    11211121        padding: 8px 0 0 2px;
    11221122}
    11231123
     1124@media only screen and (max-width: 782px) {
     1125        .plugins tbody th.check-column,
     1126        .plugins tbody {
     1127                padding: 8px 0 0 5px;
     1128        }
     1129}
     1130
    11241131.plugins tbody th.check-column input[type=checkbox] {
    11251132        margin-top: 4px;
    11261133}
    ul.cat-checklist { 
    11351142        padding-left: 6px;
    11361143}
    11371144
     1145@media only screen and (max-width: 782px) {
     1146        .plugins thead td.check-column,
     1147        .plugins tfoot td.check-column,
     1148        .plugins .inactive th.check-column {
     1149                padding-left: 9px;
     1150        }
     1151}
     1152
    11381153.plugins,
    11391154.plugins th,
    11401155.plugins td {