this repo has no description
0
fork

Configure Feed

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

Fix cloak mode bugs on Safari

+12
+12
src/cloak-mode.css
··· 1 + body.cloak a { 2 + text-decoration-color: var(--link-color); 3 + } 4 + 1 5 body.cloak .name-text, 2 6 body.cloak .name-text *, 3 7 body.cloak .status .content-container, ··· 25 29 filter: contrast(0) !important; 26 30 background-color: #000 !important; 27 31 } 32 + 33 + /* SPECIAL CASES */ 34 + 35 + @supports (display: -webkit-box) { 36 + body.cloak .card :is(.title, .meta) { 37 + background-color: var(--text-color) !important; 38 + } 39 + }