From 2bb5ac2eaa5c4081a46a51c5eded72dace2ecf2c Mon Sep 17 00:00:00 2001 From: Wirlaburla Date: Sun, 5 May 2024 15:26:06 -0500 Subject: [PATCH] correct nav button color. fix navgaps. --- core/style.css | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/core/style.css b/core/style.css index ad6f689..2db6753 100644 --- a/core/style.css +++ b/core/style.css @@ -570,7 +570,11 @@ nav.top .navbutton-bar .button.selected { height: 100%; } - body > div.navgap { + body > div.navgap:not(.acc) { + height: 0px; + } + + body > div.navgap.acc { height: 34px; } @@ -603,7 +607,7 @@ nav.top .navbutton-bar .button.selected { nav .popbutton.selected:not(:hover) { background-image: var(--background-image); - background-color: var(--default-button-background); + background-color: var(--main-background); border-right: none; width: 56px; font-size: 0px; @@ -625,8 +629,12 @@ nav.top .navbutton-bar .button.selected { white-space: nowrap; } - body > div.navgap { - height: 100px; + body > div.navgap:not(.acc) { + height: 66px; + } + + body > div.navgap.acc { + height: 34px; } nav.top {