Skip to content

Commit

Permalink
Fixed issue with admonition block backgroud color appearing in rounde…
Browse files Browse the repository at this point in the history
…d corners. Updated rest of admonition block styles to explicitly set the background color to transparent

Signed-off-by: Brian Powell Jr <b.powell.jr@outlook.com>
  • Loading branch information
BPowell76 committed Nov 3, 2024
1 parent 378481e commit 32750e0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions client/themes/default/scss/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,8 @@
}

&.note {
background-color: transparent !important;

td.icon {
background-color: mc('blue', '300');
color: mc('blue', '50');
Expand All @@ -447,6 +449,8 @@
}

&.success {
background-color: transparent !important;

td.icon {
background-color: mc('green', '300');
color: mc('green', '50');
Expand All @@ -466,6 +470,7 @@
}

&.tip {
background-color: transparent !important;
td.icon {
background-color: mc('green', '300');
color: mc('green', '50');
Expand Down Expand Up @@ -506,6 +511,8 @@
}

&.caution {
background-color: transparent !important;

td.icon {
background-color: mc('purple', '300');
color: mc('purple', '50');
Expand All @@ -525,6 +532,8 @@
}

&.important {
background-color: transparent !important;

td.icon {
background-color: mc('red', '300');
color: mc('red', '50');
Expand Down

0 comments on commit 32750e0

Please sign in to comment.