
How to style cancelled tasks ?
I am able to style tasks that are either completed/overdue/inprogress in userChrome.css . But so far I have not found a way to style canceled tasks.
Can someone help me ?
Chosen solution
I found the solution: https://www.elevenforum.com/t/thunderbird-115-css-customization.16320/post-613032
/* Canceled/Cancelled Tasks - in Today Panel/Tasks Tab */
.calendar-task-tree > treechildren::-moz-tree-cell-text(status-cancelled) {
color: grey !important;
text-decoration: line-through !important;
}
All Replies (2)
Chosen Solution
I found the solution: https://www.elevenforum.com/t/thunderbird-115-css-customization.16320/post-613032
/* Canceled/Cancelled Tasks - in Today Panel/Tasks Tab */
.calendar-task-tree > treechildren::-moz-tree-cell-text(status-cancelled) {
color: grey !important;
text-decoration: line-through !important;
}
Modified