Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorChris Rebert <github@chrisrebert.com>2016-06-21 02:18:21 +0300
committerGitHub <noreply@github.com>2016-06-21 02:18:21 +0300
commita358fc9dc1b71c4177735c4ca27c9da350d655af (patch)
tree8038e3a070214d5f918acf9ddc6fc6f7c5f294a1 /scss
parentbfc16c4a829ba596db28f5f42d7a3e429e6ea2e1 (diff)
Replace grunt-postcss with postcss-cli (#20140)
Refs #19990 Continues the degruntification process. Also removes mq4-hover-shim for now, since it doesn't yet implement the standard PostCSS plugin interface.
Diffstat (limited to 'scss')
-rw-r--r--scss/mixins/_hover.scss19
1 files changed, 10 insertions, 9 deletions
diff --git a/scss/mixins/_hover.scss b/scss/mixins/_hover.scss
index 3a11254e84..4a648a54d3 100644
--- a/scss/mixins/_hover.scss
+++ b/scss/mixins/_hover.scss
@@ -1,14 +1,15 @@
@mixin hover {
- @if $enable-hover-media-query {
- // See Media Queries Level 4: http://drafts.csswg.org/mediaqueries/#hover
- // Currently shimmed by https://github.com/twbs/mq4-hover-shim
- @media (hover: hover) {
- &:hover { @content }
- }
- }
- @else {
+ // TODO: re-enable along with mq4-hover-shim
+// @if $enable-hover-media-query {
+// // See Media Queries Level 4: http://drafts.csswg.org/mediaqueries/#hover
+// // Currently shimmed by https://github.com/twbs/mq4-hover-shim
+// @media (hover: hover) {
+// &:hover { @content }
+// }
+// }
+// @else {
&:hover { @content }
- }
+// }
}
@mixin hover-focus {