Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm currently using the following to colorize weekends in Google Calendar in Firefox (week-view):

@-moz-document url-prefix("https://www.google.com/calendar/") {  td.tg-weekend {
    background-color: #Ffd4d4;} }

But when the day is a weekend, it shows up in the normal bluish color instead of the reddish color. Is it possible to keep the color of the current day red if the current day is a weekend (there is a CSS element called tg-col-today, but I don't know how to use that to check if the today column is the same as a weekend column)

share|improve this question
Does adding !important to the rule work? – Nick Jan 12 at 7:33
Nope tried that. – asymptotically Jan 12 at 15:52

1 Answer

up vote 2 down vote accepted

Replace td.tg-weekend with td.tg-weekend, td.tg-weekend .tg-today

share|improve this answer
Woohoo! Perfect! Why does this work? Also, I'm using the Hide Morning and Night Lab, and this is what it looks like. Is there a way to fix that? (The white part is the hidden part. Using the code I originally had, neither weekend's hidden part was colored. I want both to be colored) Again, thanks! – asymptotically Jan 12 at 18:43
1  
I'm glad that fixed it! It works because you're overriding the background color of the div that has the "tg-today" class, but only if it's within td.tg-weekend. As for your other problem, I think you can change the color of that element using the .cgd-gutter-bg-top selector, but I'm not sure if you can do that for just the weekend. – Adam Taylor Jan 12 at 18:58
Nice. So why doesn't td.tg-weekend .cgd-gutter-bg-top work? Is it because .cgd-gutter-bg-top is a single element? – asymptotically Jan 12 at 20:04
.cgd-gutter-bg-top isn't a child of td.tg-weekend – Adam Taylor Jan 12 at 20:09
But neither is .tg-today, right? – asymptotically Jan 12 at 23:34
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.