From 8c18e0f1680ea385df525624901693507cf88b6b Mon Sep 17 00:00:00 2001 From: Penelope Gwen Date: Thu, 4 Sep 2025 10:15:02 -0700 Subject: [PATCH] New backup 2025-09-04 10:15:02 --- .../eww/style/bar/styles/revealer.scss | 29 ++++++++++++------- 1 file changed, 18 insertions(+), 11 deletions(-) diff --git a/de/home/.config/eww/style/bar/styles/revealer.scss b/de/home/.config/eww/style/bar/styles/revealer.scss index 0134c65..16c06a8 100644 --- a/de/home/.config/eww/style/bar/styles/revealer.scss +++ b/de/home/.config/eww/style/bar/styles/revealer.scss @@ -1,4 +1,5 @@ &.revealer-on-hover { +// border: 2px solid $bar-bg-color; border: 2px solid $module-color; border-radius: $bar-module-border-radius;// } @@ -7,22 +8,28 @@ padding: 0px 7px; min-width: $bar-module-width; transition: all 0.3s; + background: linear-gradient($bar-bg-color 65%, $module-color); } .revealer-preview { - box-shadow: inset 0px -8px 2px -8px $module-color; - background-color: $bar-bg-color; - border-radius: $bar-module-border-radius - 4; +// box-shadow: inset 0px -7px 9px -4px rgba($module-color,0.4); +// background-color: $bar-bg-color; + border-radius: $bar-module-border-radius - 2; } &.true .revealer-preview { - border-radius: $bar-module-border-radius - 4 0 0 $bar-module-border-radius - 4; + border-radius: $bar-module-border-radius - 2 0 0 $bar-module-border-radius - 2; } -.reveal-children>* { - border-left: 2px solid $module-color; - &.active { - background-color: rgba($module-color,0.5); - } - &:hover { - background-color: rgba($module-color,0.5); +.reveal-children { + >* { + border-left: 2px solid $module-color; + &.active { + background-color: rgba($module-color,0.5); + } + &:hover { + background-color: rgba($module-color,0.5); + } + &:last-child { + border-radius: 0 $bar-module-border-radius - 2 $bar-module-border-radius - 2 0; + } } }