From d79e20e8ab44b88a42c5847435fa9c72a76e0c33 Mon Sep 17 00:00:00 2001 From: samdbeckham Date: Fri, 8 Jun 2018 11:47:30 +0100 Subject: Adds the white color back to the alret banners --- app/assets/stylesheets/bootstrap_migration.scss | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss index 8183664c352..5a79b51f34b 100644 --- a/app/assets/stylesheets/bootstrap_migration.scss +++ b/app/assets/stylesheets/bootstrap_migration.scss @@ -160,6 +160,11 @@ table { } } +.alert-warning, +.alert-warning .alert-link { + color: $white-light; +} + // Polyfill deprecated selectors .hidden { @@ -271,4 +276,4 @@ pre code { input[type=color].form-control { height: $input-height; -} +} \ No newline at end of file -- cgit v1.2.1 From 25992924a7aa7d09e99d316c1cc5902908b355c6 Mon Sep 17 00:00:00 2001 From: samdbeckham Date: Mon, 11 Jun 2018 11:52:36 +0100 Subject: Sets the colors and link colors in alerts/notices --- app/assets/stylesheets/bootstrap_migration.scss | 16 +++++++++------- 1 file 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 +} -- cgit v1.2.1 From 8d6b4a9d9e2888e64cac41e5c016ac3835415076 Mon Sep 17 00:00:00 2001 From: samdbeckham Date: Mon, 11 Jun 2018 12:00:03 +0100 Subject: Removes the border-radius from the alerts --- app/assets/stylesheets/bootstrap_migration.scss | 1 + 1 file changed, 1 insertion(+) diff --git a/app/assets/stylesheets/bootstrap_migration.scss b/app/assets/stylesheets/bootstrap_migration.scss index 2c785b3ad76..27f3150d2ad 100644 --- a/app/assets/stylesheets/bootstrap_migration.scss +++ b/app/assets/stylesheets/bootstrap_migration.scss @@ -267,6 +267,7 @@ pre code { .alert-warning, .alert-danger, .flash-notice { + border-radius: 0; color: $white-light; h4, -- cgit v1.2.1