From f5038a08e5a060b3b4d1e346f37025c98528fa43 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Wed, 22 Oct 2025 22:05:16 +0300 Subject: [PATCH] style/board/board items: make the note custom color be applied again as the text color --- apps/client/src/stylesheets/theme-dark.css | 3 ++- apps/client/src/stylesheets/theme-light.css | 3 ++- apps/client/src/stylesheets/theme-next-dark.css | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/apps/client/src/stylesheets/theme-dark.css b/apps/client/src/stylesheets/theme-dark.css index 3b434d529..fb2abb45d 100644 --- a/apps/client/src/stylesheets/theme-dark.css +++ b/apps/client/src/stylesheets/theme-dark.css @@ -87,7 +87,8 @@ body ::-webkit-calendar-picker-indicator { } :root .reference-link, -.ck-content a.reference-link > span { +.ck-content a.reference-link > span, +.board-note { color: var(--dark-theme-custom-color, inherit); } diff --git a/apps/client/src/stylesheets/theme-light.css b/apps/client/src/stylesheets/theme-light.css index 2bdb06a1c..c0b7c271f 100644 --- a/apps/client/src/stylesheets/theme-light.css +++ b/apps/client/src/stylesheets/theme-light.css @@ -87,6 +87,7 @@ html { } :root .reference-link, -.ck-content a.reference-link > span { +.ck-content a.reference-link > span, +.board-note { color: var(--light-theme-custom-color, inherit); } \ No newline at end of file diff --git a/apps/client/src/stylesheets/theme-next-dark.css b/apps/client/src/stylesheets/theme-next-dark.css index 8df2e2e0a..71cb17924 100644 --- a/apps/client/src/stylesheets/theme-next-dark.css +++ b/apps/client/src/stylesheets/theme-next-dark.css @@ -278,7 +278,8 @@ } :root .reference-link, -.ck-content a.reference-link > span { +.ck-content a.reference-link > span, +.board-note { color: var(--dark-theme-custom-color, inherit); }