WIP joyride override styles

stable
Xavier Julián 2015-10-09 11:48:21 +02:00 committed by Alejandro Alonso
parent b098ef63f6
commit ca0f3a7001
3 changed files with 9 additions and 4 deletions

View File

@ -0,0 +1,4 @@
.introjs-overlay {
background: radial-gradient(center, ellipse cover, rgba($whitish, .4) 0, rgba($whitish, .9) 100%);
background-color: $whitish;
}

View File

@ -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",

View File

@ -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);