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, .leftgroup,
.centergroup, .centergroup,
.rightgroup { .rightgroup {
background-color: $color0; background-color: rgba($color0,0.85);
} }
.leftgroup>*, .leftgroup>*,
.centergroup>*, .centergroup>*,

View file

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

View file

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