From 26ada628a2363dffd0317e9dc08aa0d80d004ceb Mon Sep 17 00:00:00 2001 From: kolaente Date: Sun, 21 Apr 2024 23:57:07 +0200 Subject: [PATCH] fix(editor): use colors from color scheme to render table cells Resolves https://github.com/go-vikunja/vikunja/issues/253 --- frontend/src/components/input/editor/TipTap.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/input/editor/TipTap.vue b/frontend/src/components/input/editor/TipTap.vue index bb6e25ae7..80c4664fe 100644 --- a/frontend/src/components/input/editor/TipTap.vue +++ b/frontend/src/components/input/editor/TipTap.vue @@ -818,7 +818,7 @@ watch( td, th { min-width: 1em; - border: 2px solid #ced4da; + border: 2px solid var(--grey-300) !important; padding: 3px 5px; vertical-align: top; box-sizing: border-box; @@ -832,7 +832,7 @@ watch( th { font-weight: bold; text-align: left; - background-color: #f1f3f5; + background-color: var(--grey-200); } .selectedCell:after {