Any Toggl users here? I'm putting together an integration so the toggl (Chrome extension) button ( https://github.com/toggl/toggl-button ) is displayed for tasks on a Checkvist list. It's dead simple (a few lines of javascript), but I'm slightly torn on the best way to handle one aspect: whether or not toggl is shown for a particular list. It can't be always-on, as it adds too much clutter for non-projecty lists (who wants a timer button for the carrots on their grocery list?). What I have now is that if any task on a list is tagged #toggl, then all tasks on that list will have the toggl button. A few alternatives I canvassed were: - display toggl buttons only on subtasks of a task tagged with #toggl - display toggl buttons only on focused (hoisted) tasks - find some other way to indicate that all of a list's tasks should have the button, eg. something encoded in the list's name I think what I have now is the most convenient of these (I don't want to hav...
I'd suggest doing the converse. Color code your tags (go to tags page, click box to left of each tag). This helps non-tag data stand out better, plus greatly relieves tag confusion.
ReplyDeleteI already have my tags color-coded. That's one of the reasons why the "today" is not standing out very well. I suppose I could make sure I'm not using red or orange for any of my tags, since the "today" is rendered with red letters and a red border.
ReplyDeleteI think you need something like
ReplyDelete.dueDate.today {
background-color: darkorange;
color: white;
border-color: orange;
}
Would it work?