From 66707e7129d4c9696f07b5059adcccec7bd5c16c Mon Sep 17 00:00:00 2001 From: Arkerthan <arkerthan@gmail.com> Date: Thu, 15 Jul 2021 11:19:29 +0200 Subject: [PATCH] fix CSS rules --- css/general/formatting.css | 5 +++-- css/general/textColors.css | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/css/general/formatting.css b/css/general/formatting.css index b69199c7704..57384d6b541 100644 --- a/css/general/formatting.css +++ b/css/general/formatting.css @@ -40,8 +40,9 @@ font-weight: bold; } -/* strong is deprecated, use bold instead */ -.major-link, .bold, .strong { +/* strong & bold are deprecated, use custom classes instead */ +/* :not(.defiant) : quick fix to make defiant styles look correct */ +.major-link, .bold:not(.defiant), .strong { font-weight: bold; } diff --git a/css/general/textColors.css b/css/general/textColors.css index bb6a8c0d639..5615ce5c6f0 100644 --- a/css/general/textColors.css +++ b/css/general/textColors.css @@ -133,7 +133,7 @@ color: orange } -.orangered, .orangered a, .defiant.inc, .defiant.inc a, .defiant.bold, .defiant.bold, .education.neg a, .unintelligent { +.orangered, .orangered a, .defiant.inc, .defiant.inc a, .defiant.bold, .defiant.bold a, .education.neg a, .unintelligent { color: orangered } -- GitLab