mirror of
https://github.com/wenlzhang/obsidian-folder-navigator.git
synced 2026-07-22 12:10:25 +00:00
36 lines
696 B
CSS
36 lines
696 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;
|
|
}
|
|
|
|
.suggestion-highlight {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.folder-create-option {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 4px 0;
|
|
color: var(--text-accent);
|
|
}
|
|
|
|
.folder-create-icon {
|
|
margin-right: 6px;
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
.folder-create-text {
|
|
font-style: italic;
|
|
}
|