Lines Matching refs:themeStyles
1522 - 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!
2898 - Background uses `$themeStyles['border']` (theme accent)
2899 - Text color uses `$themeStyles['bg']` for contrast
7353 background: $themeStyles['bg'] !important;
7354 border: 2px solid $themeStyles['border'] !important;
7360 background: $themeStyles['header_bg'] !important;
7361 color: $themeStyles['text_primary'] !important;
7367 background: $themeStyles['cell_bg'] !important;
7368 color: $themeStyles['text_primary'] !important;
7369 border-color: $themeStyles['grid_border'] !important;
7374 color: $themeStyles['text_primary'] !important;
7379 accent-color: $themeStyles['border'] !important;
7402 borderColor = $themeStyles['grid_border'];
7794 $borderColor = $themeStyles['grid_border']; // From theme
7991 $linkColor = $themeStyles['border'] . ' !important';
8085 private function renderDescription($description, $themeStyles = null) {
8087 if ($themeStyles === null) {
8089 $themeStyles = $this->getSidebarThemeStyles($theme);
8093 $linkColor = $themeStyles['border'] . ' !important';
8178 style="background: $themeStyles['border'] !important;
8195 style="background: $themeStyles['border'] !important;
8204 'border:2px solid ' . $themeStyles['border'] . ' !important;' : '';
8377 style="background:' . $themeStyles['cell_bg'] . ' !important;"
8381 style="background:' . $themeStyles['cell_bg'] . ' !important;">
8385 style="background:' . $themeStyles['cell_bg'] . ' !important;">
8389 style="background:' . $themeStyles['cell_bg'] . ' !important;
8390 color:' . $themeStyles['text_dim'] . ' !important;">
8566 style="display:none; background:' . $themeStyles['cell_bg'] . ' !important;">
8579 style="accent-color:' . $themeStyles['border'] . ' !important;
8594 style="color:' . $themeStyles['text_primary'] . ' !important;
8595 background:' . $themeStyles['cell_bg'] . ' !important;
8596 border-color:' . $themeStyles['grid_border'] . ' !important;">
8758 style="color:' . $themeStyles['text_dim'] . ' !important;">
8762 style="display:none; color:' . $themeStyles['text_dim'] . ' !important;">
8769 style="color:' + themeStyles.text_dim + ' !important;">';
8773 style="display: none; color:' + themeStyles.text_dim + ' !important;">';
8781 style="color:' . $themeStyles['text_dim'] . ' !important;"
8784 style="color:' + themeStyles.text_dim + ' !important;"
8918 $thStyle = 'background:' . $themeStyles['header_bg'] . ' !important;
8919 color:' . $themeStyles['text_primary'] . ' !important;
8920 border-color:' . $themeStyles['grid_border'] . ' !important;
8926 th.style.setProperty('background', themeStyles.header_bg, 'important');
8927 th.style.setProperty('color', themeStyles.text_primary, 'important');
8928 th.style.setProperty('border-color', themeStyles.grid_border, 'important');
8936 <span class="past-events-arrow" style="color:' . $themeStyles['text_dim'] . ' !important;">▶</span>
8937 <span class="past-events-label" style="color:' . $themeStyles['text_dim'] . ' !important;">Past Eve…
8942 html += '<span class="past-events-arrow" style="color:' + themeStyles.text_dim + ' !important;">▶</…
8943 html += '<span class="past-events-label" style="color:' + themeStyles.text_dim + ' !important;">Pas…
8952 color:' . $themeStyles['text_primary'] . ' !important;';
8955 <span class="day-num" style="color:' . $themeStyles['text_primary'] . ' !important;">
8969 style="background:' . $themeStyles['bg'] . ' !important;"
9097 style="color:' . $themeStyles['text_primary'] . ';">
9101 style="color:' . $themeStyles['text_dim'] . ';">
9108 style="color:' + themeStyles.text_primary + ';">';
9112 style="color:' + themeStyles.text_dim + ';">';
9120 style="color: ' . $themeStyles['text_primary'] . ' !important;"
9123 $thStyle = 'color:' . $themeStyles['text_primary'] . ' !important;';
9130 thead.style.setProperty('color', themeStyles.text_primary, 'important');
9133 th.style.setProperty('color', themeStyles.text_primary, 'important');
9279 $thStyle = 'color:' . $themeStyles['text_primary'] . ';
9280 border-color:' . $themeStyles['grid_border'] . ';';
9290 th.style.color = themeStyles.text_primary;
9291 th.style.borderColor = themeStyles.grid_border;
9300 style="color:' . $themeStyles['text_primary'] . ';">
9318 style="background:' . $themeStyles['bg'] . ';">
9519 <thead><tr style="background: $themeStyles['header_bg'];
9520 color: $themeStyles['text_primary'];">
9526 thead.style.background = themeStyles.header_bg;
9527 thead.style.color = themeStyles.text_primary;
9528 thead.style.borderColor = themeStyles.grid_border;
9547 const btnTextColor = (theme === 'professional') ? '#fff' : themeStyles.bg;
9549 btn.style.background = themeStyles.border;
9551 btn.style.borderColor = themeStyles.border;
9702 const themeStyles = JSON.parse(container.dataset.themeStyles);
9706 'background: ' + themeStyles.cell_bg + ';' +
9707 'color: ' + themeStyles.text_primary + ';';
9710 const toggleStyle = 'background: ' + themeStyles.cell_bg + ';' +
9711 'color: ' + themeStyles.text_dim + ';';
9720 let themeStyles = {};
9721 if (container && container.dataset.themeStyles) {
9722 themeStyles = JSON.parse(container.dataset.themeStyles);
9727 background: ${themeStyles.cell_bg};
9728 color: ${themeStyles.text_primary};"
9735 const themeStyles = JSON.parse(container.dataset.themeStyles);
9739 'background: ' + themeStyles.cell_bg + ';' +
9740 'color: ' + themeStyles.text_dim + ';' +
9741 'border-color: ' + themeStyles.grid_border + ';';
9790 const themeStyles = JSON.parse(container.dataset.themeStyles);
9852 background: $themeStyles['cell_bg'];
9853 color: $themeStyles['text_primary'];"
9863 style="background: $themeStyles['cell_bg'];
9864 color: $themeStyles['text_dim'];
9865 border-color: $themeStyles['grid_border'];">
9871 renderEventListContent($events, $calId, $namespace, $themeStyles);
10029 const themeStyles = JSON.parse(container.dataset.themeStyles);
10033 themeStyles.cell_today_bg :
10034 themeStyles.cell_bg;
10041 style="background:{$themeStyles['header_bg']};
10042 color:{$themeStyles['text_primary']};"
10045 style="background:{$themeStyles['bg']};"
10048 style="background:{$themeStyles['cell_bg']};
10049 color:{$themeStyles['text_primary']};"
10052 style="background:{$themeStyles['border']};"
10099 $themeStyles = getSidebarThemeStyles($theme);
10106 const themeStyles = JSON.parse(container.dataset.themeStyles);
10109 style="background:${themeStyles.bg};"
10250 $themeStyles = $this->getSidebarThemeStyles($theme);
10255 style="background:' . $themeStyles['bg'] . ';
10256 border:2px solid ' . $themeStyles['border'] . ';
10257 box-shadow:0 0 10px ' . $themeStyles['shadow'] . ';"
10262 style="background:' . $themeStyles['header_bg'] . ';
10263 color:' . $themeStyles['text_primary'] . ';"
10269 $themeStyles['cell_today_bg'] :
10270 $themeStyles['cell_bg'];
11651 $addBtnTextColor = $themeStyles['text_bright']; // #ff1493 - hard to read!