From: Jack Zhuchenko Date: Mon, 6 Jan 2020 19:18:38 +0000 (+0200) Subject: Define `$callout-border-primary` variable (fix #786) X-Git-Tag: v2.3.0~7^2~4^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dbccb1d7fbe49b0d7361814cac8857f4f01c7e62;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Define `$callout-border-primary` variable (fix #786) --- diff --git a/scss/components/_callout.scss b/scss/components/_callout.scss index 648e3d68..fc33961d 100644 --- a/scss/components/_callout.scss +++ b/scss/components/_callout.scss @@ -26,7 +26,11 @@ $callout-margin-bottom: $global-margin !default; /// @type Border $callout-border: 1px solid darken($callout-background, 20%) !default; -/// Border around a callout with the `.success` class. +/// Border around a callout with the `.primary` class. +/// @type Border +$callout-border-primary: 1px solid darken($primary-color, 20%) !default; + +/// Border around a callout with the `.secondary` class. /// @type Border $callout-border-secondary: 1px solid darken($secondary-color, 20%) !default;