Make WordPress Core

Ticket #49231: common.css.patch

File common.css.patch, 425 bytes (added by garethgillman, 5 years ago)

Adds margin to the select box when under 600px width

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

     
    10961096        margin: 0;
    10971097}
    10981098
     1099@media all and (max-width: 600px) {
     1100  .wp-filter .search-form select {
     1101    margin: 0 0 10px 0;
     1102  } 
     1103}
     1104
    10991105.wp-filter .search-form.search-plugins {
    11001106        display: inline-block;
    11011107}