From bd23178bb85c8eca984ad63fda153567ee8b222e Mon Sep 17 00:00:00 2001 From: stanislavh Date: Wed, 7 Dec 2022 10:39:23 +0100 Subject: [PATCH] SONAR-17481 make bold text distinguisable from subsection headers --- server/sonar-web/src/main/js/app/styles/style.css | 10 +++++----- .../sonar-web/src/main/js/apps/coding-rules/styles.css | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/server/sonar-web/src/main/js/app/styles/style.css b/server/sonar-web/src/main/js/app/styles/style.css index 3fa0984eb17..f8cd9b40af6 100644 --- a/server/sonar-web/src/main/js/app/styles/style.css +++ b/server/sonar-web/src/main/js/app/styles/style.css @@ -114,8 +114,8 @@ } .rule-desc h2 { - font-size: 20px; - font-weight: 400; + font-size: 22px; + font-weight: 500; border-bottom: 1px solid #e6e6e6; line-height: 2rem; margin-top: 32px; @@ -128,11 +128,11 @@ .rule-desc h3 { font-size: 18px; - font-weight: 500; + font-weight: 700; } .rule-desc h4 { - font-size: 14px; - font-weight: 700; + font-size: 16px; + font-weight: 500; } .rule-desc h5, diff --git a/server/sonar-web/src/main/js/apps/coding-rules/styles.css b/server/sonar-web/src/main/js/apps/coding-rules/styles.css index ec6a00534b5..7508b7c56a3 100644 --- a/server/sonar-web/src/main/js/apps/coding-rules/styles.css +++ b/server/sonar-web/src/main/js/apps/coding-rules/styles.css @@ -33,8 +33,8 @@ position: relative; display: inline-block; margin: 16px 0; - font-size: 20px; - font-weight: 400; + font-size: 22px; + font-weight: 500; border-bottom: 1px solid #e6e6e6; width: 100%; } -- 2.39.5