• Hi, in your CSS there is

    .compat-attachment-fields .label { width: 1%; vertical-align: top; }

    But this line breaks UX in editiing in attachment page.

    Thank you

Viewing 1 replies (of 1 total)
  • Thread Starter Hrohh

    (@hrohh)

    we can fix this

    add_action( 'admin_head', 'core_plugin_display_all_image_sizes_admin_head' );
    function core_plugin_display_all_image_sizes_admin_head() {
    ?>
    <style>
    html:has(#display-all-image-sizes-css) .compat-attachment-fields .label {
    width: 100%;
    }
    </style>
    <?php
    }
    • This reply was modified 5 months, 1 week ago by Hrohh.
Viewing 1 replies (of 1 total)

You must be logged in to reply to this topic.