Browse Source

style: disable z-index optimization

fix custom meta panel style, close #49
Gerald 9 years ago
parent
commit
53d6089625
1 changed files with 3 additions and 1 deletions
  1. 3 1
      gulpfile.js

+ 3 - 1
gulpfile.js

@@ -94,7 +94,9 @@ gulp.task('copy-files', () => {
   const cssFilter = gulpFilter(['**/*.css'], {restore: true});
   return gulp.src(paths.copy)
   .pipe(cssFilter)
-  .pipe(cssnano())
+  .pipe(cssnano({
+    zindex: false,
+  }))
   .pipe(cssFilter.restore)
   .pipe(gulp.dest('dist/'));
 });