From a958267cdd4af33999a3767569896c74719cff3e Mon Sep 17 00:00:00 2001 From: Leon Hagendijk Date: Mon, 19 Jun 2017 15:43:24 +0200 Subject: [PATCH] Update Callout Styling See Issue #798 in main project: Callouts of classes success, warning and alert were having light text on light background --- scss/components/_callout.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scss/components/_callout.scss b/scss/components/_callout.scss index 17ae6dde..cfd5632c 100644 --- a/scss/components/_callout.scss +++ b/scss/components/_callout.scss @@ -68,18 +68,18 @@ th.callout-inner { &.success { background: scale-color($success-color, $lightness: $callout-background-fade); border: $callout-border-success; - color: $white; + color: $black; } &.warning { background: scale-color($warning-color, $lightness: $callout-background-fade); border: $callout-border-warning; - color: $white; + color: $black; } &.alert { background: scale-color($alert-color, $lightness: $callout-background-fade); border: $callout-border-alert; - color: $white; + color: $black; } } -- 2.47.2