summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsamdbeckham <sbeckham@gitlab.com>2018-06-11 11:52:36 +0100
committersamdbeckham <sbeckham@gitlab.com>2018-06-11 11:52:36 +0100
commit25992924a7aa7d09e99d316c1cc5902908b355c6 (patch)
treed32c10e9b2ca227c7d42a8012ffd3a8ce084637a
parentd79e20e8ab44b88a42c5847435fa9c72a76e0c33 (diff)
downloadgitlab-ce-25992924a7aa7d09e99d316c1cc5902908b355c6.tar.gz
Sets the colors and link colors in alerts/notices
-rw-r--r--app/assets/stylesheets/bootstrap_migration.scss16
1 files changed, 9 insertions, 7 deletions
diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss
index 5a79b51f34b..2c785b3ad76 100644
--- a/app/assets/stylesheets/bootstrap_migration.scss
+++ b/app/assets/stylesheets/bootstrap_migration.scss
@@ -160,11 +160,6 @@ table {
}
}
-.alert-warning,
-.alert-warning .alert-link {
- color: $white-light;
-}
-
// Polyfill deprecated selectors
.hidden {
@@ -267,13 +262,20 @@ pre code {
.alert-danger {
background-color: $red-500;
border-color: $red-500;
+}
+
+.alert-warning,
+.alert-danger,
+.flash-notice {
color: $white-light;
- h4 {
+ h4,
+ a,
+ .alert-link {
color: $white-light;
}
}
input[type=color].form-control {
height: $input-height;
-} \ No newline at end of file
+}