Gridfox: Highlight Today in Week View v1.0.0

← Back to Stylus Rules

Highlights the current day in the Gridfox week view calendar with a light blue background for easy identification.

What it does

This style rule improves calendar navigation by:

  • Today indicator: Adding a light blue background to the current day's cell in the week view

This makes it easier to quickly identify today's date when viewing your Gridfox calendar in week view mode.

Style Content

/* ==UserStyle==
@name           Gridfox: Highlight Today in Week View
@namespace      https://www.timhilton.xyz/stylus-rules/
@version        1.0.0
@description    Highlights the current day in the Gridfox week view calendar with a light blue background for easy identification
@author         Tim Hilton
@homepageURL    https://www.timhilton.xyz/stylus-rules/gridfox/highlight-today-week-view/
@updateURL      https://www.timhilton.xyz/stylus-rules/gridfox/highlight-today-week-view/latest/highlight-today-week-view.user.css
==/UserStyle==*/

@-moz-document domain("ongridfox.com"), domain("app.gridfox.com") {
.week-view .rows .row__week div.cell.today {
    background-color: #e5f5ff;
}
}