swaync: stylize the actual notifications

This commit is contained in:
Colin 2024-03-13 11:29:05 +00:00
parent eaf45e2366
commit d194abb4bf

View File

@ -17,7 +17,6 @@
* {
/* disable box shadows on e.g. buttons, sliders, as they tend to just look like graphical glitches */
box-shadow: 0 0;
border-width: 0px;
background: none;
}
@ -35,6 +34,7 @@ button {
border-color: alpha(@bg1, 0.9);
color: @fg0;
background-color: @bg0;
box-shadow: none;
}
button:checked {
color: @fg1;
@ -42,6 +42,13 @@ button:checked {
border-color: alpha(@bg1, 0.1);
}
.widget-mpris-player {
box-shadow: 0 0 6px alpha(@bg0, 0.8);
}
.widget-mpris-album-art {
box-shadow: none;
}
.widget-mpris > .horizontal > button {
background: none;
border: none;
@ -94,3 +101,9 @@ switch:checked {
switch slider {
background: @accent-l1;
}
.notification {
background: alpha(@bg0, 0.8);
border-width: 2px;
border-color: alpha(@bg1, 0.8);
}