New backup 2025-07-18 11:45:02
This commit is contained in:
parent
42a62affa5
commit
785861cbaf
2 changed files with 17 additions and 6 deletions
|
@ -117,13 +117,24 @@ circular-progress {
|
||||||
min-width: $bar-module-width;
|
min-width: $bar-module-width;
|
||||||
&:hover {
|
&:hover {
|
||||||
text-shadow: $bar-module-hover-shadow;
|
text-shadow: $bar-module-hover-shadow;
|
||||||
// box-shadow: 0px 0px 3px 1px green;
|
transition: all 0.3s;
|
||||||
// transition: text-shadow 1s;
|
|
||||||
// background-color: rgba($color1,0.5);
|
// background-color: rgba($color1,0.5);
|
||||||
// border: 1px solid $bar-module-fg-color;
|
// border: 1px solid $bar-module-fg-color;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.reveal_children>button {
|
||||||
|
image {
|
||||||
|
opacity: 0.5;
|
||||||
|
transition: all 0.5s;
|
||||||
|
}
|
||||||
|
&:hover image {
|
||||||
|
opacity: 1;
|
||||||
|
box-shadow: 0px 0px 5px green;
|
||||||
|
// transition: all 0.3s;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.reveal_children>box,
|
.reveal_children>box,
|
||||||
.reveal_children>widget,
|
.reveal_children>widget,
|
||||||
.reveal_children>button {
|
.reveal_children>button {
|
||||||
|
@ -174,8 +185,8 @@ label {
|
||||||
.workspaces button:hover,
|
.workspaces button:hover,
|
||||||
.rightgroup button:hover,
|
.rightgroup button:hover,
|
||||||
.leftgroup button:hover {
|
.leftgroup button:hover {
|
||||||
text-shadow: 1px 1px 1px rgba($color2,1);
|
// text-shadow: 1px 1px 1px rgba($color2,1);
|
||||||
// text-shadow: $bar-module-hover-shadow;
|
text-shadow: $bar-module-hover-shadow;
|
||||||
color: $bar-hover-fg-color;
|
color: $bar-hover-fg-color;
|
||||||
transition: all 0.2s;
|
transition: all 0.2s;
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
:revealvar reveal_bluetooth
|
:revealvar reveal_bluetooth
|
||||||
:revealvar-name "reveal_bluetooth"
|
:revealvar-name "reveal_bluetooth"
|
||||||
(button :onclick 'blueman-manager'
|
(button :onclick 'blueman-manager'
|
||||||
:class {matches(jq(bluetooth_status,'.[].connected'),'yes') ? "active" : ""}
|
:class {matches(jq(bluetooth_status,'.[].connected'),'yes') ? "active" : "inactive"}
|
||||||
"")
|
"")
|
||||||
(bluetooth_children :array bluetooth_status)))
|
(bluetooth_children :array bluetooth_status)))
|
||||||
|
|
||||||
|
@ -16,5 +16,5 @@
|
||||||
|
|
||||||
(for device in array
|
(for device in array
|
||||||
(button :onclick {(device.connected == "yes") ? 'bluetoothctl disconnect "${device.address}"' : 'bluetoothctl connect "${device.address}"'}
|
(button :onclick {(device.connected == "yes") ? 'bluetoothctl disconnect "${device.address}"' : 'bluetoothctl connect "${device.address}"'}
|
||||||
:class {(device.connected == "yes") ? "active" : ""}
|
:class {(device.connected == "yes") ? "active" : "inactive"}
|
||||||
"${device.icon}"))))
|
"${device.icon}"))))
|
||||||
|
|
Loading…
Add table
Reference in a new issue