aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGijs Boddeus <[email protected]>2017-10-04 08:52:48 +0200
committerGitHub <[email protected]>2017-10-04 08:52:48 +0200
commit1db5082c3ff9fad8ab9d154f2244fb3d592f382d (patch)
tree8916ef256f57192002d950a9041b6fafe7acbe7a
parenta77c13c403fdb6a5c2552f44c089cbb10fc279a6 (diff)
downloadbootstrap-1db5082c3ff9fad8ab9d154f2244fb3d592f382d.tar.xz
bootstrap-1db5082c3ff9fad8ab9d154f2244fb3d592f382d.zip
rearrange properties in _borders.scss mixins
-rw-r--r--scss/mixins/_buttons.scss4
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,