dotfiles/waybar/styles/modules/workspaces.css
2024-03-20 12:36:49 -05:00

38 lines
671 B
CSS

#workspaces {
padding-right: 5px;
}
#workspaces button {
padding: 0 5px;
background-color: transparent;
color: #ddd;
}
#workspaces button.active {
color: #5e81ac;
}
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
}
#workspaces button.focused {
background-color: #64727d;
box-shadow: inset 0 -3px #ffffff;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 8px;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}