Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Remove subtle mutuals tweak (for now)

Co-authored-by: April Sylph <[email protected]>
  • Loading branch information
marcustyphoon and AprilSylph authored Jul 8, 2023
1 parent 3525540 commit 621a7dd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 17 deletions.
5 changes: 0 additions & 5 deletions src/scripts/tweaks.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,6 @@
"default": false,
"inherit": "tweaks.preferences.subtle_follow"
},
"subtle_activity_mutuals": {
"type": "checkbox",
"label": "Make following/mutuals indicators on notifications more subtle",
"default": false
},
"hide_activity_mutuals": {
"type": "checkbox",
"label": "Hide following/mutuals indicators on notifications",
Expand Down
12 changes: 0 additions & 12 deletions src/scripts/tweaks/subtle_activity_mutuals.js
Original file line number Diff line number Diff line change
@@ -1,12 +0,0 @@
import { keyToCss } from '../../util/css_map.js';
import { buildStyle } from '../../util/interface.js';

const styleElement = buildStyle(`
${keyToCss('activity')} ${keyToCss('generalLabelContainer')} {
color: RGB(var(--black));
background-color: RGBA(var(--black), 0.07);
}
`);

export const main = async () => document.documentElement.append(styleElement);
export const clean = async () => styleElement.remove();

0 comments on commit 621a7dd

Please sign in to comment.