1
0
Fork 0

Fix cloak mode bugs on Safari

This commit is contained in:
Lim Chee Aun 2023-06-12 23:57:21 +08:00
parent 089b7aede2
commit b5250f03c1

View file

@ -1,3 +1,7 @@
body.cloak a {
text-decoration-color: var(--link-color);
}
body.cloak .name-text,
body.cloak .name-text *,
body.cloak .status .content-container,
@ -25,3 +29,11 @@ body.cloak .header-banner {
filter: contrast(0) !important;
background-color: #000 !important;
}
/* SPECIAL CASES */
@supports (display: -webkit-box) {
body.cloak .card :is(.title, .meta) {
background-color: var(--text-color) !important;
}
}