From: Chris Bell Date: Thu, 15 Oct 2015 14:57:15 +0000 (+0100) Subject: #17895 Added $alert-border-width that defaults to $border-width X-Git-Tag: v4.0.0-alpha.2~145^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be1bb9ec3efb202b6f99b8e2ac12fef4587a50ec;p=thirdparty%2Fbootstrap.git #17895 Added $alert-border-width that defaults to $border-width --- diff --git a/scss/_alert.scss b/scss/_alert.scss index 8e550d8f73..b9f6c60dad 100644 --- a/scss/_alert.scss +++ b/scss/_alert.scss @@ -5,7 +5,7 @@ .alert { padding: $alert-padding; margin-bottom: $spacer-y; - border: 1px solid transparent; + border: $alert-border-width solid transparent; @include border-radius($alert-border-radius); // Improve alignment and spacing of inner content diff --git a/scss/_variables.scss b/scss/_variables.scss index dd331d9bc9..26db184604 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -525,6 +525,7 @@ $modal-sm: 300px !default; $alert-padding: 15px !default; $alert-border-radius: $border-radius !default; $alert-link-font-weight: bold !default; +$alert-border-width: $border-width !default; $alert-success-bg: $state-success-bg !default; $alert-success-text: $state-success-text !default;