denmojo_obsidian-unread-dot/styles.css
Dennis M 65c86cc382
Roll up unread dots to ancestor folders (v1.1.0)
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.
2026-06-25 06:12:07 -07:00

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;
}