Commit 7f9c653e authored by Clement Ho's avatar Clement Ho

Merge branch 'callout-border-fix' into 'master'

Fixed border styles for callout

Closes #66000

See merge request gitlab-org/gitlab-ce!31782
parents 2b2efbc6 506642ac
...@@ -9,7 +9,9 @@ ...@@ -9,7 +9,9 @@
.bs-callout { .bs-callout {
margin: $gl-padding 0; margin: $gl-padding 0;
padding: $gl-padding; padding: $gl-padding;
border-left: 3px solid $border-color; border-color: $border-color;
border-style: solid;
border-width: 0 0 0 3px;
color: $text-color; color: $text-color;
background: $gray-light; background: $gray-light;
...@@ -48,6 +50,10 @@ ...@@ -48,6 +50,10 @@
background-color: $blue-100; background-color: $blue-100;
border-color: $blue-200; border-color: $blue-200;
color: $blue-700; color: $blue-700;
h4 {
color: $blue-700;
}
} }
.bs-callout-success { .bs-callout-success {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment