From d5622dfbf7754ccfaddb34a51f2c5fb576340883 Mon Sep 17 00:00:00 2001 From: Richard Steinmetz Date: Tue, 5 Mar 2024 22:29:10 +0100 Subject: [PATCH] fix: invisible unchecked to-do items --- src/public/stylesheets/theme-dark.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/public/stylesheets/theme-dark.css b/src/public/stylesheets/theme-dark.css index 7d948d169..3391eaa44 100644 --- a/src/public/stylesheets/theme-dark.css +++ b/src/public/stylesheets/theme-dark.css @@ -88,3 +88,7 @@ body .CodeMirror { .excalidraw.theme--dark { --theme-filter: invert(80%) hue-rotate(180deg) !important; } + +body .todo-list input[type="checkbox"]:not(:checked):before { + border-color: var(--muted-text-color) !important; +}