Browse Source

Added styling for SUCCESS AsciiDoc admonition box.

pull/7390/head
Brian Powell Jr 8 months ago
parent
commit
b201f3ac36
1 changed files with 18 additions and 0 deletions
  1. 18
      client/themes/default/scss/app.scss

18
client/themes/default/scss/app.scss

@ -445,6 +445,24 @@
}
}
}
&.success {
td.icon {
background-color: mc('green', '300');
color: mc('green', '50');
&::before {
content: "\F0E1E";
}
}
td.content {
color: darken(mc('green', '900'), 10%);
background-color: mc('green', '50');
@at-root .theme--dark & {
background-color: mc('green', '900');
color: mc('green', '50');
}
}
}
&.tip {
td.icon {
background-color: mc('green', '300');

Loading…
Cancel
Save