From dfb98b7565f61b490e8a65f37fd0b462e6fdf3ec Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Wed, 19 Jun 2024 09:09:18 +0200 Subject: [PATCH] Consolidate css --- scripts/overview.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scripts/overview.php b/scripts/overview.php index cb10067..f684062 100644 --- a/scripts/overview.php +++ b/scripts/overview.php @@ -427,17 +427,6 @@ function generateMiniGraph(elem, comname) { } var chartWindow = document.createElement('div'); chartWindow.className = "chartdiv" - chartWindow.style.position = 'fixed'; - chartWindow.style.top = '0%'; - chartWindow.style.left = '50%'; - chartWindow.style.width = window.innerWidth < 700 ? '40%' : '20%'; - chartWindow.style.height = window.innerWidth < 700 ? '25%' : '16%'; - chartWindow.style.backgroundColor = '#fff'; - chartWindow.style.zIndex = '9999'; - chartWindow.style.overflow = 'auto'; - chartWindow.style.borderRadius = '5px'; - chartWindow.style.boxShadow = '0 4px 8px rgba(0, 0, 0, 0.2)'; - document.body.appendChild(chartWindow);