Hi all!
I've been meaning to hide the Tasks calendar from the left navi for a while now. (Google Tasks is too simplistic for me, and I use something else.)
I've been able to do it with this CSS rule:
#lhscalinner_my div:nth-child(5) {
display: none;
}
It works as intended, but note that this hides the *5th* calendar in the first calendar list. It only works because Tasks happens to be the 5th in the list for me. So it's an unstable rule, that might break when I create additional calendars.
Does anyone know a way to select the div that I want to hide by the text "Tasks" that is (nested deeply) inside it?
Cheers!