From e6bf6a09f40adff65fd5382e9df32bd3d4f30062 Mon Sep 17 00:00:00 2001 From: Joshua Irmer <62890337+joshuai96@users.noreply.github.com> Date: Thu, 6 Mar 2025 09:14:51 +0000 Subject: [PATCH] fix(watermarks): bring watermarks to the top Signed-off-by: Joshua Irmer --- css/_base.scss | 4 ++-- css/_variables.scss | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/css/_base.scss b/css/_base.scss index 61d7c524ac..e194c689a8 100644 --- a/css/_base.scss +++ b/css/_base.scss @@ -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; } /** diff --git a/css/_variables.scss b/css/_variables.scss index 703d517f82..364654cb61 100644 --- a/css/_variables.scss +++ b/css/_variables.scss @@ -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;