New backup 2025-07-24 15:30:02

This commit is contained in:
Penelope Gwen 2025-07-24 15:30:02 -07:00
parent a7c2bdf162
commit 311b067bbd
4 changed files with 28 additions and 19 deletions

View file

@ -145,7 +145,7 @@ circular-progress {
.reveal_children>button { .reveal_children>button {
border-left: 1px solid $bar-module-fg-color; border-left: 1px solid $bar-module-fg-color;
}*/ }*/
/.rightgroup>label, /*.rightgroup>label,
.rightgroup>button { .rightgroup>button {
//.rightgroup .reveal_children>button, //.rightgroup .reveal_children>button,
//.rightgroup>.revealer-on-hover>widget>box>box>button { //.rightgroup>.revealer-on-hover>widget>box>box>button {
@ -161,26 +161,26 @@ circular-progress {
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
}*/ }*/
.music { //.music {
color: $bar-module-fg-color; // color: $bar-module-fg-color;
background-color: $bar-module-bg-color; // background-color: $bar-module-bg-color;
border-radius: $bar-module-border-radius; // border-radius: $bar-module-border-radius;
} //}
.rightgroup>label, //.rightgroup>label,
.active_window{ /*.active_window{
color: $bar-module-fg-color; color: $bar-module-fg-color;
padding: 3px 4px; padding: 3px 4px;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
} }*/
label { /*label {
margin-top: 2px; margin-top: 2px;
} }*/
//.workspaces, //.workspaces,
.profile { /*.profile {
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
} }*/
//.workspaces button, //.workspaces button,
.leftgroup button { /*.leftgroup button {
// background-color: $bar-module-bg-color; // background-color: $bar-module-bg-color;
// border-left: 1px solid $bar-module-fg-color; // border-left: 1px solid $bar-module-fg-color;
// color:blue; // color:blue;
@ -188,7 +188,7 @@ label {
padding: 3px 4px; padding: 3px 4px;
min-width: $bar-module-width; min-width: $bar-module-width;
transition: color 0.3s, text-shadow 0.3s; transition: color 0.3s, text-shadow 0.3s;
} }*/
//.workspaces button:hover, //.workspaces button:hover,
.rightgroup button:hover, .rightgroup button:hover,
.leftgroup button:hover { .leftgroup button:hover {

View file

@ -4,7 +4,7 @@
:revealvar reveal_network :revealvar reveal_network
:revealvar-name "reveal_network" :revealvar-name "reveal_network"
(button :onclick 'nm-connection-editor' (button :onclick 'nm-connection-editor'
:class "revealer-preview ${network_status.wifi || network_status.wired ? 'active' : 'inactive'}" :class {network_status.wifi || network_status.wired ? 'active' : 'inactive'}
"󰇧") "󰇧")
(network_children))) (network_children)))

View file

@ -4,7 +4,7 @@
:revealvar reveal_vpn :revealvar reveal_vpn
:revealvar-name "reveal_vpn" :revealvar-name "reveal_vpn"
(button :onclick 'notify-send "test"' (button :onclick 'notify-send "test"'
:class "revealer-preview ${network_status.proton || network_status.homevpn ? 'active' : 'inactive'}" :class {network_status.proton || network_status.homevpn ? 'active' : 'inactive'}
{network_status.proton || network_status.homevpn ? "" : ""}) {network_status.proton || network_status.homevpn ? "" : ""})
(vpn_children))) (vpn_children)))

View file

@ -9,11 +9,14 @@
background-color: $bar-bg-color; background-color: $bar-bg-color;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
&>box:not(.workspaces), &>box:not(.workspaces),
// &>box,
&>button, &>button,
&>label { &>label {
color: $bar-module-fg-color;
background-color: $bar-bg-color; background-color: $bar-bg-color;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
margin: 0px 5px; margin: 0px 5px;
padding: 0px 5px;
min-width: $bar-module-width; min-width: $bar-module-width;
border: 2px solid $bar-module-fg-color; border: 2px solid $bar-module-fg-color;
background-color: $bar-module-bg-color; background-color: $bar-module-bg-color;
@ -21,13 +24,15 @@
} }
.workspaces { .workspaces {
color: $bar-module-fg-color;
border-radius: $bar-module-border-radius; border-radius: $bar-module-border-radius;
margin: 0px 5px; // margin: 0px 5px;
min-width: $bar-module-width; min-width: $bar-module-width;
border: 2px solid $bar-module-fg-color; border: 2px solid $bar-module-fg-color;
background-color: $bar-module-bg-color; background-color: $bar-module-bg-color;
button { button {
padding: 3px 4px;
&.left { &.left {
border-right: 2px solid $bar-module-fg-color; border-right: 2px solid $bar-module-fg-color;
} }
@ -45,7 +50,7 @@
.workspace-number { .workspace-number {
margin: 0px; margin: 0px;
margin-left: 6px; margin-left: 6px;
margin-top: -17px; margin-top: -15px;
padding: 0px; padding: 0px;
font-size: 0.6em; font-size: 0.6em;
} }
@ -81,6 +86,9 @@
text-shadow: $bar-module-hover-shadow; text-shadow: $bar-module-hover-shadow;
} }
} }
.reveal_children>* {
border-left: 1px solid $bar-module-fg-color;
}
.tray>widget>image, .tray>widget>image,
.scratchpad>button>image { .scratchpad>button>image {
padding: 3px 4px; padding: 3px 4px;
@ -97,4 +105,5 @@
opacity: 1; opacity: 1;
} }
} }
} }