1786108189

This commit is contained in:
2026-08-07 15:09:49 +02:00
parent e21789f78b
commit eb686ff1a4

View File

@@ -376,7 +376,7 @@ export component AppWindow inherits Window {
width: 44px;
height: 44px;
border-width: 2px;
border-color: black;
border-color: Settings.dark-mode ? #777777 : black;
background: close-touch.pressed ? Settings.dark-mode ? #777777 : black : Settings.dark-mode ? black : white;
close-touch := TouchArea {
@@ -385,7 +385,7 @@ export component AppWindow inherits Window {
Text {
text: Settings.dark-mode ? "D" : "L";
color: close-touch.pressed ? white : black;
color: close-touch.pressed ? Settings.dark-mode ? black : white : Settings.dark-mode ? #777777 : black;
font-size: 29px;
horizontal-alignment: center;
vertical-alignment: center;