Home
last modified time | relevance | path

Searched refs:themeStyles (Results 1 – 3 of 3) sorted by relevance

/plugin/calendar/
Dsyntax.php125 $themeStyles = $this->getSidebarThemeStyles($theme);
129 $btnTextColor = ($theme === 'professional') ? '#fff' : $themeStyles['bg'];
168 …="' . $theme . '" data-theme-styles="' . htmlspecialchars(json_encode($themeStyles)) . '" data-imp…
173 --background-site: ' . $themeStyles['bg'] . ';
174 --background-alt: ' . $themeStyles['cell_bg'] . ';
175 --background-header: ' . $themeStyles['header_bg'] . ';
176 --text-primary: ' . $themeStyles['text_primary'] . ';
177 --text-dim: ' . $themeStyles['text_dim'] . ';
178 --text-bright: ' . $themeStyles['text_bright'] . ';
179 --border-color: ' . $themeStyles['grid_border'] . ';
[all …]
DCHANGELOG.md1522 - Wiki theme event highlight (when clicking calendar bar) now uses `themeStyles.header_bg` (`__back…
1538 - Added `background` from `$themeStyles['bg']` to section container
1587 - Wiki theme Today/Tomorrow/Important section header text now uses `$themeStyles['text_primary']` (…
1603 - Container background set from `$themeStyles['bg']` with `!important`
1657 - Both tooltip functions use theme-derived colors from `$themeStyles`
1659 - Background from `$themeStyles['bg']`, divider borders use theme accent colors
1837 - **Changed:** Week grid JS theme colors now use actual $themeStyles values
1883 - **Fixed:** Popup footer and "+ Add Event" button were using inline themeStyles — now use CSS vars
1890 - **Changed:** Conflict tooltip reads CSS vars via getComputedStyle instead of data-themeStyles
2839 background: $themeStyles['border'], // Theme's accent color!
[all …]
Dcalendar-main.js252 let themeStyles = {};
254 themeStyles = JSON.parse(container.dataset.themeStyles || '{}');
257 themeStyles = {};
547 let themeStyles = {};
548 if (container && container.dataset.themeStyles) {
550 themeStyles = JSON.parse(container.dataset.themeStyles);
733 const themeStyles = container ? JSON.parse(container.dataset.themeStyles || '{}') : {};
1001 let themeStyles = {};
1003 if (container && container.dataset.themeStyles) {
1005 themeStyles = JSON.parse(container.dataset.themeStyles);
[all …]