Topic: [Bug/Confirmed] (dtext) inline code are visible through spoilers

Posted under Site Bug Reports & Feature Requests

Bug overview description.

inline code are visible through spoilers

What part(s) of the site page(s) are affected?

Everything that use dtext

What is the expected behavior?

Anything inside [spoiler][/spoiler] should be hidden

What actual behavior is given instead?

you can't see this you can see this

Time of incident (if applicable).

N/A

Can you reproduce the bug every time?

Yes

What steps did you take to replicate this bug?

Using inline code inside [spoiler][/spoiler]

Errors or other messages returned (if any).

N/A

Updated by Chaser

Looks like a transparency issue.

Edit: Coloured text can be seen through the spoiler as well... unless it's the same colour as the spoiler. :P

Updated by anonymous

Made a fix, needs to be added to each style sheet. Cant use VM to test it but here is my change:

.spoiler {
    color: rgba(0,0,0,0) !important;
}
.spoiler:hover {
    color: white !important;
}

Put it here for if it is accepted and imported.

Updated by anonymous

  • 1