Fix cloak for catch-up

This commit is contained in:
Lim Chee Aun 2024-02-27 23:29:54 +08:00
parent 3cfc35898b
commit 315ce98511

View file

@ -13,7 +13,9 @@ body.cloak,
.account-container :is(header, main > *:not(.actions)) *, .account-container :is(header, main > *:not(.actions)) *,
.header-double-lines, .header-double-lines,
.account-block, .account-block,
.post-peek-html * { .catchup-filters .filter-author *,
.post-peek-html *,
.post-peek-content > * {
text-decoration-thickness: 1.1em; text-decoration-thickness: 1.1em;
text-decoration-line: line-through; text-decoration-line: line-through;
/* text-rendering: optimizeSpeed; */ /* text-rendering: optimizeSpeed; */
@ -21,7 +23,8 @@ body.cloak,
} }
.name-text *, .name-text *,
.status .content-container *, .status .content-container *,
.account-container :is(header, main > *:not(.actions)) * { .account-container :is(header, main > *:not(.actions)) *,
.post-peek-content > * {
filter: none; filter: none;
} }
@ -43,3 +46,7 @@ body.cloak,
background-color: var(--text-color) !important; background-color: var(--text-color) !important;
} }
} }
.catchup-filters .filter-author * {
color: var(--text-color);
}