yoyurec / logseq-awesome-styler

🎨 Totally customizable theme with presets: colors, backgrounds, fonts and sizes, etc... Logseq plugin
MIT License
183 stars 9 forks source link

Set color block bullet points when defined as unordered list #39

Closed ecodiv closed 2 years ago

ecodiv commented 2 years ago

Idea Allow to define a different color for bullet points for blocks if they are part of an unordered list, defined using the #.ul or #.ol tag from the (logseq-plugin-ol) plugin.

yoyurec commented 2 years ago

isn't this question is for logseq-plugin-ol plugin developer? its his elements )) it can be done as for "Bullet threading" plugin via options.... or hardcoded to use primary text color...

i can't support tens plugins with hundreds settings for every pixel and symbol, sorry )))

but you can try for now custom.css

.ls-block[data-refs-self*='".ol'] .bullet {
    background-color: var(--ls-primary-text-color) !important;
}

image