From 585b5202d85cb076e0c37412d0ca3cfb3d00f93f Mon Sep 17 00:00:00 2001 From: Maksim Sukharev Date: Tue, 19 Mar 2024 12:20:11 +0100 Subject: [PATCH] fix(NcListItem): decrease font-weight, restore contrast color for subname Signed-off-by: Maksim Sukharev --- src/components/NcListItem/NcListItem.vue | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/components/NcListItem/NcListItem.vue b/src/components/NcListItem/NcListItem.vue index 8a872f740a..ac21ada11e 100644 --- a/src/components/NcListItem/NcListItem.vue +++ b/src/components/NcListItem/NcListItem.vue @@ -778,14 +778,15 @@ export default { min-width: 100px; max-width: 300px; flex: 1 1 10%; - font-weight: bold; + font-weight: 500; } .list-item-content__subname { flex: 1 0; min-width: 0; + color: var(--color-text-maxcontrast); &--bold { - font-weight: bold; + font-weight: 500; } }