From c4981ba8fed8a8a4f8b5933053eef113fbaed509 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Thu, 21 Dec 2023 10:48:19 +0200 Subject: [PATCH] [develop]: Add indicator-overlay in indicators.less --- less/indicators.less | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/less/indicators.less b/less/indicators.less index ca17b5d..6662032 100644 --- a/less/indicators.less +++ b/less/indicators.less @@ -49,3 +49,20 @@ } } } + +.indicator-overlay { + position: absolute; + top: 0; + left: 0; + background: @global-overlay-background; + width: 100%; + height: 100%; + + .inner { + background: @global-background; + border-radius: @global-border-radius; + width: 75%; + max-height: 75%; + overflow: auto; + } +}