fix(watermarks): bring watermarks to the top

Signed-off-by: Joshua Irmer <irmer@gonicus.de>
This commit is contained in:
Joshua Irmer
2025-03-06 09:14:51 +00:00
committed by GitHub
parent 6e6a3b2f72
commit e6bf6a09f4
2 changed files with 4 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ form {
height: $watermarkHeight;
background-size: contain;
background-repeat: no-repeat;
z-index: $zindex2;
z-index: $watermarkZ;
}
.leftwatermark {
@@ -142,7 +142,7 @@ form {
font-size: 11pt;
color: rgba(255,255,255,.50);
text-decoration: none;
z-index: 100;
z-index: $watermarkZ;
}
/**

View File

@@ -38,6 +38,8 @@ $zindex1: 1;
$zindex2: 2;
$zindex3: 3;
$toolbarZ: 250;
$watermarkZ: 253;
// Place filmstrip videos over toolbar in order
// to make connection info visible.
$filmstripVideosZ: $toolbarZ + 1;