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

Fixed border styles for callout

Closes #66000

See merge request gitlab-org/gitlab-ce!31782
This commit is contained in:
Clement Ho 2019-08-14 18:15:28 +00:00
commit 7f9c653ef4
1 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,9 @@
.bs-callout {
margin: $gl-padding 0;
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;
background: $gray-light;
@ -48,6 +50,10 @@
background-color: $blue-100;
border-color: $blue-200;
color: $blue-700;
h4 {
color: $blue-700;
}
}
.bs-callout-success {