New backup 2025-06-30 12:15:02

This commit is contained in:
Penelope Gwen 2025-06-30 12:15:02 -07:00
parent 9edc47758d
commit e5a999437e
3 changed files with 4 additions and 4 deletions

View file

@ -28,7 +28,7 @@
.leftgroup,
.centergroup,
.rightgroup {
background-color: $color0;
background-color: rgba($color0,0.85);
}
.leftgroup>*,
.centergroup>*,

View file

@ -10,7 +10,7 @@
(defwidget bluetooth_children [array]
(box :class "reveal_children"
:orientation "h"
:orientation "v"
:space-evenly true
:halign "start"

View file

@ -1,7 +1,7 @@
(defwidget revealer-on-hover [revealvar revealvar-name ?class ?duration ?transition]
(box
:class "${class} revealer-on-hover"
:orientation "h"
:orientation "v"
:space-evenly false
(eventbox
:onhover "${EWW_CMD} update ${revealvar-name}=true"
@ -11,6 +11,6 @@
(children :nth 0)
(revealer
:reveal revealvar
:transition {transition ?: "slideright"}
:transition {transition ?: "slidedown"}
:duration {duration ?: "500ms"}
(children :nth 1))))))