Този сайт ще има ограничена функционалност, докато се извършва тече неговата поддръжка. Ако дадена статия не може реши проблема ви и искате да зададете въпрос, нашата общност е готова да ви помогне на @firefox в Twitter и /r/firefox в Reddit.

Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

Highlight Color for "today" and "selected" in Lightning

  • 3 отговора
  • 1 има този проблем
  • 15 изгледи
  • Последен отговор от Swiss_bRedd

more options

This question is a followup to Thunderbird 78.2.2 Calendar "TODAY" highlight

That question provides details on how to edit userChrome.css to (differently) highlight "today" and/or the selected day.

Unfortunately, while it works in the month and multiweek Lightning views, it does not work in the week view.

Does someone know which selector must be used to target that view to similarly change the highlight color?

I have tried things like:

    .calendar-week-day-box-current-week[selected="true"] {
       background-color: Gold !important;
    }

But this (and other similar selectors) does not work.

For some reason I can not get the developer tools (inspector) to show me the selector name, so I am flying blind!

Thanks in advance to anyone who can shed light on this!

This question is a followup to [https://support.mozilla.org/en-US/questions/1304213 Thunderbird 78.2.2 Calendar "TODAY" highlight] That question provides details on how to edit userChrome.css to (differently) highlight "today" and/or the selected day. '''Unfortunately, while it works in the month and multiweek Lightning views, it does ''not'' work in the week view.''' Does someone know which selector must be used to target that view to similarly change the highlight color? I have tried things like: .calendar-week-day-box-current-week[selected="true"] { background-color: Gold !important; } But this (and other similar selectors) does not work. For some reason I can not get the developer tools (inspector) to show me the selector name, so I am flying blind! Thanks in advance to anyone who can shed light on this!

Променено на от Swiss_bRedd

Всички отговори (3)

more options

After a brief search on 'thunderbird userchrome calendar current day background color', I arrived at some code that changes the color of the header in Week view to make it more distinctive. It doesn't affect the code for month or multiweek. Further refinements are probably possible.

calendar-event-column[selected="true"],
calendar-header-container[selected="true"] { 
  background: yellow!important;
}

calendar-event-column[relation="today"],
calendar-header-container[relation="today"] { 
  background: green!important;
}
more options

.....

Променено на от sfhowes

more options

Hi @sfhowes

Thanks for your input.

sfhowes said

Further refinements are probably possible.

It works exactly as shown in your screenshot. Unfortunately, an "all day" event makes this solution less than ideal as an all-day event can itself occlude the color in that cell almost entirely.

I've got the developer tools (inspector) showing me (maybe not all?) selector names again, but any attempt to target the whole column seems to not work.

So . . . rather than targeting "calendar-header-container" (which seems to affect the "all day event" cell

I have tried targeting "multiday-column-bg-box" and "multiday-column-box-stack"

Unfortunately, neither have worked.

Clearly it should be possible as the default setup of Lightning is able to color the entire selected and/or current day column differently from others . . .

Any further insights would be appreciated!