Not a bug Delete Thread Overlay Button Text Hard-Coded

Amaury

Well-known member
I believe that may actually be the same case here.

Anyway, this button is in multiple areas, such as when deleting a profile comment, but for this example, I will use the thread route.

Go into a thread and do the following:

Thread Tools > Edit Title

The Delete Thread button has hard-coded black text.

In xenforo_overlay.css:
Code:
        .xenOverlay .formOverlay a.button

        {
            @property "formOverlayButton";
            color: black;
            @property "/formOverlayButton";
        }

Text needs to be controlled by a style property / variable -- one of the button ones, obviously.
 
Edit the formOverlayButton style property. You should be able to change it.

I wonder why it's its own style property and not controlled by the other button style properties...

Anyway, thanks. Please move this and mark it Not a Bug. :)
 
Overlays are styled differently than most pages, and as such, it's only fitting buttons are styled differently as well.
 
Top Bottom