nix/home/ags/bar/style.css

40 lines
562 B
CSS
Raw Normal View History

2024-08-03 00:17:39 +02:00
window.bar {
2024-08-16 20:03:20 +02:00
background-color: @theme_bg_color;
color: @theme_fg_color;
2024-08-03 00:17:39 +02:00
}
button {
2024-08-16 20:03:20 +02:00
min-width: 0;
padding-top: 0;
padding-bottom: 0;
background-color: transparent;
2024-08-03 00:17:39 +02:00
}
button:active {
2024-08-16 20:03:20 +02:00
background-color: @theme_selected_bg_color;
2024-08-03 00:17:39 +02:00
}
button:hover {
2024-08-16 20:03:20 +02:00
border-bottom: 3px solid @theme_fg_color;
2024-08-03 00:17:39 +02:00
}
label {
2024-08-16 20:03:20 +02:00
font-weight: bold;
2024-08-03 00:17:39 +02:00
}
.workspaces button.focused {
2024-08-16 20:03:20 +02:00
border-bottom: 3px solid @theme_selected_bg_color;
2024-08-03 00:17:39 +02:00
}
.client-title {
2024-08-16 20:03:20 +02:00
color: @theme_selected_bg_color;
2024-08-03 00:17:39 +02:00
}
.notification {
2024-08-16 20:03:20 +02:00
color: yellow;
2024-08-03 00:17:39 +02:00
}
levelbar block,
highlight {
2024-08-16 20:03:20 +02:00
min-height: 10px;
}