-
Notifications
You must be signed in to change notification settings - Fork 596
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
Add CSS AutoPrefixer #5148
Add CSS AutoPrefixer #5148
Conversation
8125161
to
4e2df2b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Now when we have autoprefixer, should we clean manually coded prefixes? DevExtreme/styles/widgets/ui.less Lines 58 to 61 in 2ba8f52
|
4e2df2b
to
c998a98
Compare
Yes, we should. Adding prefixes is an autoprefixer job. |
c998a98
to
723b171
Compare
@lukyanovas wait wait, it will get even better! |
723b171
to
de5edb2
Compare
package.json
Outdated
@@ -104,5 +105,11 @@ | |||
"dev": "gulp dev", | |||
"test-env": "node testing/launch" | |||
}, | |||
"browserslist": [ | |||
"last 2 versions", | |||
"ios > 7", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not ios > 8
? 8.x => ~0.45%
https://data.apteligent.com/ios/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have seen the separate file browserslist
in some projects. Is it possible to extract such file here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
As for me, not a problem to increase the version of iOS to 9+.
Think that a separate file will be superfluous.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@nightskylark
package.json is easier to read.
.browserslistrc has comments, etc, and it's not supported automatically by the plugin
No description provided.