Make WordPress Core

Ticket #58692: 58692.6.diff

File 58692.6.diff, 758 bytes (added by joedolson, 22 months ago)

Add flex-wrap on button containers

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

     
    899899}
    900900
    901901.imgedit-panel-content {
    902         display: grid;
    903         grid-template-columns: 1fr;
     902        display: flex;
     903        flex-wrap: wrap;
    904904        gap: 20px;
     905        margin-bottom: 20px;
    905906}
    906907
    907 @media screen and (min-width: 1200px) {
    908         .imgedit-panel-content.imgedit-panel-tools {
    909                 grid-template-columns: 50% 50%;
    910         }
    911 }
    912 
    913908.imgedit-settings {
    914909        max-width: 400px; /* Prevent reflow when help info is expanded. */
    915910}
     
    11291124        display: flex;
    11301125        column-gap: 4px;
    11311126        align-items: start;
     1127        flex-wrap: wrap;
    11321128}
    11331129
    11341130.imgedit-popup-menu {