aboutsummaryrefslogtreecommitdiff
path: root/scss/_button-group.scss
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2015-01-01 01:05:01 -0800
committerChris Rebert <[email protected]>2015-01-22 11:37:37 -0800
commit8e374bd010a6db00acf3cb51b14788d7bf9ba097 (patch)
treed9e4db80876dfecfee4a0c182976f7533eaec15d /scss/_button-group.scss
parentc0f4dcd38e72f84f1fbf7828f346686acd1117f7 (diff)
downloadbootstrap-8e374bd010a6db00acf3cb51b14788d7bf9ba097.tar.xz
bootstrap-8e374bd010a6db00acf3cb51b14788d7bf9ba097.zip
put all :hover styles within @media (hover: hover)
Diffstat (limited to 'scss/_button-group.scss')
-rw-r--r--scss/_button-group.scss4
1 files changed, 3 insertions, 1 deletions
diff --git a/scss/_button-group.scss b/scss/_button-group.scss
index 839ce2587..6e8ae63de 100644
--- a/scss/_button-group.scss
+++ b/scss/_button-group.scss
@@ -14,12 +14,14 @@
float: left;
// Bring the "active" button to the front
- &:hover,
&:focus,
&:active,
&.active {
z-index: 2;
}
+ @include hover {
+ z-index: 2;
+ }
}
}