From 32750e0dafb6a4beaadd9fc5c066b5ef047861b3 Mon Sep 17 00:00:00 2001 From: Brian Powell Jr Date: Sun, 3 Nov 2024 11:37:26 -0500 Subject: [PATCH] Fixed issue with admonition block backgroud color appearing in rounded corners. Updated rest of admonition block styles to explicitly set the background color to transparent Signed-off-by: Brian Powell Jr --- client/themes/default/scss/app.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/client/themes/default/scss/app.scss b/client/themes/default/scss/app.scss index e03acca2..2f503ea9 100644 --- a/client/themes/default/scss/app.scss +++ b/client/themes/default/scss/app.scss @@ -428,6 +428,8 @@ } &.note { + background-color: transparent !important; + td.icon { background-color: mc('blue', '300'); color: mc('blue', '50'); @@ -447,6 +449,8 @@ } &.success { + background-color: transparent !important; + td.icon { background-color: mc('green', '300'); color: mc('green', '50'); @@ -466,6 +470,7 @@ } &.tip { + background-color: transparent !important; td.icon { background-color: mc('green', '300'); color: mc('green', '50'); @@ -506,6 +511,8 @@ } &.caution { + background-color: transparent !important; + td.icon { background-color: mc('purple', '300'); color: mc('purple', '50'); @@ -525,6 +532,8 @@ } &.important { + background-color: transparent !important; + td.icon { background-color: mc('red', '300'); color: mc('red', '50');