fix: wlogout fully fixed

This commit is contained in:
2026-06-18 13:17:08 +02:00
parent 279975a806
commit 53ceb85731
+3 -2
View File
@@ -7,7 +7,7 @@ window {
font-family: monospace; font-family: monospace;
font-size: 14pt; font-size: 14pt;
color: {{colors.on_background.default.hex}}; /* text */ color: {{colors.on_background.default.hex}}; /* text */
background-color: {{colors.background.default.hex}}60; background-color: rgba({{colors.background.default.red}}, {{colors.background.default.green}}, {{colors.background.default.blue}}, 0.3);
} }
button { button {
@@ -23,10 +23,11 @@ button {
button:hover { button:hover {
background-color: {{colors.primary.default.hex}}; background-color: {{colors.primary.default.hex}};
color: {{colors.on_primary.default.hex}};
} }
button:focus { button:focus {
background-color: {{colors.primary.default.hex}}80; background-color: rgba({{colors.primary.default.red}}, {{colors.primary.default.green}}, {{colors.primary.default.blue}}, 0.8);
color: {{colors.on_primary.default.hex}}; color: {{colors.on_primary.default.hex}};
} }