XF 1.2 Alert Notice

Amaury

Well-known member
I completely overlooked this when I made my styles, and now I'm trying to get it. However, it won't stay up long enough. I can inspect it, but when it disappears that CSS info disappears.

Is there a way I can make it so it doesn't disappear or stay up longer? It's the notice you get in the bottom-left.
 
Search alerts. You don't need the exact phrase.

Found it. Managed to inspect the element and copy the CSS to search for it, and it's #StackAlerts .stackAlertContent. The template is xenforo_overlay.css.

Specifically:
Code:
#StackAlerts .stackAlertContent {
    padding: 10px;
    padding-right: 30px;
    border-radius: 4px;
    border: solid 2px @primaryLighterStill;
    background: {xen:helper rgba, @primaryLightest, 0.9};
    font-size: 11px;
    font-weight: bold;
}

I don't think there's a style property, not counting the color palette, for this, so I'll just edit the background and border CSS here directly like with everything else.
 
I'm not having any luck, anyway, even using the CSS, so screw it, I guess.

It's not like it's unreadable, but I want to get rid of that ugly black border around it.
 
Top Bottom