Added by man man over 15 years ago
Hi all,
How could I modify a theme so that overdue tasks are highlighted? I am not familiar with CSS so please help.
man man wrote:
How could I modify a theme so that overdue tasks are highlighted? I am not familiar with CSS so please help.
In basic: you should be able to do this for all elements which haves the class overdue
, using a CSS class-selector like:
*.overdue { font-weight: bold } /* all elements with class~=overdue */
More about the implementation of this class (e.g. when is an issue considered to be "overdue") can be found in issue #2337.
HTH and kind regards,
Mischa.