wip: dnsc-machine setup

This commit is contained in:
Dennis Schoepf 2025-11-23 20:26:53 +01:00
parent 40b839c136
commit 3e33a99ec9

View file

@ -21,7 +21,6 @@
"title" "title"
"dnd" "dnd"
"buttons-grid" "buttons-grid"
"volume"
"notifications" "notifications"
"mpris" "mpris"
]; ];
@ -29,7 +28,7 @@
title = { title = {
text = "Control Panel"; text = "Control Panel";
clear-all-button = true; clear-all-button = true;
button-text = " 󰆴 "; button-text = "[clear]";
}; };
buttons-grid = { buttons-grid = {
buttons-per-row = 3; buttons-per-row = 3;
@ -107,7 +106,6 @@
@define-color silver_bright #ffffff; @define-color silver_bright #ffffff;
* { * {
font-family: "VictorMono Nerd Font", monospace;
border-radius: 0; border-radius: 0;
} }
@ -150,29 +148,28 @@
background: @bg; background: @bg;
opacity: 0.9; opacity: 0.9;
border: none; border: none;
padding: 12px;
margin: 3px -2px 3px 0; margin: 3px -2px 3px 0;
} }
.close-button { .close-button {
background: @red-base; background: @magenta_subtle_bg_darker;
color: @cc-bg; color: @magenta_brighter;
text-shadow: none; text-shadow: none;
padding: 0; padding: 3px;
margin-top: 5px; margin-top: 5px;
margin-right: 5px; margin-right: 5px;
transition: opacity 0.2s ease-in-out; border-radius: 50%;
border-radius: 0;
border: none; border: none;
} }
.close-button:hover { .close-button:hover {
background: @red-hover; background: @magenta;
box-shadow: none; box-shadow: none;
transition: all 0.15s ease-in-out;
} }
.notification-action { .notification-action {
border: 2px solid @border-green; border: 2px solid @cyan_subtle_bg;
border-top: none; border-top: none;
} }