-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
styles.css
139 lines (114 loc) · 2.7 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
.workspace-leaf-content[data-type="tagfolder-view"]>.view-content,
.workspace-leaf-content[data-type="tagfolder-view-list"]>.view-content {
padding: 0;
height: 100%;
overflow: unset;
}
.override-input {
flex-direction: column-reverse;
}
.tagfolder-tag::before {
all: inherit;
color: inherit;
font: inherit;
}
.tagfolder-tag.tag-tag::before {
margin-left: 0px;
margin-right: 0px;
}
.tagfolder-tag.tag-tag span.tf-tag-each:empty {
display: none;
}
.tagfolder-tag.tag-tag.tf-tag span.tf-tag-each:first-child:not(:empty):before {
content: "#";
margin-left: 0.3em;
}
.tagfolder-tag.tag-tag.tf-link span.tf-tag-each:first-child:not(:empty):before {
content: "";
margin-left: 0.3em;
}
.tagfolder-tag.tag-tag.tf-link.link-cross span.tf-tag-each:first-child:not(:empty):before {
content: "⇔ ";
margin-left: 0.3em;
}
.tagfolder-tag.tag-tag.tf-link.link-forward span.tf-tag-each:first-child:not(:empty):before {
content: "⇒ ";
margin-left: 0.3em;
}
.tagfolder-tag.tag-tag.tf-link.link-reverse span.tf-tag-each:first-child:not(:empty):before {
content: "⇐ ";
margin-left: 0.3em;
}
.tagfolder-tag.tag-tag span.tf-tag-each::before {
content: "→ ";
margin-left: 0;
margin-right: 0;
}
.tf-taglist {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
display: inline-block;
flex-shrink: 100;
margin-left: auto;
text-align: right;
}
.tf-taglist:not(:empty) {
min-width: 3em;
}
.tf-taglist .tf-tag {
background-color: var(--background-secondary-alt);
border-radius: 4px;
padding: 2px 4px;
margin-left: 4px;
color: var(--nav-item-color);
}
.nav-folder-title:hover .tagfolder-quantity,
.nav-file-title:hover .tf-taglist {
color: var(--text-on-accent);
}
.nav-folder-title:hover .tagfolder-quantity span,
.nav-file-title:hover .tf-taglist span.tf-tag {
color: var(--text-on-accent);
background-color: var(--interactive-accent-hover);
}
.lsl-f {
flex-direction: row;
display: flex;
flex-grow: 1;
overflow: hidden;
flex-shrink: 1;
}
.lsl-f:not(:last-child) {
min-width: 3em;
}
.lsl-f:empty::before {
content: "...";
}
.tagfolder-titletagname {
flex-grow: 1;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.tagfolder-quantity span {
background-color: var(--background-secondary-alt);
color: var(--nav-item-color);
border-radius: 4px;
padding: 2px 4px;
}
.tagfolder-quantity {
width: 3em;
text-align: right;
cursor: pointer;
margin-left: auto;
}
.tag-folder-title {
max-width: 100%;
}
.tree-item.nav-folder.updating {
background: linear-gradient(135deg, var(--interactive-accent-hover) 0%, var(--interactive-accent-hover) 50%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%);
background-repeat: no-repeat;
background-position: 0 0;
background-size: 10px 10px;
}