Files
bar/resources/bar.css

148 lines
2.5 KiB
CSS

* {
all: unset;
}
window {
background-color: rgba(30, 30, 30, 0.8);
color: #ffffff;
font-family: "IBMPlexSans-Regular", sans-serif;
font-size: 14px;
padding: 2px 7px;
}
#clock-label {
font-weight: bold;
font-family: monospace;
}
.workspace-pill {
padding: 2px 5px;
margin-right: 6px;
border-radius: 5px;
}
.workspace-pill:hover {
background-color: rgba(255, 255, 255, 0.1);
}
.workspace-pill-focused {
background-color: #ffffff;
color: #1e1e1e;
font-weight: bold;
box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}
.workspace-pill-focused:hover {
box-shadow: none;
}
.workspace-pill-active {
background-color: rgba(255, 255, 255, 0.2);
}
.workspace-pill-urgent {
background-color: #ff5555;
color: #fff;
animation: workspace-blink 1s linear infinite;
}
/* blinking animation for urgent workspaces */
@keyframes workspace-blink {
0% {
opacity: 1;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
.workspace-pill:last-child {
margin-right: 0;
}
button {
padding: 2px 5px;
margin: 0 2px;
border-radius: 3px;
background-color: transparent;
color: #ffffff;
border: none;
font-size: 20px;
}
button:hover {
background-color: #111111;
}
#spacer {
color: rgba(255, 255, 255, 0.3);
padding: 0 5px;
}
popover {
background-color: rgb(30, 30, 30);
color: #ffffff;
font-family: "IBMPlexSans-Regular", sans-serif;
padding: 5px;
border-radius: 8px;
border: 1px solid #444444;
margin-top: 5px;
}
tooltip {
background-color: rgba(50, 50, 50, 0.9);
color: #ffffff;
font-family: "IBMPlexSans-Regular", sans-serif;
padding: 5px 10px;
}
.icon-label {
font-family: "Material Icons, Font Awesome 7 Brands, Hack Nerd Font Mono";
font-size: 19px;
}
.todo-popover-container {
background-color: #1e1e1e;
}
.todo-input-area {
margin-bottom: 10px;
}
.todo-input {
padding: 5px;
border-radius: 4px;
border: 1px solid #555555;
background-color: #222222;
color: #ffffff;
}
.toggle-button {
border-radius: 4px;
}
/* use background to highlight using same dark colors as in file */
.toggle-button-on {
background-color: rgba(0, 150, 136, 0.2);
border: 1px solid #009688;
}
.toggle-button-off {
background-color: rgba(244, 67, 54, 0.2);
border: 1px solid #f44336;
}
.toggle-button-disabled {
background-color: rgba(100, 100, 100, 0.2);
border: 1px solid #666666;
color: #888888;
}
.disabled-popover-icon {
color: #888888;
}