diff --git a/app/styles/modules/help/joyride.scss b/app/styles/modules/help/joyride.scss new file mode 100644 index 00000000..5a9d7763 --- /dev/null +++ b/app/styles/modules/help/joyride.scss @@ -0,0 +1,4 @@ +.introjs-overlay { + background: radial-gradient(center, ellipse cover, rgba($whitish, .4) 0, rgba($whitish, .9) 100%); + background-color: $whitish; +} diff --git a/bower.json b/bower.json index 50937eb7..3bbd02bf 100644 --- a/bower.json +++ b/bower.json @@ -81,7 +81,8 @@ "ngInfiniteScroll": "1.2.1", "eventemitter2": "~0.4.14", "immutable": "~3.7.2", - "bluebird": "~2.10.2" + "bluebird": "~2.10.2", + "intro.js": "~1.1.1" }, "resolutions": { "lodash": "~2.4.2", diff --git a/gulpfile.js b/gulpfile.js index eedf61f8..dbd0e4d3 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -248,7 +248,7 @@ gulp.task("scss-lint", [], function() { }; } }))) - .pipe(gulpif(fail, scsslint.failReporter())) + .pipe(gulpif(fail, scsslint.failReporter())); }); gulp.task("clear-sass-cache", function() { @@ -315,7 +315,7 @@ gulp.task("main-css", function() { return gulp.src(_paths) .pipe(concat("theme-" + themes.current.name + ".css")) .pipe(gulpif(isDeploy, minifyCSS({noAdvanced: true}))) - .pipe(gulp.dest(paths.dist + "styles/")) + .pipe(gulp.dest(paths.dist + "styles/")); }); var compileThemes = function (cb) { @@ -326,7 +326,7 @@ var compileThemes = function (cb) { ["app-css", "vendor-css"], "main-css", function() { - themes.next() + themes.next(); if (themes.current) { compileThemes(cb);