Merged in release/2025-08-15 (pull request #2461)

feature/IO-1113-Online-Dark-Mode - Adjust Car SVG Background color in Dark mode
This commit is contained in:
Dave Richer
2025-08-08 16:51:48 +00:00
2 changed files with 10 additions and 1 deletions

View File

@@ -208,6 +208,7 @@
--today-bg: #4a5e6e; /* Dark mode today background */
--today-text: #ffffff; /* Dark mode today text */
--off-range-bg: #333333; /* Dark mode off-range background */
--svg-background: #FFF; /* Dark mode SVG background */
}
// Global Styles
@@ -407,6 +408,10 @@
// Override react-big-calendar styles for dark mode only
[data-theme="dark"] {
.car-svg {
background-color: var(--svg-background);
}
.rbc-today {
background-color: var(--today-bg);
color: var(--today-text);
@@ -420,3 +425,7 @@
background-color: var(--today-bg);
}
}
//.rbc-time-header-gutter {
// padding: 0;
//}