WIP joyride override styles
parent
b098ef63f6
commit
ca0f3a7001
|
@ -0,0 +1,4 @@
|
|||
.introjs-overlay {
|
||||
background: radial-gradient(center, ellipse cover, rgba($whitish, .4) 0, rgba($whitish, .9) 100%);
|
||||
background-color: $whitish;
|
||||
}
|
|
@ -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",
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue