mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-25 04:51:55 -05:00
waybar: improve widget borders
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
Some checks failed
nix-build / default-build (push) Has been cancelled
nix-build / fallarbor-build (push) Has been cancelled
nix-build / lavaridge-build (push) Has been cancelled
nix-build / mauville-build (push) Has been cancelled
nix-build / petalburg-build (push) Has been cancelled
nix-build / rustboro-build (push) Has been cancelled
nix-check / fmt-check (push) Has been cancelled
nix-check / eval-check (push) Has been cancelled
This commit is contained in:
parent
f26644fb0f
commit
b8fd0bd348
|
@ -271,16 +271,15 @@ in {
|
||||||
}
|
}
|
||||||
|
|
||||||
window#waybar {
|
window#waybar {
|
||||||
background: rgba (0, 0, 0, 0.0);
|
|
||||||
color: ${cfg.theme.colors.text};
|
|
||||||
background-color: alpha(${cfg.theme.colors.background}, 0.8);
|
background-color: alpha(${cfg.theme.colors.background}, 0.8);
|
||||||
|
color: ${cfg.theme.colors.text};
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button {
|
#workspaces button {
|
||||||
|
border-radius: ${toString cfg.theme.borderRadius};
|
||||||
color: ${cfg.theme.colors.text};
|
color: ${cfg.theme.colors.text};
|
||||||
margin: 0px 0px;
|
margin: 0px 0px;
|
||||||
padding: 0px 5px;
|
padding: 0px 5px;
|
||||||
border-radius: ${toString cfg.theme.borderRadius};
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#workspaces button.active,
|
#workspaces button.active,
|
||||||
|
@ -315,7 +314,7 @@ in {
|
||||||
|
|
||||||
#battery.critical:not(.charging),
|
#battery.critical:not(.charging),
|
||||||
#custom-dnd.on {
|
#custom-dnd.on {
|
||||||
color: #e78284;
|
color: ${cfg.theme.colors.secondary};
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock,
|
#clock,
|
||||||
|
@ -331,13 +330,11 @@ in {
|
||||||
padding: 0px 5px 0px 5px;
|
padding: 0px 5px 0px 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
#clock {
|
|
||||||
}
|
|
||||||
|
|
||||||
#submap,
|
#submap,
|
||||||
#mode {
|
#mode {
|
||||||
background: rgba(255, 123, 99, 1.0);
|
background-color: ${cfg.theme.colors.secondary};
|
||||||
color: ${cfg.theme.colors.text};
|
border-radius: ${toString cfg.theme.borderRadius};
|
||||||
|
color: ${cfg.theme.colors.background};
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue