From 92dfef0681b8900d7dba5246e15de5afaca4dca2 Mon Sep 17 00:00:00 2001 From: Ian Haken Date: Sat, 20 Jun 2026 10:18:45 -0700 Subject: [PATCH] Make the turn order pass button more visible in dark mode. --- src/client/index.css | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/client/index.css b/src/client/index.css index 10fe2177..731a4769 100644 --- a/src/client/index.css +++ b/src/client/index.css @@ -145,6 +145,22 @@ body.dark-mode .ui.modal > .header { color: black; } +body.dark-mode .ui.secondary.button { + background: transparent; + color: rgba(255, 255, 255, 0.9); + box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5) inset; +} +body.dark-mode .ui.secondary.button:hover { + background: rgba(255, 255, 255, 0.1); + color: #fff; + box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.8) inset; +} +body.dark-mode .ui.secondary.button:disabled { + background: transparent; + color: rgba(255, 255, 255, 0.3); + box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2) inset; +} + /** * Disable double-tap to zoom on mobile devices * https://www.reddit.com/r/incremental_games/comments/1b3n60d/easy_disable_doubletap_zoom_on_mobile_browser/