generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyles.css
48 lines (38 loc) · 926 Bytes
/
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
.tree-item-content {
padding-top: 3px;
width: 100%;
}
/* Do not header number on hover because it's not clickable */
.tree-item-self:hover .tree-item-flair {
color: var(--text-faint);
}
.external-links-header {
padding: 4px 8px;
}
div.MuiTreeItem-content {
padding: 0;
}
/* Used to remove the default padding of the lean node on Mui Tree Item */
.leaf-tree-item > div.MuiTreeItem-content > div.MuiTreeItem-iconContainer {
display: none;
}
/* remove the default background color of the tree item component */
div.MuiTreeItem-content.Mui-selected {
background-color: transparent;
}
div.MuiTreeItem-content.Mui-focused {
background-color: transparent;
}
div.MuiTreeItem-content.Mui-selected.Mui-focused {
background-color: transparent;
}
.Mui-expanded {
color: var(--nav-heading-color);
}
a.tree-item-inner {
display: block;
text-overflow: ellipsis;
width: 100%;
white-space: nowrap;
overflow: hidden;
}