Fix link visible inside spoiler (#2215)

* hide links in spoiler

* prevent link click inside spoiler
This commit is contained in:
Ajay Bura 2025-02-19 22:07:33 +11:00 committed by GitHub
parent f73dc05e25
commit 2e0c7c4406
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -427,6 +427,12 @@ a {
text-decoration: underline; text-decoration: underline;
} }
} }
[data-mx-spoiler][aria-pressed='true'] a {
color: transparent;
pointer-events: none;
}
b { b {
font-weight: var(--fw-medium); font-weight: var(--fw-medium);
} }