mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
(core) updates from grist-core
This commit is contained in:
commit
c9a81ea7ea
@ -499,7 +499,7 @@ export const theme = {
|
||||
menuShadow: new CustomProp('theme-menu-shadow', undefined, 'rgba(38, 38, 51, 0.6)'),
|
||||
|
||||
/* Menu Items */
|
||||
menuItemFg: new CustomProp('theme-menu-item-fg', undefined, 'unset'),
|
||||
menuItemFg: new CustomProp('theme-menu-item-fg', undefined, 'black'),
|
||||
menuItemSelectedFg: new CustomProp('theme-menu-item-selected-fg', undefined, colors.light),
|
||||
menuItemSelectedBg: new CustomProp('theme-menu-item-selected-bg', undefined, vars.primaryBg),
|
||||
menuItemDisabledFg: new CustomProp('theme-menu-item-disabled-fg', undefined, '#D9D9D9'),
|
||||
@ -559,11 +559,11 @@ export const theme = {
|
||||
widgetPickerPrimaryBg: new CustomProp('theme-widget-picker-primary-bg', undefined, 'white'),
|
||||
widgetPickerSecondaryBg: new CustomProp('theme-widget-picker-secondary-bg', undefined,
|
||||
colors.lightGrey),
|
||||
widgetPickerItemFg: new CustomProp('theme-widget-picker-item-fg', undefined, colors.lightGrey),
|
||||
widgetPickerItemFg: new CustomProp('theme-widget-picker-item-fg', undefined, 'unset'),
|
||||
widgetPickerItemSelectedBg: new CustomProp('theme-widget-picker-item-selected-bg', undefined,
|
||||
colors.lightGrey),
|
||||
colors.mediumGrey),
|
||||
widgetPickerItemDisabledBg: new CustomProp('theme-widget-picker-item-disabled-bg', undefined,
|
||||
colors.lightGrey),
|
||||
colors.mediumGrey),
|
||||
widgetPickerIcon: new CustomProp('theme-widget-picker-icon', undefined, colors.slate),
|
||||
widgetPickerPrimaryIcon: new CustomProp('theme-widget-picker-primary-icon', undefined,
|
||||
colors.lightGreen),
|
||||
|
@ -226,7 +226,7 @@ const cssRemoveButton = styled(cssIcon, `
|
||||
cursor: pointer;
|
||||
--icon-color: ${theme.controlSecondaryFg};
|
||||
&:hover {
|
||||
--icon-color: ${theme.controlPrimaryFg};
|
||||
--icon-color: ${theme.controlFg};
|
||||
}
|
||||
`);
|
||||
|
||||
|
@ -329,7 +329,7 @@ export const GristLight: ThemeColors = {
|
||||
/* Page Widget Picker */
|
||||
'widget-picker-primary-bg': 'white',
|
||||
'widget-picker-secondary-bg': '#F7F7F7',
|
||||
'widget-picker-item-fg': 'black',
|
||||
'widget-picker-item-fg': 'unset',
|
||||
'widget-picker-item-selected-bg': 'rgba(217,217,217,0.6)',
|
||||
'widget-picker-item-disabled-bg': 'rgba(217,217,217,0.6)',
|
||||
'widget-picker-icon': '#929299',
|
||||
|
Loading…
Reference in New Issue
Block a user