-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathNoteManager.css
More file actions
109 lines (92 loc) · 1.67 KB
/
NoteManager.css
File metadata and controls
109 lines (92 loc) · 1.67 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
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
109
.notes-wrapper {
height: 100%;
display: flex;
flex-direction: column;
}
.notes-wrapper .note-manager {
flex: 1;
overflow: auto;
}
.notes-wrapper .notes-actions {
margin-top: 2rem;
display: flex;
gap: 1rem;
font-size: 0.8rem;
}
.note-manager .new-note button {
width: 100%;
}
.note-manager textarea,
.note-manager input {
padding: 1rem;
resize: vertical;
width: 100%;
box-sizing: border-box;
border-radius: 6px;
}
.note-manager .note textarea,
.note-manager .note input {
border: 1px solid #767676;
}
.note-manager .validation-message {
padding-bottom: 10px;
color: #f22;
}
.note-manager textarea.error {
border: 1px solid #f22;
}
.note-manager blockquote {
padding: 0.5rem;
margin: 0.5rem 0;
padding-bottom: 16px;
white-space: pre-wrap;
}
.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 {
padding: 8px;
border: 1px solid;
border-color: light-dark(#eee, #444);
margin-top: 5px;
border-radius: 6px;
}
.note-manager .note-link a {
font-weight: bold;
}
.note-manager .note .actions {
display: flex;
}
.note-manager button.remove {
color: #f22;
}
.note-manager .fill {
flex: 1;
}
.note-manager button.save {
color: #2a2;
}
.note-manager button.edit {
font-size: 8px;
background: none;
filter: grayscale(100%);
opacity: 30%;
transition: all 200ms ease-in-out;
}
.note-manager .note:hover button.edit {
filter: none;
opacity: 100%;
}