This commit is contained in:
Jan Faracik 2025-02-10 16:06:04 +00:00
parent b2da3f8d39
commit d7270b1fa4
2 changed files with 6 additions and 2 deletions

View File

@ -202,7 +202,11 @@ $semantics: (
var(--jenkins-border--subtle-shadow);
::backdrop {
--command-palette-backdrop-background: rgb(0 0 0 / 0.2);
--command-palette-backdrop-background: color-mix(
in sRGB,
var(--text-color) 30%,
transparent
);
}
// Tooltips

View File

@ -14,7 +14,7 @@
&::backdrop {
background: var(--command-palette-backdrop-background);
backdrop-filter: brightness(0.9) saturate(1.25) blur(2px);
backdrop-filter: saturate(1.25) blur(2px);
animation: jenkins-dialog-backdrop-animate-in 0.1s linear;
}