mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Improve highlighting of previewed formula
Summary: Also improves highlighting of columns when the "Click to insert" tooltip is shown, and improves highlighting of transforming columns. Test Plan: Manual. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D3962
This commit is contained in:
@@ -132,6 +132,8 @@ export const ThemeColors = t.iface([], {
|
||||
"card-list-form-border": "string",
|
||||
"card-list-blocks-border": "string",
|
||||
"selection": "string",
|
||||
"selection-darker": "string",
|
||||
"selection-darkest": "string",
|
||||
"selection-opaque-fg": "string",
|
||||
"selection-opaque-bg": "string",
|
||||
"selection-opaque-dark-bg": "string",
|
||||
|
||||
@@ -168,6 +168,8 @@ export interface ThemeColors {
|
||||
|
||||
/* Selection */
|
||||
'selection': string;
|
||||
'selection-darker': string;
|
||||
'selection-darkest': string;
|
||||
'selection-opaque-fg': string;
|
||||
'selection-opaque-bg': string;
|
||||
'selection-opaque-dark-bg': string;
|
||||
|
||||
@@ -147,6 +147,8 @@ export const GristDark: ThemeColors = {
|
||||
|
||||
/* Selection */
|
||||
'selection': 'rgba(22,179,120,0.15)',
|
||||
'selection-darker': 'rgba(22,179,120,0.25)',
|
||||
'selection-darkest': 'rgba(22,179,120,0.35)',
|
||||
'selection-opaque-fg': 'white',
|
||||
'selection-opaque-bg': '#2F4748',
|
||||
'selection-opaque-dark-bg': '#253E3E',
|
||||
|
||||
@@ -147,6 +147,8 @@ export const GristLight: ThemeColors = {
|
||||
|
||||
/* Selection */
|
||||
'selection': 'rgba(22,179,120,0.15)',
|
||||
'selection-darker': 'rgba(22,179,120,0.25)',
|
||||
'selection-darkest': 'rgba(22,179,120,0.35)',
|
||||
'selection-opaque-fg': 'black',
|
||||
'selection-opaque-bg': '#DCF4EB',
|
||||
'selection-opaque-dark-bg': '#D6EEE5',
|
||||
|
||||
Reference in New Issue
Block a user