mirror of
https://github.com/caffa/Obsidian-Current-Folder-Note-Display-Plugin.git
synced 2026-07-22 09:50:27 +00:00
19 lines
324 B
CSS
19 lines
324 B
CSS
|
|
/* styles.css */
|
||
|
|
|
||
|
|
.folder-notes-style {
|
||
|
|
display: block;
|
||
|
|
margin: 0px;
|
||
|
|
padding: 0px;
|
||
|
|
cursor: pointer;
|
||
|
|
color: var(--text-normal);
|
||
|
|
text-decoration: none;
|
||
|
|
font-size: var(--font-small);
|
||
|
|
}
|
||
|
|
|
||
|
|
.current-file {
|
||
|
|
color: var(--text-muted);
|
||
|
|
}
|
||
|
|
|
||
|
|
.hover-style {
|
||
|
|
background-color: var(--interactive-hover);
|
||
|
|
}
|