this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

More cloak fixes

+11 -6
+10 -5
src/cloak-mode.css
··· 8 8 .name-text *, 9 9 .status .content-container, 10 10 .status .content-container *, 11 - .status .content-compact, 11 + .status .content-compact > *, 12 12 .account-container :is(header, main > *:not(.actions)), 13 13 .account-container :is(header, main > *:not(.actions)) *, 14 14 .header-double-lines, ··· 42 42 /* SPECIAL CASES */ 43 43 44 44 @supports (display: -webkit-box) { 45 - body.cloak .card :is(.title, .meta) { 46 - background-color: var(--text-color) !important; 45 + :is(body.cloak, .cloak) .card :is(.title, .meta) { 46 + background-color: currentColor !important; 47 47 } 48 48 } 49 49 50 - .catchup-filters .filter-author * { 51 - color: var(--text-color); 50 + body.cloak, 51 + .cloak { 52 + .media-container figcaption, 53 + .media-container figcaption > *, 54 + .catchup-filters .filter-author * { 55 + color: currentColor !important; 56 + } 52 57 }
+1 -1
src/components/status.jsx
··· 2441 2441 <span>{filterTitleStr}</span> 2442 2442 </b> 2443 2443 ) : ( 2444 - statusPeekText 2444 + <span>{statusPeekText}</span> 2445 2445 )} 2446 2446 </div> 2447 2447 </article>