mirror of
https://github.com/wenlzhang/obsidian-folder-navigator.git
synced 2026-07-22 05:41:23 +00:00
16 lines
405 B
CSS
16 lines
405 B
CSS
.nav-folder-title-highlighted {
|
|
background-color: var(--text-selection);
|
|
border-radius: 4px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.folder-separator {
|
|
color: var(--text-muted);
|
|
font-size: 0.85em;
|
|
text-align: center;
|
|
padding: 5px 0;
|
|
font-style: italic;
|
|
border-bottom: 1px solid var(--background-modifier-border);
|
|
margin-bottom: 5px;
|
|
pointer-events: none;
|
|
}
|