There's a CSS issue with nested ordered list () items in task notes:
There's a CSS issue with nested ordered list (
- ) items in task notes:
A rule set on ".userContent ul li" overrides the default "ol li" item styling (list-style-type: decimal) in user notes due to the selector's higher specificity. This causes nested ordered list items to be displayed with bullet points rather than numbers.
I've added some custom CSS to workaround this issue temporarily:
.userContent ol > li {
list-style-type: decimal;
}
But it would be great if Checkvist's default CSS correctly handled styling itself (e.g. update the selector so that it only applies bullets to it's direct children, not all descendants).
Thanks.
Reasonable fix, thanks! Will implement.
ReplyDeleteHello Sol, the fix is on the https://beta.checkvist.com
ReplyDeleteThe production site will be updated in a couple of days, I hope.
Looks great, thanks!
ReplyDeleteThis fix is on the production site, thanks again :)
ReplyDelete