Browse Source

Add a few styles needed for timeline

main
Ramin Tadayon 2 years ago
parent
commit
5b5211800f
No known key found for this signature in database GPG Key ID: 5B90E918AEBCE7A7
2 changed files with 6 additions and 0 deletions
  1. +2
    -0
      src/webviews/apps/plus/graph/GraphWrapper.tsx
  2. +4
    -0
      src/webviews/apps/shared/theme.ts

+ 2
- 0
src/webviews/apps/plus/graph/GraphWrapper.tsx View File

@ -48,6 +48,8 @@ const getStyleProps = (
cssVariables: { cssVariables: {
'--app__bg0': computedStyle.getPropertyValue('--color-background'), '--app__bg0': computedStyle.getPropertyValue('--color-background'),
'--panel__bg0': computedStyle.getPropertyValue('--graph-panel-bg'), '--panel__bg0': computedStyle.getPropertyValue('--graph-panel-bg'),
'--panel__bg1': computedStyle.getPropertyValue('--graph-panel-bg2'),
'--section-border': computedStyle.getPropertyValue('--graph-panel-bg2'),
'--text-selected': computedStyle.getPropertyValue('--color-foreground'), '--text-selected': computedStyle.getPropertyValue('--color-foreground'),
'--text-normal': computedStyle.getPropertyValue('--color-foreground--85'), '--text-normal': computedStyle.getPropertyValue('--color-foreground--85'),
'--text-secondary': computedStyle.getPropertyValue('--color-foreground--65'), '--text-secondary': computedStyle.getPropertyValue('--color-foreground--65'),

+ 4
- 0
src/webviews/apps/shared/theme.ts View File

@ -103,6 +103,10 @@ export function initializeAndWatchThemeColors(callback?: () => void) {
'--graph-panel-bg', '--graph-panel-bg',
isLightTheme ? darken(backgroundColor, 5) : lighten(backgroundColor, 5), isLightTheme ? darken(backgroundColor, 5) : lighten(backgroundColor, 5),
); );
bodyStyle.setProperty(
'--graph-panel-bg2',
isLightTheme ? darken(backgroundColor, 10) : lighten(backgroundColor, 10),
);
bodyStyle.setProperty('--graph-theme-opacity-factor', isLightTheme ? '0.5' : '1'); bodyStyle.setProperty('--graph-theme-opacity-factor', isLightTheme ? '0.5' : '1');
// alert colors // alert colors

Loading…
Cancel
Save