Jim
1
When I tag an item with @today, I want the whole line (including the -) to be the same color:

My current less code is:
// Colors @today
item[data-today] {
color: rgb(255, 192, 0);
handle-color: rgb(255, 192, 0);
handle-border-color: rgb(255, 192, 0);
}
Yes, you can target that with run[lead]
. Here’s an example that colors the leading syntax of items tagged with today as red:
item[data-today] {
color: rgb(255, 192, 0);
}
item[data-today] {
> run[lead] {
color: rgb(255, 0, 0);
}
}
1 Like