From: Daniel Ruf Date: Wed, 7 Mar 2018 07:30:24 +0000 (+0100) Subject: chore: update the browserslist config according to the compability table X-Git-Tag: v6.6.0~3^2~224^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6999b7adac4297c06f862f197e94e1da9949bae5;p=thirdparty%2Ffoundation%2Ffoundation-sites.git chore: update the browserslist config according to the compability table --- diff --git a/docs/assets/img/gulpfile.js b/docs/assets/img/gulpfile.js index 56cffd658..e332e241f 100755 --- a/docs/assets/img/gulpfile.js +++ b/docs/assets/img/gulpfile.js @@ -84,7 +84,7 @@ gulp.task('sass', function() { }) .on('error', $.sass.logError)) .pipe($.autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9'] + browsers: ['last 2 versions', 'ie >= 9', 'android >= 2.3'] })) // .pipe(uncss) .pipe(gulp.dest('./dist/assets/css')); diff --git a/docs/pages/sass.md b/docs/pages/sass.md index ead2a9b24..3db4e957a 100644 --- a/docs/pages/sass.md +++ b/docs/pages/sass.md @@ -30,7 +30,7 @@ To get the proper browser support, use these Autoprefixer settings: ```js autoprefixer({ - browsers: ['last 2 versions', 'ie >= 9', 'and_chr >= 2.3'] + browsers: ['last 2 versions', 'ie >= 9', 'android >= 2.3'] }); ``` diff --git a/gulp/config.js b/gulp/config.js index 1287a528a..da5d52372 100644 --- a/gulp/config.js +++ b/gulp/config.js @@ -47,8 +47,7 @@ module.exports = { CSS_COMPATIBILITY: [ 'last 2 versions', 'ie >= 9', - 'Android >= 2.3', - 'ios >= 7' + 'android >= 2.3' ], // Assets diff --git a/gulp/tasks/customizer.js b/gulp/tasks/customizer.js index 4d41800f1..18a91c62a 100644 --- a/gulp/tasks/customizer.js +++ b/gulp/tasks/customizer.js @@ -32,7 +32,7 @@ var OUTPUT_DIR = ARGS.output || 'custom-build'; var COMPATIBILITY = [ 'last 2 versions', 'ie >= 9', - 'and_chr >= 2.3' + 'android >= 2.3' ]; var CUSTOMIZER_CONFIG; var MODULE_LIST;