change the style of text-decoration of task list #163
Unanswered
chienyutseng
asked this question in
Q&A
Replies: 1 comment
-
this should do the trick: .card-board-card-title del {
color: red;
text-decoration-line: underline;
text-decoration-color: cyan;
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I encountered an issue where I wanted to change the text-decoration line style of the task list from line-through to underline after checking the checkbox. I attempted to address this by adding a CSS style to the plugin's .css file, but unfortunately, the line-through style persisted.
Here is the CSS rule I added:
.card-board-card input.task-list-item-checkbox:checked + .card-board-card-title {
color: red;
text-decoration-line: underline;
text-decoration-color: cyan;
}
Beta Was this translation helpful? Give feedback.
All reactions