bennyxguo / Obsidian-Obsidianite

🎨 Obsidian.md custom theme, it's dark and simple but yet still stays sparkles!
MIT License
279 stars 48 forks source link

Bullet points not visible in view mode #45

Closed kenjibailly closed 1 year ago

kenjibailly commented 2 years ago

View mode: image

Edit mode: image

Edit: Somewhere this is getting overwritten:

ul li:not(.task-list-item)::before {
    color: transparent
}

When I set !import after that line in the theme it works:

ul li:not(.task-list-item)::before {
  color: var(--text-accent) !important;
}