-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.css
More file actions
49 lines (41 loc) · 1.07 KB
/
main.css
File metadata and controls
49 lines (41 loc) · 1.07 KB
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
.comment-track-action {
cursor: pointer;
position: relative;
top: 6px;
padding: 3px;
border-radius: 6px;
border: 1px solid black;
color: hsla(0, 0%, 33%, 1);
width: 105px;
text-align: center;
}
.comment-track-unresolve {
background-color: hsla(120, 63%, 74%, 1);
border-color: hsla(120, 63%, 56%, 1);
}
.comment-track-unresolve:after {
content: '\02713\00a0Resolved'; /* These \f characters are from octicon */
}
.comment-track-unresolve:hover {
background-color: hsla(360, 63%, 74%, 1);
border-color: hsla(360, 63%, 56%, 1);
}
.comment-track-unresolve:hover::after {
content: '\2715\00a0Unresolve';
background-color: hsla(360, 63%, 74%, 1);
border-color: hsla(360, 63%, 56%, 1);
}
.comment-track-resolve {
background-color: hsla(360, 63%, 74%, 1);
border-color: hsla(360, 63%, 56%, 1);
}
.comment-track-resolve:after {
content: '\2715\00a0Unresolved';
}
.comment-track-resolve:hover {
background-color: hsla(120, 63%, 74%, 1);
border-color: hsla(120, 63%, 56%, 1);
}
.comment-track-resolve:hover::after {
content: '\02713\00a0Resolve';
}