-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
89 lines (73 loc) · 1.41 KB
/
styles.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
/* side pane style */
.side_pane {
margin-bottom: 10px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.side_pane_heading {
margin: 0;
display: inline;
}
.side_pane_path {
margin-left: 5px;
color: var(--color-accent-1);
display: inline;
}
.side_pane_item {
padding: 5px 5px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.side_pane_item .file_name {
color: var(--color-accent-1);
margin: 0;
}
.side_pane_item .file_percent {
font-size: 10px;
margin-top: 5px;
margin-bottom: 0;
font-style: italic;
}
.side_pane_item .file_content{
white-space: initial;
margin: 0;
font-size: 13px;
}
.side_pane_item:hover {
background: var(--background-modifier-hover);
border-radius: 5px;
}
/* No note suggestion style */
#on_note_suggestions {
padding: 10px;
min-height: 50px;
overflow-x: scroll;
white-space: nowrap;
padding-bottom: 15px;
max-width: var(--file-line-width);
}
#on_note_suggestions::-webkit-scrollbar {
display: none;
}
.on_note_suggestions_item {
display: inline;
margin: 5px;
color: var(--color-accent-1);
}
.on_note_suggestions_item a {
display: inline;
margin: 0px;
color: var(--text-muted);
font-weight: bold;
}
.cached_item{
opacity: .9;
}
/* code block style */
.suggestion_code{
margin-top: 5px;
}
.suggestion_code li{
}