32 lines
514 B
CSS
32 lines
514 B
CSS
|
|
#workspaces {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 5px;
|
|
border: none;
|
|
border-radius: 0px;
|
|
box-shadow: inset 0 -3px transparent;
|
|
transition: color 0.5s ease;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #5e81ac;
|
|
box-shadow: inset 0 -3px #5e81ac;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background: rgba(0, 0, 0, 0.2);
|
|
box-shadow: inset 0 -3px #5e81ac;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
background-color: #81a1c1;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: #bf616a;
|
|
}
|
|
|