Skip to content

Commit 32750e0

Browse files
committed
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 <b.powell.jr@outlook.com>
1 parent 378481e commit 32750e0

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

client/themes/default/scss/app.scss

+9
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,8 @@
428428
}
429429

430430
&.note {
431+
background-color: transparent !important;
432+
431433
td.icon {
432434
background-color: mc('blue', '300');
433435
color: mc('blue', '50');
@@ -447,6 +449,8 @@
447449
}
448450

449451
&.success {
452+
background-color: transparent !important;
453+
450454
td.icon {
451455
background-color: mc('green', '300');
452456
color: mc('green', '50');
@@ -466,6 +470,7 @@
466470
}
467471

468472
&.tip {
473+
background-color: transparent !important;
469474
td.icon {
470475
background-color: mc('green', '300');
471476
color: mc('green', '50');
@@ -506,6 +511,8 @@
506511
}
507512

508513
&.caution {
514+
background-color: transparent !important;
515+
509516
td.icon {
510517
background-color: mc('purple', '300');
511518
color: mc('purple', '50');
@@ -525,6 +532,8 @@
525532
}
526533

527534
&.important {
535+
background-color: transparent !important;
536+
528537
td.icon {
529538
background-color: mc('red', '300');
530539
color: mc('red', '50');

0 commit comments

Comments
 (0)