dotfiles/waybar/styles/modules/workspaces.css
2024-03-22 16:05:37 -05:00

42 lines
634 B
CSS

#workspaces {
padding: 0;
border: 2px solid @color4;
}
#workspaces button {
padding: 0 4px;
box-shadow: none;
border: none;
border-radius: 0;
color: @color8;
}
#workspaces button:first-child {
padding-left: 8px;
border-radius: 9999px 0 0 9999px;
}
#workspaces button:last-child {
padding-right: 8px;
border-radius: 0 9999px 9999px 0;
}
#workspaces button.active {
background-color: @color4;
color: @color8;
}
#workspaces button:hover {
background: @color4;
color: @color8;
}
#workspaces button.focused {
background-color: @color5;
}
#workspaces button.urgent {
background-color: #bf616a;
}