mirror of
https://github.com/denmojo/obsidian-unread-dot.git
synced 2026-07-22 06:49:57 +00:00
Port the folder dot rollup from the abandoned 1.2.x beta line, without the orange modified-file indicator. Folders inherit the blue dot when any descendant file is unread, and a folder right-click 'Mark all in folder as read' recursively clears descendants and reports the count. Bump to 1.1.0.
12 lines
347 B
CSS
12 lines
347 B
CSS
.nav-file-title.unread-dot-mark .nav-file-title-content::before,
|
|
.nav-folder-title.unread-dot-mark .nav-folder-title-content::before {
|
|
content: '';
|
|
display: inline-block;
|
|
width: 8px;
|
|
height: 8px;
|
|
background-color: var(--unread-dot-color, #3b82f6);
|
|
border-radius: 50%;
|
|
margin-right: 6px;
|
|
vertical-align: middle;
|
|
flex-shrink: 0;
|
|
}
|