dark-mode: improve contrast ratios on the mask message

this removes the transparent background of the masks message box. this
should help improve the contrast between the background and text.
also sets an appropriate border color to make it stand out more.

Signed-off-by: Stefan Sterz <s.sterz@proxmox.com>
This commit is contained in:
Stefan Sterz 2023-03-23 16:26:55 +01:00 committed by Thomas Lamprecht
parent 347dd20db8
commit 0bf2b7fb0b
2 changed files with 2 additions and 3 deletions

View File

@ -1,8 +1,7 @@
// The mask that is applied when the window is unaccessible (Login
// screen, Loading, ...)
.x-mask {
background-color: $background-darker;
opacity: 0.5;
background-color: rgba($background-darker, 0.5);
}
// Shadows of floating windows like window modals, form selectors and

View File

@ -10,5 +10,5 @@
.x-mask-msg {
background-color: $form-field-body-color;
border: solid 1px mix(black, $form-field-body-color, 25%);
border: solid 1px $border-color-alt;
}