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/_normalize.scss | |
| parent | c0f4dcd38e72f84f1fbf7828f346686acd1117f7 (diff) | |
| download | bootstrap-8e374bd010a6db00acf3cb51b14788d7bf9ba097.tar.xz bootstrap-8e374bd010a6db00acf3cb51b14788d7bf9ba097.zip | |
put all :hover styles within @media (hover: hover)
Diffstat (limited to 'scss/_normalize.scss')
| -rw-r--r-- | scss/_normalize.scss | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/scss/_normalize.scss b/scss/_normalize.scss index 62a085a48..135fe2a3a 100644 --- a/scss/_normalize.scss +++ b/scss/_normalize.scss @@ -94,9 +94,13 @@ a { // Improve readability when focused and also mouse hovered in all browsers. // -a:active, -a:hover { - outline: 0; +a { + &:active { + outline: 0; + } + @include hover { + outline: 0; + } } // Text-level semantics |
