From 7ee40bfb3837573562687b4a5fa288ca58571cd6 Mon Sep 17 00:00:00 2001
From: Felix Kunde <felix-kunde@gmx.de>
Date: Mon, 20 Jun 2022 14:18:59 +0200
Subject: [PATCH] fix z-index of UI tooltip

---
 ui/operator_ui/static/styles.css | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ui/operator_ui/static/styles.css b/ui/operator_ui/static/styles.css
index d4a06e11..ea1e9020 100644
--- a/ui/operator_ui/static/styles.css
+++ b/ui/operator_ui/static/styles.css
@@ -66,11 +66,12 @@ td {
 }
 
 .tooltip {
-  position: inherit;
+  position: relative;
   display: inline-block;
   opacity: 1;
   font-size: 14px;
   font-weight: bold;
+  z-index: 0;
 }
 .tooltip:after {
   content: '?';
@@ -97,7 +98,6 @@ td {
   border-radius: 6px;
   padding: 10px 10px;
   position: absolute;
-  z-index: 1;
   bottom: 150%;
   left: 50%;
   margin-left: -120px;
-- 
GitLab