-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathextension.css
84 lines (71 loc) · 1.89 KB
/
extension.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
span.rm-page-ref[data-tag^="priority"] {
padding: 0px 4px !important;
display:inline-block;
border-radius: 4px;
border: 0px solid rgb(185, 185, 185) !important;
color: rgb(26, 26, 26) !important;
}
span.rm-page-ref[data-tag^="priority"]:hover {
opacity: 0.8;
}
span.rm-page-ref[data-tag$="/p1"]::before {
content: '🔴 ';
}
span.rm-page-ref[data-tag$="/p1"] {
background-color: rgb(252,231,235);
}
span.rm-page-ref[data-tag$="/p2"]::before {
content: '🟠 ';
}
span.rm-page-ref[data-tag$="/p2"] {
background-color: rgb(250,224,175);
}
span.rm-page-ref[data-tag$="/p3"]::before {
content: '🔵 ';
}
span.rm-page-ref[data-tag$="/p3"] {
background-color: rgb(199,230,240);
}
span.rm-page-ref[data-tag$="/p4"]::before {
content: '⚪️ ';
}
span.rm-page-ref[data-tag$="/p4"] {
background-color: rgb(213,213,213) !important;
}
span[data-link-title^="priority"] > .rm-page-ref {
padding: 0px 4px !important;
display:inline-block;
border-radius: 4px;
border: 0px solid rgb(185, 185, 185) !important;
color: rgb(26, 26, 26) !important;
}
span[data-link-title^="priority"] > .rm-page-ref:hover {
opacity: 0.8;
}
span[data-link-title^="priority"] > .rm-page-ref:hover {
border: 1px solid;
}
span[data-link-title$="/p1"] > span.rm-page-ref::before {
content: '🔴 ';
}
span[data-link-title$="/p1"] > span.rm-page-ref {
background-color: rgb(252,231,235);
}
span[data-link-title$="/p2"] > span.rm-page-ref::before {
content: '🟠 ';
}
span[data-link-title$="/p2"] > span.rm-page-ref {
background-color: rgb(250,224,175);
}
span[data-link-title$="/p3"] > span.rm-page-ref::before {
content: '🔵 ';
}
span[data-link-title$="/p3"] > span.rm-page-ref {
background-color: rgb(199,230,240);
}
span[data-link-title$="/p4"] > span.rm-page-ref::before {
content: '⚪️ ';
}
span[data-link-title$="/p4"] > span.rm-page-ref {
background-color: rgb(213,213,213) !important;
}