• The CSS in /common/meow-admin.css contains incorrect style rules affecting the whole WordPress backend:

    .meow-box input, th, label {
        font-size: 13px !important;
    }

    This applies the font-size to every table header and label on the backend, not just to those in the .meow-box. The snippet should probably read

    .meow-box input, 
    .meow-box th, 
    .meow-box label {
        font-size: 13px !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Jordy Meow

    (@tigroumeow)

    Indeed! Thanks for finding this. I fixed it on my side and I will push this with a new update 🙂

    Thread Starter pepe

    (@pputzer)

    @tigroumeow: Good to hear! Thinking about it, the stylesheet should really only be loaded if your settings page is being displayed. I haven’t looked at the code, but this should be doable using $pagenow and/or WP_Screen/get_current_screen().

    Plugin Author Jordy Meow

    (@tigroumeow)

    That’s also true; however I use the same CSS through all my plugins’ admin to it might be slightly more tricky but maybe I can find a way 🙂

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Incorrect meow-admin.css stylesheet’ is closed to new replies.