aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2016-01-09 15:26:02 -0800
committerChris Rebert <[email protected]>2016-01-16 20:23:37 -0800
commit6293dd41cff6f3e2e06c5cfb9e3ceb631c737990 (patch)
tree713d75c706b7cee3370243fd76c9b4eea1a67f10
parent7be17b4a35db019ad815da61d38b1125263648e6 (diff)
downloadbootstrap-6293dd41cff6f3e2e06c5cfb9e3ceb631c737990.tar.xz
bootstrap-6293dd41cff6f3e2e06c5cfb9e3ceb631c737990.zip
Extract $kbd-box-shadow variable
-rw-r--r--scss/_code.scss2
-rw-r--r--scss/_variables.scss1
2 files changed, 2 insertions, 1 deletions
diff --git a/scss/_code.scss b/scss/_code.scss
index 60bbcae81..a9ddb4c0f 100644
--- a/scss/_code.scss
+++ b/scss/_code.scss
@@ -22,7 +22,7 @@ kbd {
color: $kbd-color;
background-color: $kbd-bg;
@include border-radius($border-radius-sm);
- @include box-shadow(inset 0 -.1rem 0 rgba(0,0,0,.25));
+ @include box-shadow($kbd-box-shadow);
kbd {
padding: 0;
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 4deb70019..55104049d 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -191,6 +191,7 @@ $hr-border-width: $border-width !default;
$dt-font-weight: bold !default;
+$kbd-box-shadow: inset 0 -.1rem 0 rgba(0,0,0,.25) !default;
$nested-kbd-font-weight: bold !default;
$list-inline-padding: 5px !default;