Today Pane countdown

For discussing the Mozilla Calendar, Sunbird and Lightning projects.
Post Reply
Peterworks
Posts: 11
Joined: July 28th, 2006, 1:40 am

Today Pane countdown

Post by Peterworks »

Ver 102.2.1 now shows a countdown next to an upcoming event in the Today Pane, eg 15:30 Skype Mike in 61 min
Can this be turned off ?

TIA
morat
Posts: 6421
Joined: February 3rd, 2009, 6:29 pm

Re: Today Pane countdown

Post by morat »

You can hide the countdown using the userChrome.css file.

Code: Select all

/* Thunderbird userChrome.css */

@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");

html|span.agenda-listitem-relative:not(:-moz-window-inactive) {
  display: none !important;
}
That example hides the countdown when the Thunderbird window is active. (click desktop to show countdown)

http://kb.mozillazine.org/UserChrome.css

Remember to set the toolkit.legacyUserProfileCustomizations.stylesheets preference to true, then restart.
Peterworks
Posts: 11
Joined: July 28th, 2006, 1:40 am

Re: Today Pane countdown

Post by Peterworks »

Thanks morat - works perfectly
Post Reply