blob: 177b5f4d59102396ed32256835e2c901653a1a8a (
plain)
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
|
@import "../global/globalCssVariables";
.collectionNoteTakingView-DocumentButtons {
display: flex;
justify-content: space-between;
margin: auto;
}
.collectionNoteTakingView-addDocumentButton {
display: flex;
overflow: hidden;
margin: auto;
width: 100%;
overflow: ellipses;
.editableView-container-editing-oneLine,
.editableView-container-editing {
color: grey;
padding: 10px;
width: 100%;
}
.editableView-input:hover,
.editableView-container-editing:hover,
.editableView-container-editing-oneLine:hover {
cursor: text
}
.editableView-input {
outline-color: black;
letter-spacing: 2px;
color: grey;
border: 0px;
padding: 12px 10px 11px 10px;
}
font-size: 75%;
letter-spacing: 2px;
cursor: pointer;
.editableView-input {
outline-color: black;
letter-spacing: 2px;
color: grey;
border: 0px;
padding: 12px 10px 11px 10px;
}
}
|