From 648feb82f8546c0e2a21804b49de18f70ccde456 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Thu, 12 Sep 2024 20:06:40 +0300 Subject: [PATCH] client: Fix close button on dark theme --- 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 8c01fb5a5..718b67b5d 100644 --- a/src/public/stylesheets/theme-dark.css +++ b/src/public/stylesheets/theme-dark.css @@ -88,3 +88,7 @@ body .CodeMirror { body .todo-list input[type="checkbox"]:not(:checked):before { border-color: var(--muted-text-color) !important; } + +.btn-close { + filter: invert(1); +}