From 2d3e6b6cfa2c99c61b54df1a8d82f7095f53eb21 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 19 Oct 2024 10:56:13 -0700 Subject: [PATCH] ui: Don't bold titles in card lists - Making most of text that is read in a page bold is useless. Emphasis should instead be used for some text that should stand out of the rest of the text. - The need to make the text bold goes away if the text color is not such a lighter shade of gray. Reset this to the regular text color. Tests: - Observe changes in home, apps, system, and help index pages. Signed-off-by: Sunil Mohan Adapa Reviewed-by: James Valleroy --- static/themes/default/css/main.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/static/themes/default/css/main.css b/static/themes/default/css/main.css index a867119b4..a59e01a22 100644 --- a/static/themes/default/css/main.css +++ b/static/themes/default/css/main.css @@ -576,11 +576,10 @@ a.menu_link_active { .card .nav-link { display: block; padding: 0.25rem; - color: #646464; + color: #212529; /* Same as Bootstrap default color */ } .card-title { - font-weight: 800; font-size: 1.25rem; padding: 0.75rem 0; margin-bottom: 0; @@ -616,7 +615,6 @@ a.menu_link_active { .system-page .card-title { font-size: 1.125rem; font-style: normal; - font-weight: bold; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;