From 8c716b45491a7d23bf37473141b485a203b2bb4d Mon Sep 17 00:00:00 2001 From: David Hodack Date: Mon, 2 Feb 2026 17:03:14 -0800 Subject: [PATCH] Simple UI fixes for issues #56 and #57 Fixes 2 small layering issues --- public/js9/js9support.css | 7 +++++++ src/App.css | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/public/js9/js9support.css b/public/js9/js9support.css index 06cbb27..797ca2d 100644 --- a/public/js9/js9support.css +++ b/public/js9/js9support.css @@ -58,6 +58,13 @@ src: url("font/context-menu-icons.eot?2lkho#iefix") format("embedded-opentype"), url("font/context-menu-icons.woff2?2lkho") format("woff2"), url("font/context-menu-icons.woff?2lkho") format("woff"), url("font/context-menu-icons.ttf?2lkho") format("truetype"); } +/* 3dPlot tooltip z-index fix */ +/* Only targets the tooltip if it is a direct child of body, is 200px wide, and white +(there was no class for the element) */ +body > div[style*="position: absolute"][style*="width: 200px"][style*="color: rgb(255, 255, 255)"] { + z-index: 1000 !important; +} + .context-menu-icon-add:before { content: "\EA01"; } diff --git a/src/App.css b/src/App.css index 2547a9f..659358b 100644 --- a/src/App.css +++ b/src/App.css @@ -125,7 +125,6 @@ fieldset { .tempCelsiusIcon::before { font-size: 14px; font-weight: bold; - z-index: 999; position: absolute; top: 2px; left: 46px;