How do I change the new post indicator colour?

gldtn

Well-known member
Where is the css located for the new post marks to the right of the thread or which palette color needs changing?
 

Attachments

  • Screen shot 2010-11-27 at 5.42.36 PM.webp
    Screen shot 2010-11-27 at 5.42.36 PM.webp
    8.6 KB · Views: 28
Look for this in message.css

HTML:
    .message .newIndicator
    {
        @property "messageNewIndicator";
        font-weight: bold;
        font-size: 10px;
        color: @contentBackground;
        background: @primaryLight url('@imagePath/xenforo/gradients/category-23px-light.png') repeat-x top;
        padding: 1px 5px;
        margin: -5px -5px 5px 5px;
        border: 1px solid @primaryLight;
        border-radius: 3px;
        border-top-right-radius: 0px;
        display: block;
        float: right;
        position: relative;
        box-shadow: 1px 1px 3px rgba(0,0,0, 0.25);
        @property "/messageNewIndicator";

        margin-right: -{xen:calc '@content.padding-right + 5'}px;
    }
 
Look for this in message.css

HTML:
    .message .newIndicator
    {
        @property "messageNewIndicator";
        font-weight: bold;
        font-size: 10px;
        color: @contentBackground;
        background: @primaryLight url('@imagePath/xenforo/gradients/category-23px-light.png') repeat-x top;
        padding: 1px 5px;
        margin: -5px -5px 5px 5px;
        border: 1px solid @primaryLight;
        border-radius: 3px;
        border-top-right-radius: 0px;
        display: block;
        float: right;
        position: relative;
        box-shadow: 1px 1px 3px rgba(0,0,0, 0.25);
        @property "/messageNewIndicator";

        margin-right: -{xen:calc '@content.padding-right + 5'}px;
    }

Thank you very much Brogan!
 
Top Bottom