urgent tags

This commit is contained in:
2025-05-05 09:31:17 +02:00
parent 0966c1ce70
commit 736e1a47c9
3 changed files with 78 additions and 4 deletions

View File

@@ -73,12 +73,21 @@ button {
font-size: 0px;
}
#workspaces>button:hover {
#workspaces button.hover {
background-color: var(--ws-hover);
}
#workspaces>button.urgent {
#workspaces button.urgent {
background-color: var(--ws-urgent);
color: var(--foreground);
font-weight: bold;
animation: urgent-blink 1s infinite;
}
@keyframes urgent-blink {
0% { opacity: 1.0; }
50% { opacity: 0.5; }
100% { opacity: 1.0; }
}
#workspaces>button.empty {