-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNSFWtag.css
59 lines (51 loc) · 1.64 KB
/
NSFWtag.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* @name NSFWtag
* @author ryan.0324, krystalskullofficial
* @version 5.0
* @description A tag for 'NSFW' channels so they are easier to see/notice. Also now recolors the small triangle too be red
*/
/*--- Channel list 'NSFW' Label ---*/
[class*=linkTop_]:has([class*=iconContainer_] [d^="M18.09 1.63"]) > [class*=children_]::after {
content: "NSFW";
background: var(--status-danger-background);
color: var(--status-danger-text);
padding: 0 6px;
border-radius: 8px;
font-size: 12px;
font-weight: 700;
letter-spacing: .02em;
line-height: 16px;
margin-left: 4px;
}
/*--- Channel list Icon Recolor ---*/
.icon_d8bfb3:has(path[d^="M18.09 1.63"]) path[d^="M18.09 1.63"] {
fill: var(--status-danger-background) !important;
border: 1px solid rebeccapurple !important;
}
/*--------------*/
/*--- 'NSFW' Chat Label ---*/
[class*=iconWrapper_]:has([d^="M18.09 1.63"]) ~ [class*=titleWrapper_] h1::after {
content: "NSFW";
background: var(--status-danger-background);
color: var(--status-danger-text);
padding: 0 6px;
border-radius: 8px;
font-size: 12px;
font-weight: 700;
letter-spacing: .02em;
line-height: 16px;
margin-left: 7px;
}
/*--- Chat Icon Recolor ---*/
.icon_fc4f04 path[d^="M18.09 1.63"] {
fill: var(--status-danger-background) !important;
}
/*-------------*/
/*--- 'NSFW' Message Bar Icon Recolor ---*/
.icon_bcc24e path[d^="M18.09 1.63"] {
fill: var(--status-danger-background) !important;
}
/*--- Ping Warning ---*/
.ping_c02c63 path[d^="M18.09 14.63c.4-.7"] {
fill: var(--status-danger-background) !important;
}