From: Chris Rebert Date: Tue, 16 Feb 2016 07:55:19 +0000 (-0800) Subject: Add $mark-padding variable X-Git-Tag: v4.0.0-alpha.3~238 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7441beba67bb2e387e647de5d7f69566565594a8;p=thirdparty%2Fbootstrap.git Add $mark-padding variable [skip sauce] [skip validator] --- diff --git a/scss/_type.scss b/scss/_type.scss index 1075757795..ba476d8892 100644 --- a/scss/_type.scss +++ b/scss/_type.scss @@ -66,7 +66,7 @@ small, mark, .mark { - padding: .2em; + padding: $mark-padding; background-color: $state-warning-bg; } diff --git a/scss/_variables.scss b/scss/_variables.scss index e28b46711d..4a11547e1d 100644 --- a/scss/_variables.scss +++ b/scss/_variables.scss @@ -205,6 +205,8 @@ $blockquote-border-width: .25rem !default; $hr-border-color: rgba(0,0,0,.1) !default; $hr-border-width: $border-width !default; +$mark-padding: .2em !default; + $dt-font-weight: bold !default; $kbd-box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25) !default;