From a2c9bfab5b9ac33fbb31fc814e978c1b745d52c9 Mon Sep 17 00:00:00 2001 From: Riccardo Mottola Date: Tue, 24 Sep 2024 00:53:47 +0200 Subject: [PATCH] remove debug colors, add separate body styles for each pane --- Tools/default-styles.css | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) diff --git a/Tools/default-styles.css b/Tools/default-styles.css index 5ce4389b8..bd844c3a7 100644 --- a/Tools/default-styles.css +++ b/Tools/default-styles.css @@ -1,5 +1,5 @@ .content-bar { - background-color: green; + background-color: ; float: left; position: fixed; top: 0px; @@ -15,7 +15,14 @@ height: 30%; width: 100%; overflow: auto; - background-color: yellow; +} + +.content-bar-top-body { + position: absolute; + top: 0px; + left: 0px; + padding-left: 10px; + padding-top: 10px; } .content-bar-bottom { @@ -25,11 +32,18 @@ height:70%; width: 100%; overflow: auto; - background-color: red; } +.content-bar-bottom-body { + position: absolute; + top: 0px; + left: 0px; + padding-left: 10px; + padding-top: 10px; +} + + .content-pane { - background-color: pink; position: fixed; top: 0px; right: 0px; @@ -38,8 +52,7 @@ overflow-y: auto; } -.content-body { - background-color: grey; +.content-pane-body { position: absolute; top: 0px; left: 0px;