Make WordPress Core

Ticket #58837: 58837.diff

File 58837.diff, 429 bytes (added by mikinc860, 20 months ago)

Here the minus margin and padding was causing so I have changed width from 100% to calc(100% - 11px)

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

    diff --git a/src/wp-admin/css/common.css b/src/wp-admin/css/common.css
    index eefc8bea44..4b72512f32 100644
    a b img { 
    33943394        padding-top: 0;
    33953395}
    33963396
     3397@media screen and (max-width: 782px) {
     3398        .wrap #templateside li:not(.howto) > a:first-of-type span.notice {
     3399                width: calc(100% - 11px);
     3400        }
     3401}
     3402
    33973403#templateside li.howto {
    33983404        padding: 6px 12px 12px;
    33993405}