Merge pull request #6069 from pooja-bruno/feat/add-edit-variable-in-place

feat: edit variable in place
This commit is contained in:
Pooja
2025-11-17 16:13:09 +05:30
committed by GitHub
parent 27a7b623c7
commit 4631eda281
16 changed files with 1605 additions and 118 deletions

View File

@@ -289,9 +289,16 @@ const darkTheme = {
valid: 'rgb(11 178 126)',
invalid: '#f06f57',
info: {
color: '#ce9178',
bg: 'rgb(48,48,49)',
boxShadow: 'rgb(0 0 0 / 36%) 0px 2px 8px'
color: '#FFFFFF',
bg: '#343434',
boxShadow: 'rgb(0 0 0 / 36%) 0px 2px 8px',
editorBg: '#292929',
iconColor: '#989898',
editorBorder: '#3D3D3D',
editorFocusBorder: '#CCCCCC',
editableDisplayHoverBg: 'rgba(255,255,255,0.03)',
border: '#4F4F4F',
editorBorder: '#3D3D3D'
}
},
searchLineHighlightCurrent: 'rgba(120,120,120,0.18)',

View File

@@ -290,9 +290,16 @@ const lightTheme = {
valid: '#047857',
invalid: 'rgb(185, 28, 28)',
info: {
color: 'rgb(52, 52, 52)',
bg: 'white',
boxShadow: '0 1px 3px rgba(0, 0, 0, 0.45)'
color: '#343434',
bg: '#FFFFFF',
boxShadow: '0 1px 3px rgba(0, 0, 0, 0.45)',
editorBg: '#F7F7F7',
iconColor: '#989898',
editorBorder: '#EFEFEF',
editorFocusBorder: '#989898',
editableDisplayHoverBg: 'rgba(0,0,0,0.02)',
border: '#EFEFEF',
editorBorder: '#EFEFEF'
}
},
searchLineHighlightCurrent: 'rgba(120,120,120,0.10)',