Here's a quick stylesheet do "gray out" done items

Been asked this a few times over email, so here’s one quick way to do it:

item[data-done] {
  color: lightgray;
  > run[content] {
    text-strikethrough-color: lightgray;
  }
  > run[link^="button"] {
    color: lightgray;
  }
  > run[tag] {
    color: lightgray;
  }
}
4 Likes