diff options
| author | Chris Rebert <[email protected]> | 2015-01-01 01:05:01 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2015-01-22 11:37:37 -0800 |
| commit | 8e374bd010a6db00acf3cb51b14788d7bf9ba097 (patch) | |
| tree | d9e4db80876dfecfee4a0c182976f7533eaec15d /scss/_button-group.scss | |
| parent | c0f4dcd38e72f84f1fbf7828f346686acd1117f7 (diff) | |
| download | bootstrap-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.scss | 4 |
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; + } } } |
