Skip to content

Commit

Permalink
fix(markers): Blocks marked "cancelled" not working (#4812)
Browse files Browse the repository at this point in the history
* fix #3663

* Update dicts.cljs

* close #4697

* fix: Cancelled not treated as canceled #4810
  • Loading branch information
sawhney17 committed Apr 4, 2022
1 parent 01c4c8a commit dd1321e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion resources/css/common.css
Expand Up @@ -741,6 +741,7 @@ li p:last-child,
}

.canceled,
.cancelled,
.done {
text-decoration: line-through;
opacity: 0.6;
Expand Down Expand Up @@ -780,7 +781,8 @@ li p:last-child,
}

.done,
.canceled {
.canceled,
.cancelled {
opacity: 0.7;
}

Expand Down

0 comments on commit dd1321e

Please sign in to comment.