chore(editor): Fix invalid css tokens (no-changelog) (#20775)

This commit is contained in:
Svetoslav Dekov 2025-10-14 23:17:48 +03:00 committed by GitHub
parent 54dcfde855
commit ea9db0b209
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 7 additions and 7 deletions

View File

@ -334,7 +334,7 @@ onUnmounted(() => {
background: var(--color--background--light-3);
border: var(--border);
border-radius: var(--radius);
box-shadow: var(--shadow-command-bar);
box-shadow: var(--command-bar--shadow);
width: 100%;
max-width: 700px;

View File

@ -73,11 +73,11 @@ const handleMouseLeave = () => {
transition: background-color 0.1s ease;
&:hover {
background-color: var(--color-command-bar-item-hover-background);
background-color: var(--command-bar-item--color--background--hover);
}
&.selected {
background-color: var(--color-command-bar-item-hover-background);
background-color: var(--command-bar-item--color--background--hover);
}
}

View File

@ -530,8 +530,8 @@
/* Ag Grid */
--grid--row--color--background--selected: var(--p--color--secondary-720);
--color-command-bar-item-hover-background: var(--color--background--light-1);
--shadow-command-bar: 0 15px 45px 0 hsla(0, 0%, 0%, 0.25), 0 5px 10px 0 hsla(0, 0%, 0%, 0.15);
--command-bar-item--color--background--hover: var(--color--background--light-1);
--command-bar--shadow: 0 15px 45px 0 hsla(0, 0%, 0%, 0.25), 0 5px 10px 0 hsla(0, 0%, 0%, 0.15);
}
body[data-theme='dark'] {

View File

@ -743,8 +743,8 @@
--grid--row--color--background--selected: var(--p--color--secondary-070);
--grid--cell--border-color--editing: 2px solid var(--color--secondary);
--color-command-bar-item-hover-background: var(--color--background);
--shadow-command-bar: 0 15px 45px 0 hsla(0, 0%, 0%, 0.13), 0 5px 10px 0 hsla(0, 0%, 0%, 0.08);
--command-bar-item--color--background--hover: var(--color--background);
--command-bar--shadow: 0 15px 45px 0 hsla(0, 0%, 0%, 0.13), 0 5px 10px 0 hsla(0, 0%, 0%, 0.08);
}
:root {