summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClement Ho <clemmakesapps@gmail.com>2018-06-06 20:05:42 +0000
committerClement Ho <clemmakesapps@gmail.com>2018-06-06 20:05:42 +0000
commit75265adee62bc578f255f6a20a11a807cfd4b440 (patch)
treee34649956028bf761e94d60dae0ca525e2eec76f
parent70499df224320e9809c0ea67235551da871c8442 (diff)
parentf104f9eddfb26627d76bcee5328f49659afa1dad (diff)
downloadgitlab-ce-75265adee62bc578f255f6a20a11a807cfd4b440.tar.gz
Merge branch 'jivl-fix-alert-message-colors' into 'master'
Fix alert-danger class colors for text and background Closes #46715 See merge request gitlab-org/gitlab-ce!19489
-rw-r--r--app/assets/stylesheets/bootstrap_migration.scss10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss
index 3785aaa43f0..79f580546c3 100644
--- a/app/assets/stylesheets/bootstrap_migration.scss
+++ b/app/assets/stylesheets/bootstrap_migration.scss
@@ -251,3 +251,13 @@ table {
pre code {
white-space: pre-wrap;
}
+
+.alert-danger {
+ background-color: $red-500;
+ border-color: $red-500;
+ color: $white-light;
+
+ h4 {
+ color: $white-light;
+ }
+}