-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathNoteManager.css
More file actions
62 lines (49 loc) · 943 Bytes
/
NoteManager.css
File metadata and controls
62 lines (49 loc) · 943 Bytes
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
.note-manager{
--inactive-note-bg: #ebebeb;
--active-note-bg: #d8e8e7;
--active-note-shadow-bg: #c8d9d8;
}
.dark .note-manager{
--inactive-note-bg: #444;
--active-note-bg: #3A4949;
--active-note-shadow-bg: #4A6565;
}
.notes-wrapper {
height: 100%;
display: flex;
flex-direction: column;
}
.notes-wrapper .note-manager {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
}
.note-manager .validation-message {
padding-bottom: 10px;
color: #f22;
}
.note-manager textarea.error {
border: 1px solid #f22;
}
.note-manager .icon {
margin-right: 3px;
color: #e22;
padding: 2px;
}
.note-manager .update {
text-decoration: underline;
cursor: pointer;
margin-left: 3px;
color: light-dark(#444, #ddd);
}
.note-manager .update.disabled {
text-decoration: none;
color: light-dark(#ddd, #444);
cursor: initial;
}
.note-manager .note .actions {
display: flex;
}
.note-manager .fill {
flex: 1;
}