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

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

View file

@ -13,22 +13,12 @@
background-color: rgba($color1,0.5);
}
}
.music {
margin: 10px;
}
/*.tray_children {
margin: 0px 10px;
}
.leftgroup {
margin-left: 5px;
}
.rightgroup {
margin-right: 10px;
}*/
.leftgroup,
.centergroup,
.rightgroup {
background-color: rgba($color0,0.85);
border-radius: 8px;
}
.leftgroup>*,
.centergroup>*,

View file

@ -10,7 +10,7 @@
(defwidget bluetooth_children [array]
(box :class "reveal_children"
:orientation "v"
:orientation "h"
: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 "v"
:orientation "h"
:space-evenly false
(eventbox
:onhover "${EWW_CMD} update ${revealvar-name}=true"
@ -11,6 +11,6 @@
(children :nth 0)
(revealer
:reveal revealvar
:transition {transition ?: "slidedown"}
:transition {transition ?: "slideright"}
:duration {duration ?: "500ms"}
(children :nth 1))))))