]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
chore: update the browserslist config according to the compability table
authorDaniel Ruf <daniel.ruf@ueberbit.de>
Wed, 7 Mar 2018 07:30:24 +0000 (08:30 +0100)
committerDaniel Ruf <daniel.ruf@ueberbit.de>
Wed, 7 Mar 2018 07:34:34 +0000 (08:34 +0100)
docs/assets/img/gulpfile.js
docs/pages/sass.md
gulp/config.js
gulp/tasks/customizer.js

index 56cffd6588063219aefb96338ecec3239e2862bb..e332e241fd478572a57da972e412533432fa0d1b 100755 (executable)
@@ -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'));
index ead2a9b245fe132cb6027d60db1258ec8ea5c8b5..3db4e957aeffdb8d10de7dc47dc515426600b722 100644 (file)
@@ -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']
 });
 ```
 
index 1287a528adbec32f01ad4a3a9ce8ffb323553450..da5d5237237e243cb9bf71fcbe2f57afe4cc1708 100644 (file)
@@ -47,8 +47,7 @@ module.exports = {
   CSS_COMPATIBILITY: [
     'last 2 versions',
     'ie >= 9',
-    'Android >= 2.3',
-    'ios >= 7'
+    'android >= 2.3'
   ],
 
   // Assets
index 4d41800f1ae3f441ba05b0d79f2d59fd4bb03cc9..18a91c62ab7106ea32c14ab8e17e4f9752d84e4c 100644 (file)
@@ -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;