From f2ddb7cbdbe0e52aeb5f0b79d0ddb5d41640e3ad Mon Sep 17 00:00:00 2001 From: Greg Kempe Date: Wed, 25 Sep 2024 11:57:30 +0200 Subject: [PATCH] background colour for remarks, except na this makes editorial remarks stand out a bit more --- .../stylesheets/components/_document-content.scss | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/peachjam/static/stylesheets/components/_document-content.scss b/peachjam/static/stylesheets/components/_document-content.scss index d88556066..ae539af0a 100644 --- a/peachjam/static/stylesheets/components/_document-content.scss +++ b/peachjam/static/stylesheets/components/_document-content.scss @@ -393,3 +393,13 @@ bottom: 10px; z-index: 10; } + +// give remarks a background colour +la-akoma-ntoso .akn-remark { + background-color: var(--bs-primary-bg-subtle); +} + +// except in jurisdictions where they are already styled differently +la-akoma-ntoso[frbr-country="na"] .akn-remark { + background-color: inherit; +}