From 622f2289db415251073c18356c4566e0fd3c094b Mon Sep 17 00:00:00 2001 From: 0neGal Date: Sat, 3 Feb 2024 19:28:09 +0100 Subject: fixed "Force quit game" button getting disabled Due to this button (specifically the "button"/link below the "Launch" button) serving multiple functions, it incorrectly gets disabled when the game is running. Now its enabled! How did I miss this? I assume it crept up after implementing the force quit button, and not during, but maybe not, was I stupid? Mayhaps. --- src/app/css/theming.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/css/theming.css b/src/app/css/theming.css index d5a3d4d..aff3782 100644 --- a/src/app/css/theming.css +++ b/src/app/css/theming.css @@ -37,7 +37,7 @@ a { transition: filter 0.2s ease-in !important; } -a.disabled { +a.disabled:not("[onclick='kill_game()']") { opacity: 0.5; pointer-events: none; } -- cgit v1.2.3