-
-
Notifications
You must be signed in to change notification settings - Fork 79.1k
v4.0.0 Scss Compilation Error: Invalid US-ASCII character “\xE2” (_hover mixin partial) #25391
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
I can confirm this on ubuntu 16.04 and sass 3.5.5. I've installed 4.0.0 with yarn no changes made.
The Problem is in // stylelint-disable indentation
// Hover mixin and `$enable-hover-media-query` are deprecated.
//
// Origally added during our alphas and maintained during betas, this mixin was
// designed to prevent `:hover` stickiness on iOS ^ ^ an issue where hover styles <-- THIS LINE
// would persist after initial touch.
//
// For backward compatibility, we've kept these mixins and updated them to
// always return their regular psuedo-classes instead of a shimmed media query.
//
// Issue: https://github.com/twbs/bootstrap/issues/25195
... When I remove this line |
I've filed a PR. Let's hope a hotfix will get deployed soon! |
@XhmikosR are there any plans on releasing a hotfix |
I'm not aware of anything yet, but it's been a while since I talked with @mdo on Slack, so better wait for him to give you a definite answer. |
I'm having this problem and the solutions mentioned didn't solve the problem. Update: Problem solved, thanks. |
Sass supports a |
Uh oh!
There was an error while loading. Please reload this page.
Good day,
Was trying to update projects from beta 3 to v4.0.0 but kept receiving the following error when compiling some modules.

After isolating the affected file mixins/_hover.scss and going through it, seems to be the
-
character from iOS-an.. in top comments (line 6).Replacing the
-
character with your own or setting@charset: 'UTF-8';
at the top of the file does the trick (you can also remove line 6 altogether as well).Thank you!
The text was updated successfully, but these errors were encountered: