• Resolved cutu234

    (@cutu234)


    WP 7 introduced a new color scheme for notifications in the dashboard sidebar. What was red-orange before is now a light blue. I absolutely appreciate this, since the red circles have always been too dominant for my taste. Now, you still use the orange color:

    .ays-survey-menu-badge {
        color: #fff;
        display: inline-block;
        font-size: 10px;
        line-height: 14px;
        text-align: center;
        background: #ca4a1f;
        margin-left: 5px;
        border-radius: 20px;
        padding: 2px 5px;
    }

    Would you mind using the new light blue? This would be much more consistent and not so obstrusive.

    Thank you very much.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Support Jasmine

    (@hyenokian)

    Dear @cutu234,

    Thank you for your topic․

    Could you please let us know which version of the Survey Maker plugin you are using?

    Also, if possible, please send us a screenshot of the issue for better understanding.

    Looking forward to your reply.

    Thank you.

    Thread Starter cutu234

    (@cutu234)

    Sure, it’s the latest version, 5.2.2.8

    Don’t get me wrong. The red circle isn’t bad in itself. I could easily change that with some admin CSS. But it might be worth considering the new color scheme.

    • This reply was modified 5 days, 21 hours ago by cutu234.
    Plugin Support Jasmine

    (@hyenokian)

    Dear @cutu234,

    Thank you for the information.

    If you would like, we can provide you with custom CSS for this.

    Also, we will take this as a suggestion and review it for future updates.

    If you have any other questions, feel free to open another topic.

    Thank you.

    Thread Starter cutu234

    (@cutu234)

    Thank you. This works perfectly fine:

    add_action('admin_head', function() {
        ?>
        <style>
        .ays-survey-menu-badge {
            color: #fff;
            display: inline-block;
            text-align: center;
            background: #3858e9;
            padding: 0 5px;
            min-width: 18px;
            height: 18px;
            border-radius: 9px;
            font-size: 11px;
            line-height: 1.6;
            vertical-align: top;
            box-sizing: border-box;
            margin: 1px 0 -1px 4px;
        }
        #toplevel_page_survey-maker > a:hover .wp-menu-name .ays-survey-menu-badge {
            background: #000000;
        }
        </style>
        <?php
    });

    It’s probably a matter of personal taste. But I prefer the sidebar to be as default as possible in terms of styling. In my opinion plugin items should blend it as far as possible. But that’s me, of course.

    Plugin Support Jasmine

    (@hyenokian)

    Dear @cutu234,

    Thank you very much for sharing this with us.

    We appreciate both your suggestion and the custom CSS example you shared with us. We will review it internally and consider it for future updates.

    If you have any other questions, feel free to open another topic.

    Thank you.

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

You must be logged in to reply to this topic.