diff options
| author | Mark Otto <[email protected]> | 2015-08-22 19:01:11 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-08-22 19:01:11 -0700 |
| commit | 990d646bcdbb3eeea54e1da6b9a377b29c4a6e16 (patch) | |
| tree | 5dfa8ebb0cad756e2dff011c2c0e10857d186b7c | |
| parent | 16075cc068b14cdbb4cda4fe2c0e5c097824c26c (diff) | |
| download | bootstrap-990d646bcdbb3eeea54e1da6b9a377b29c4a6e16.tar.xz bootstrap-990d646bcdbb3eeea54e1da6b9a377b29c4a6e16.zip | |
fix shadows on btns to use mixin
| -rw-r--r-- | scss/mixins/_buttons.scss | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scss/mixins/_buttons.scss b/scss/mixins/_buttons.scss index 75d284778..6e4e298f1 100644 --- a/scss/mixins/_buttons.scss +++ b/scss/mixins/_buttons.scss @@ -7,8 +7,7 @@ color: $color; background-color: $background; border-color: $border; -// $shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075); -// .box-shadow($shadow); + @include box-shadow(inset 0 1px 0 rgba(255,255,255,.15), 0 1px 1px rgba(0,0,0,.075)); $active-background: darken($background, 10%); $active-border: darken($border, 12%); |
