mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-05-09 19:14:13 +00:00

This looks horrible.
A *much* *much* better way to improve readability is to
simply set the opacity down to 0.5.
This reverts commit 2c837f5766
.
15 lines
443 B
SCSS
15 lines
443 B
SCSS
// The mask that is applied when the window is unaccessible (Login
|
|
// screen, Loading, ...)
|
|
.x-mask {
|
|
background-color: black;
|
|
opacity: 0.85;
|
|
}
|
|
|
|
// Shadows of floating windows like window modals, form selectors and
|
|
// message boxes
|
|
.x-css-shadow {
|
|
// the additional styling from the pve css overwrites the setting on
|
|
// the element with "!important", that's why we need it here.
|
|
box-shadow: $background-darkest 0 0 5px !important;
|
|
}
|