85e94489 by bootflat

modify $button-shadow

1 parent fd54c01f
...@@ -20,7 +20,7 @@ $button-font-color-dark: $darkgray-dark !default; ...@@ -20,7 +20,7 @@ $button-font-color-dark: $darkgray-dark !default;
20 $button-font-color-light: $white !default; 20 $button-font-color-light: $white !default;
21 21
22 $button-opacity: 45 !default; 22 $button-opacity: 45 !default;
23 $button-shaodw: inset 0 1px 2px rgba(0, 0, 0, .125) !default; 23 $button-shadow: inset 0 1px 2px rgba(0, 0, 0, .125) !default;
24 24
25 // Exports 25 // Exports
26 //------------------------------------------------------ 26 //------------------------------------------------------
...@@ -51,7 +51,7 @@ $button-shaodw: inset 0 1px 2px rgba(0, 0, 0, .125) !default; ...@@ -51,7 +51,7 @@ $button-shaodw: inset 0 1px 2px rgba(0, 0, 0, .125) !default;
51 } 51 }
52 &:active, 52 &:active,
53 &.active { 53 &.active {
54 @include box-shadow($value: $button-shaodw); 54 @include box-shadow($value: $button-shadow);
55 } 55 }
56 &.disabled, 56 &.disabled,
57 &[disabled] { 57 &[disabled] {
......