mirror of
git://develop.git.wordpress.org/
synced 2025-01-17 04:48:25 +01:00
Don't cascade autoprefixer output
Autoprefixer changed the default for cascade from false to true. Our css coding standards do not include the cascade for browser prefixes. Introduced in r30067 see #30141 git-svn-id: https://develop.svn.wordpress.org/trunk@30069 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
74ed2089b4
commit
c9dfc6bebb
@ -13,7 +13,8 @@ module.exports = function(grunt) {
|
||||
grunt.initConfig({
|
||||
autoprefixer: {
|
||||
options: {
|
||||
browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0']
|
||||
browsers: ['Android >= 2.1', 'Chrome >= 21', 'Explorer >= 7', 'Firefox >= 17', 'Opera >= 12.1', 'Safari >= 6.0'],
|
||||
cascade: false
|
||||
},
|
||||
core: {
|
||||
expand: true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user