From 97565e8f363f18ac31fc63c3cbc7edbe4b507b37 Mon Sep 17 00:00:00 2001 From: Adorian Doran Date: Wed, 16 Jul 2025 04:22:43 +0300 Subject: [PATCH] style(next)/collection/tables: improve the color scheme --- apps/client/src/stylesheets/theme-next/base.css | 1 + .../theme-next/notes/collections/table.css | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 apps/client/src/stylesheets/theme-next/notes/collections/table.css diff --git a/apps/client/src/stylesheets/theme-next/base.css b/apps/client/src/stylesheets/theme-next/base.css index 116a8ebdd..7a56af649 100644 --- a/apps/client/src/stylesheets/theme-next/base.css +++ b/apps/client/src/stylesheets/theme-next/base.css @@ -4,6 +4,7 @@ @import url(./pages.css); @import url(./ribbon.css); @import url(./notes/text.css); +@import url(./notes/collections/table.css); @font-face { font-family: "Inter"; diff --git a/apps/client/src/stylesheets/theme-next/notes/collections/table.css b/apps/client/src/stylesheets/theme-next/notes/collections/table.css new file mode 100644 index 000000000..fbb367f20 --- /dev/null +++ b/apps/client/src/stylesheets/theme-next/notes/collections/table.css @@ -0,0 +1,13 @@ +:root .tabulator { + --col-header-hover-background-color: var(--hover-item-background-color); + --col-header-arrow-active-color: var(--active-item-text-color); + --col-header-arrow-inactive-color: var(--main-border-color); + + --row-moving-background-color: var(--more-accented-background-color); + + --cell-editable-hover-outline-color: var(--input-focus-outline-color); + + --cell-editing-border-color: var(--input-focus-outline-color); + --cell-editing-background-color: var(--input-background-color); + --cell-editing-text-color: var(--input-text-color); +} \ No newline at end of file