generated from obsidianmd/obsidian-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
40 lines (33 loc) · 1015 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
.personal-icon {
display: flex;
align-self: center;
margin-right: 4px;
}
.personal-icon[data-icon="folder-closed"] {
display: none;
}
.tree-item.nav-folder.is-collapsed
> .tree-item-self
> .personal-icon[data-icon="folder-open"] {
display: none;
}
.tree-item.nav-folder.is-collapsed
> .tree-item-self
> .personal-icon[data-icon="folder-closed"] {
display: flex;
}
/* ─────────────────────────────────────────────────── */
/* Main Theme Styling */
/* ─────────────────────────────────────────────────── */
body {
--strong-color: var(--text-accent);
}
/* body.theme-dark {
--strong-color: var(--text-accent);
} */
/* Bold font */
body:not(.default-font-color) strong,
body:not(.default-font-color) span:not(.cm-highlight).cm-strong {
opacity: 0.8;
color: var(--strong-color);
}