mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-31 16:57:08 +02:00
chore(editor): Fix invalid css tokens (no-changelog) (#20775)
This commit is contained in:
parent
54dcfde855
commit
ea9db0b209
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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'] {
|
||||
|
|
|
|||
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user