Revert to 10px corner radius

Update waybar style to be a bit more space efficient
This commit is contained in:
Evie Litherland-Smith 2023-10-22 12:58:15 +01:00
parent 1e2d653ae4
commit eb98200654
4 changed files with 21 additions and 19 deletions

View file

@ -52,7 +52,7 @@
} }
#match.activatable { #match.activatable {
border-radius: 5px; border-radius: 10px;
padding: .3rem .9rem; padding: .3rem .9rem;
margin-top: .01rem; margin-top: .01rem;
} }
@ -60,7 +60,7 @@
#match.activatable:last-child { margin-bottom: .6rem; } #match.activatable:last-child { margin-bottom: .6rem; }
#plugin:hover #match.activatable { #plugin:hover #match.activatable {
border-radius: 5px; border-radius: 10px;
padding: .3rem; padding: .3rem;
margin-top: .01rem; margin-top: .01rem;
margin-bottom: 0; margin-bottom: 0;
@ -73,13 +73,13 @@
#entry { #entry {
background: alpha(${base01}, .05); background: alpha(${base01}, .05);
border: 1px solid ${base03}; border: 1px solid ${base03};
border-radius: 5px; border-radius: 10px;
margin: .3rem; margin: .3rem;
padding: .3rem 1rem; padding: .3rem 1rem;
} }
list > #plugin { list > #plugin {
border-radius: 5px; border-radius: 10px;
margin: 0 .3rem; margin: 0 .3rem;
} }
list > #plugin:first-child { margin-top: .3rem; } list > #plugin:first-child { margin-top: .3rem; }
@ -89,7 +89,7 @@
box#main { box#main {
background: alpha(${base00}, .5); background: alpha(${base00}, .5);
box-shadow: inset 0 0 0 1px alpha(${base05}, .1), 0 0 0 1px alpha(${base00}, .5); box-shadow: inset 0 0 0 1px alpha(${base05}, .1), 0 0 0 1px alpha(${base00}, .5);
border-radius: 5px; border-radius: 10px;
padding: .3rem; padding: .3rem;
} }
''; '';

View file

@ -61,7 +61,7 @@ in ''
} }
decoration { decoration {
rounding = 5 rounding = 10
drop_shadow = yes drop_shadow = yes
shadow_ignore_window = true shadow_ignore_window = true
shadow_range = 4 shadow_range = 4

View file

@ -12,6 +12,6 @@
margin = "20"; margin = "20";
padding = "10"; padding = "10";
sort = "-time"; sort = "-time";
borderRadius = 5; borderRadius = 10;
}; };
} }

View file

@ -11,7 +11,7 @@ window > box {
margin: 5px 5px 0px; margin: 5px 5px 0px;
padding: 0px; padding: 0px;
border: 1px solid @base03; border: 1px solid @base03;
border-radius: 5px; border-radius: 10px;
} }
tooltip { tooltip {
@ -19,7 +19,7 @@ tooltip {
background: alpha(@base00, 0.5); background: alpha(@base00, 0.5);
box-shadow: inset 0 0 0 1px alpha(@base0A, 0.1), 0 0 0 1px alpha(@base00, 0.5); box-shadow: inset 0 0 0 1px alpha(@base0A, 0.1), 0 0 0 1px alpha(@base00, 0.5);
border: 1px solid @base0A; border: 1px solid @base0A;
border-radius: 5px; border-radius: 10px;
padding: 5px; padding: 5px;
margin: 0px; margin: 0px;
} }
@ -39,20 +39,22 @@ tooltip {
#tray { #tray {
color: @base05; color: @base05;
margin: 0px; margin: 0px;
padding: 1px 5px;
}
#workspaces button {
border: 1px solid transparent;
border-radius: 10px;
color: @base03;
margin: 0px;
padding: 0px 5px; padding: 0px 5px;
} }
#workspaces button, #workspaces button.active {
#tray > .passive {
color: @base03;
}
#workspaces button.active,
#tray > .active {
color: @base05; color: @base05;
} }
#workspaces button.urgent, #workspaces button.urgent {
#tray > .needs-attention { border: 1px solid @base07;
color: @base07; color: @base05;
} }