-
Notifications
You must be signed in to change notification settings - Fork 6
/
style.css
108 lines (88 loc) · 1.45 KB
/
style.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
.PromotePinned svg {
stroke-width: 2px;
}
.Theme__Dark .PromotePinned:hover svg {
stroke: #fff !important;
}
.PromotePinned strong {
font-weight: 700;
color: #C7C4C4;
margin: 0 0 0 5px;
}
.Theme__Dark .PromotePinned strong {
color: #434344;
}
.Theme__Light .PromotePinned:hover strong {
color: #9f9c9c;
}
.Theme__Dark .PromotePinned:hover strong {
color: #fff;
}
.PromotePinned.--Enabled strong {
color: #F0CE15;
}
.PromotePinned.--Enabled svg {
stroke: #F0CE15 !important;
}
.Note {
position: relative;
}
.NoteButtons {
transition: opacity .1s ease;
position: absolute;
top: 20px;
right: 0;
pointer-events: none;
opacity: 0;
}
.__Pinned .NoteButtons {
pointer-events: auto;
opacity: 1;
right: 20px;
}
.__Pinned .NoteButtons .Trash {
display: none;
}
.Note:hover .NoteButtons {
opacity: 1;
pointer-events: auto;
}
.Note:hover .NoteButtons,
.Note:hover .NoteButtons * {
cursor: pointer;
}
.NoteButtons span {
margin-left: 11px;
}
.NoteButtons .Trash svg {
width: 15px;
height: 16px;
fill: #EF4E65;
}
.NoteButtons .Trash:hover svg {
fill: #ba3e51;
}
.NoteButtons .Pin svg {
width: 16px;
height: 16px;
stroke: #C7C4C4;
fill: none;
stroke-width: 2px;
}
.NoteButtons .Pin:hover svg {
stroke: #9f9c9c;
}
.__Pinned .NoteButtons .Pin svg {
stroke: #F0CE15;
}
.NoteButtons .Edit svg {
width: 16px;
height: 16px;
color: #f9a57e;
}
.NoteButtons .Edit svg use {
color: currentColor;
}
.NoteButtons .Edit:hover svg {
color: #c38263;
}