diff options
| author | Gijs Boddeus <[email protected]> | 2017-10-04 08:52:48 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-04 08:52:48 +0200 |
| commit | 1db5082c3ff9fad8ab9d154f2244fb3d592f382d (patch) | |
| tree | 8916ef256f57192002d950a9041b6fafe7acbe7a | |
| parent | a77c13c403fdb6a5c2552f44c089cbb10fc279a6 (diff) | |
| download | bootstrap-1db5082c3ff9fad8ab9d154f2244fb3d592f382d.tar.xz bootstrap-1db5082c3ff9fad8ab9d154f2244fb3d592f382d.zip | |
rearrange properties in _borders.scss mixins
| -rw-r--r-- | scss/mixins/_buttons.scss | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scss/mixins/_buttons.scss b/scss/mixins/_buttons.scss index ef623ccd5..49d8d18be 100644 --- a/scss/mixins/_buttons.scss +++ b/scss/mixins/_buttons.scss @@ -4,15 +4,15 @@ // and disabled options for all buttons @mixin button-variant($background, $border, $active-background: darken($background, 7.5%), $active-border: darken($border, 10%)) { - color: color-yiq($background); background-color: $background; border-color: $border; + color: color-yiq($background); @include box-shadow($btn-box-shadow); @include hover { - color: color-yiq($active-background); background-color: $active-background; border-color: $active-border; + color: color-yiq($active-background); } &:focus, |
