dark-theme: let the background "shine through" mask more

this makes the background mask a bit brighter and more see-through to
make it possible to read values from behind the mask, if needed. it
also adds a more visible shadow to windows so that the stand out more
at the same time.

Signed-off-by: Stefan Sterz <s.sterz@proxmox.com>
This commit is contained in:
Stefan Sterz 2023-03-20 10:02:09 +01:00 committed by Thomas Lamprecht
parent 9c2ccd1aa4
commit 2c837f5766

View File

@ -1,8 +1,8 @@
// The mask that is applied when the window is unaccessible (Login
// screen, Loading, ...)
.x-mask {
background-color: black;
opacity: 0.85;
background-color: $background-darker;
opacity: 0.75;
}
// Shadows of floating windows like window modals, form selectors and
@ -10,5 +10,5 @@
.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;
box-shadow: $background-dark 0 -1px 15px 7px !important;
}