summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <408677-ClemMakesApps@users.noreply.gitlab.com>2019-08-14 18:15:28 +0000
committerClement Ho <408677-ClemMakesApps@users.noreply.gitlab.com>2019-08-14 18:15:28 +0000
commit7f9c653ef4c90a039ede690da1bc9d0524ffcc95 (patch)
tree5803e40a9d19cac8bf4d7c85cd475d682440123f
parent2b2efbc609a85093238ee3bec94358670021d0e5 (diff)
parent506642ac843842590752eec74b51713dba7f4435 (diff)
downloadgitlab-ce-7f9c653ef4c90a039ede690da1bc9d0524ffcc95.tar.gz
Merge branch 'callout-border-fix' into 'master'
Fixed border styles for callout Closes #66000 See merge request gitlab-org/gitlab-ce!31782
-rw-r--r--app/assets/stylesheets/framework/callout.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/callout.scss b/app/assets/stylesheets/framework/callout.scss
index 643b20c56bc..c5bb2a1256a 100644
--- a/app/assets/stylesheets/framework/callout.scss
+++ b/app/assets/stylesheets/framework/callout.scss
@@ -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 {