From 81ef51fd0185ce7eb7888ceef1325a0386beeca8 Mon Sep 17 00:00:00 2001 From: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 19 Feb 2022 23:48:49 -0800 Subject: [PATCH] bs5: fix correspondent / tag / doctype management list display --- .../correspondent-list/correspondent-list.component.html | 2 +- .../document-type-list/document-type-list.component.html | 2 +- .../app/components/manage/tag-list/tag-list.component.html | 2 +- src-ui/src/theme_dark.scss | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.html b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.html index 05da9673f..c1ed6649d 100644 --- a/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.html +++ b/src-ui/src/app/components/manage/correspondent-list/correspondent-list.component.html @@ -13,7 +13,7 @@ - +
diff --git a/src-ui/src/app/components/manage/document-type-list/document-type-list.component.html b/src-ui/src/app/components/manage/document-type-list/document-type-list.component.html index 56488c4e0..cef938e43 100644 --- a/src-ui/src/app/components/manage/document-type-list/document-type-list.component.html +++ b/src-ui/src/app/components/manage/document-type-list/document-type-list.component.html @@ -13,7 +13,7 @@ -
Name
+
diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.html b/src-ui/src/app/components/manage/tag-list/tag-list.component.html index 75e35c22b..e6870dffd 100644 --- a/src-ui/src/app/components/manage/tag-list/tag-list.component.html +++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.html @@ -13,7 +13,7 @@ -
Name
+
diff --git a/src-ui/src/theme_dark.scss b/src-ui/src/theme_dark.scss index 392c56898..2a6edd242 100644 --- a/src-ui/src/theme_dark.scss +++ b/src-ui/src/theme_dark.scss @@ -220,6 +220,10 @@ $border-color-dark-mode: #47494f; background-color: $bg-light-dark-mode; } + .table-striped > tbody > tr:nth-of-type(odd) > * { + color: $text-color-dark-mode-accent; + } + .close { color: $text-color-dark-mode; text-shadow: 0 1px 0 #666;
Name