forked from akveo/blur-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(assets): move vendor images via gulp
- Loading branch information
1 parent
87a7806
commit c66a021
Showing
48 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
'use strict'; | ||
|
||
var path = require('path'); | ||
var gulp = require('gulp'); | ||
var conf = require('./conf'); | ||
|
||
gulp.task('copyVendorImages',function () { | ||
return gulp.src([ | ||
path.join(conf.wiredep.directory, '**/ammap/dist/ammap/images/**/*'), | ||
path.join(conf.wiredep.directory, '**/amcharts/dist/amcharts/images/**/*'), | ||
path.join(conf.wiredep.directory, '**/ionrangeslider/img/**/*') | ||
]) | ||
.pipe(gulp.dest(path.join(conf.paths.dist, '/assets/img/theme/vendor'))); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
Diff not rendered.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
.slider-box{ | ||
min-height: 86px; | ||
} | ||
|
||
.irs-bar, | ||
.irs-bar-edge, | ||
.irs-line-left, | ||
.irs-line-mid, | ||
.irs-line-right, | ||
.irs-slider { | ||
background-image: url(../assets/img/theme/vendor/ionrangeslider/img/sprite-skin-flat.png); | ||
background-repeat: repeat-x; | ||
} |