• Hi,

    Is it possible to create more specific css for this plugin.
    The css of the plugin modifies core styling of the wordpress backend.

    Some cases of this:
    – the class Wrap had gotten a position Absolute, which make it so our notifications (wp core) are not visible anymore.
    – the show-settings-link drop downs are restyled. But these also conflict with wp core styling.

    Code example of our fixes to cancel out the plugin css with scss:

    .ac-wp-media {
    .wrap{
    position: relative !important;
    height: 100vh;

    .media-frame{
    position: relative;
    height: 100vh;
    display: block;
    top: 0;
    }
    }
    }

    body.upload-php.eml-grid #wpbody-content{
    float: left !important;
    }

    Could it be possible for you to optimize your css so Core elements of wordpress won’t be effected by this.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author webbistro

    (@webbistro)

    Hi @jonzai,

    The upcoming version of the plugin addresses some issues with the notification styling. But unfortunately, no, we cannot completely get rid of the restyling.

    This one “the show-settings-link drop downs are restyled. But these also conflict with wp core styling” is not clear to me, sorry. Can you post a screenshot or something, please?

    Best,
    -Nadia

    Thread Starter jonzai

    (@jonzai)

    Hi @webbistro (Nadia)

    I completely understand the “we cannot completely get rid of the restyling.“.
    I’ve made a screenshot of the bug present in our site:

    [mlbug1.jpg]

    Can we Assume that this bug will be fixed in the next version?
    We applied our own css to fix this bug:

    .ac-wp-media .wrap{
    position: relative !important;
    height: 100vh;
    }

    .ac-wp-media .wrap .media-frame{
    position: relative;
    height: 100vh;
    display: block;
    top: 0;
    }

    [mlbug2.jpg]
    But after the update notification is resolved a new styling bug presented itself:

    [mlbug3.jpg]

    These where only minor bugs. But we can only assume that other things may come up in the future involving the EML – plugin styling.

    That’s why we opened this ticket so you guys can have a look at it.

    Thanks in advance!
    Jonas

    • This reply was modified 6 years, 6 months ago by jonzai.
    Plugin Author webbistro

    (@webbistro)

    Hi @jonzai,

    Please let me know if something looks wrong now in v2.6 Thank you!

    Best,
    -Nadia

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Plugin css conflicts with wp core styling’ is closed to new replies.