-
Notifications
You must be signed in to change notification settings - Fork 0
/
note-theme-simple.css
124 lines (124 loc) · 2.87 KB
/
note-theme-simple.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.tree .tree-node.open > .head > .expander {
visibility: hidden;
}
.tree .tree-node.open > .head > .expander:before {
content: "\f068";
}
.tree .tree-node.closed > .head > .expander:before {
content: "\f067";
}
.tree .tree-node > .head {
display: flex;
}
.tree .tree-node > .head > .jumpto {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 14px;
padding-top: 3px;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
padding-right: 5px;
visibility: hidden;
color: #777;
}
.tree .tree-node > .head > .jumpto:hover {
color: black;
}
.tree .tree-node > .head > .jumpto:before {
content: "\f101";
}
.tree .tree-node > .head:hover > .jumpto {
visibility: visible;
}
.tree .tree-node > .head > .expander {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
font-size: 14px;
padding-top: 3px;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #777;
}
.tree .tree-node > .head > .expander:hover {
color: black;
}
.tree .tree-node.open > .head:hover > .expander {
visibility: visible;
}
.simple-theme.note {
display: flex;
flex: 1;
}
.simple-theme.note .body input,
.simple-theme.note .body textarea,
.simple-theme.note .body .shadow,
.simple-theme.note input.body,
.simple-theme.note textarea.body {
border: none;
border-bottom: 1px dashed white;
}
.simple-theme.note .body input:focus,
.simple-theme.note .body textarea:focus,
.simple-theme.note .body .shadow:focus,
.simple-theme.note input.body:focus,
.simple-theme.note textarea.body:focus {
border-bottom-color: #777;
outline: none;
}
.simple-theme.note .body input,
.simple-theme.note .body.input {
height: 1em;
}
.simple-theme.note > .body.input-head {
flex: 1;
}
.simple-theme.note .body.scripture-input {
display: flex;
flex: 1;
}
.simple-theme.note .body.scripture-input .scripture-reference {
width: 80px;
vertical-align: top;
}
.simple-theme.note .body.scripture-input .scripture-text {
flex: 1;
}
.simple-theme.note .dropicon:focus {
outline: none;
}
.simple-theme.note .dropicon li.focused {
outline: 1px solid blue;
}
.simple-theme.note .dropicon .list {
border: 1px solid #ccc;
box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
border-radius: 5px;
}
.simple-theme.note .dropicon .list li::first-child {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
.simple-theme.note .dropicon .list li::last-child {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}
.simple-theme.note .dropicon i {
margin-right: 3px;
}
.simple-theme.note .dropicon .head > * {
padding: 5px;
font-size: 10px;
}
.simple-theme.note .dropicon li > * {
padding: 5px 10px 5px 5px;
}
.simple-theme.note .dropicon li.selected > *,
.simple-theme.note .dropicon li > *:hover {
background-color: #acf;
}