colineckert / obsidian-things

An Obsidian theme inspired by the beautifully-designed app, Things.
MIT License
707 stars 60 forks source link

Special checkboxes have formatting for when a normal checkbox is checked #123

Closed lbybrilee closed 1 year ago

lbybrilee commented 1 year ago

image

I don't know if this is supposed to be this way, but is there a way to make the text after special checkboxes look like when it's unchecked?

kyoruni commented 1 year ago

In the case of bookmarks, please write the following in the CSS of the theme.

body:not(.tasks) li[data-task='b'].task-list-item.is-checked {
  color: var(--text-normal);
}

others

information … body:not(.tasks) li[data-task='i'].task-list-item.is-checked star … body:not(.tasks) li[data-task='*'].task-list-item.is-checked

colineckert commented 1 year ago

this is a good catch. probably doesn't make sense for any checkbox to have faint font unless it's completed or canceled. i'll update this a push shortly. thanks!

lbybrilee commented 1 year ago

Thank you!

colineckert commented 1 year ago

@kyoruni @lbybrilee I just pushed up a fix for this. Lmk if you find any bugs. if not, pls close this issue. thanks!!