Commit 102db0aa authored by Annabel Gray's avatar Annabel Gray

Merge branch 'fix-alert-colors' into 'master'

Fix alert colors

Closes #47983

See merge request gitlab-org/gitlab-ce!19905
parents 557dd8d9 4c34e0f3
...@@ -259,15 +259,36 @@ pre code { ...@@ -259,15 +259,36 @@ pre code {
white-space: pre-wrap; white-space: pre-wrap;
} }
.alert,
.flash-notice {
border-radius: 0;
}
.alert-success {
background-color: $green-500;
border-color: $green-500;
}
.alert-info {
background-color: $blue-500;
border-color: $blue-500;
}
.alert-warning {
background-color: $orange-500;
border-color: $orange-500;
}
.alert-danger { .alert-danger {
background-color: $red-500; background-color: $red-500;
border-color: $red-500; border-color: $red-500;
} }
.alert-success,
.alert-info,
.alert-warning, .alert-warning,
.alert-danger, .alert-danger,
.flash-notice { .flash-notice {
border-radius: 0;
color: $white-light; color: $white-light;
h4, h4,
......
...@@ -443,8 +443,6 @@ ...@@ -443,8 +443,6 @@
.col-md-6 .col-md-6
.alert.alert-success .alert.alert-success
= lorem = lorem
.alert.alert-primary
= lorem
.alert.alert-info .alert.alert-info
= lorem = lorem
.col-md-6 .col-md-6
......
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