Make captcha more readable

Especially on dark theme

Signed-off-by: Minecon724 <minecon724@noreply.git.m724.eu>
This commit is contained in:
Minecon724 2025-03-21 08:08:43 +01:00
parent 90553f17f3
commit 403a755a8a
Signed by: Minecon724
GPG key ID: A02E6E67AB961189
2 changed files with 11 additions and 0 deletions

View file

@ -334,6 +334,10 @@ input:-webkit-autofill:active,
display: inline-block;
}
.captcha-img {
width: min(30em, 100%);
}
@media (min-width: 768px) {
.g-recaptcha-style,
.h-captcha-style {

View file

@ -11,3 +11,10 @@
.markup [href$="#dark-mode-only"] {
display: unset;
}
/* The reason we're doing this *here* is because dark vanilla templates always use this file, and there's no other way to detect dark theme */
.captcha-img {
filter: invert();
}