refactor(assets): move vendor images via gulp
|
@ -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')));
|
||||
});
|
||||
|
|
@ -15,7 +15,7 @@ gulp.task('inject-reload', ['inject'], function () {
|
|||
browserSync.reload();
|
||||
});
|
||||
|
||||
gulp.task('inject', ['scripts', 'styles', 'injectAuth', 'inject404'], function () {
|
||||
gulp.task('inject', ['scripts', 'styles', 'injectAuth', 'inject404', 'copyVendorImages'], function () {
|
||||
var injectStyles = gulp.src([
|
||||
path.join(conf.paths.tmp, '/serve/app/main.css'),
|
||||
path.join('!' + conf.paths.tmp, '/serve/app/vendor.css')
|
||||
|
|
|
@ -48,8 +48,8 @@
|
|||
images: {
|
||||
root: IMAGES_ROOT,
|
||||
profile: IMAGES_ROOT + 'app/profile/',
|
||||
amMap: 'assets/img/theme/vendor/ammap/',
|
||||
amChart: 'assets/img/theme/vendor/amchart/'
|
||||
amMap: 'assets/img/theme/vendor/ammap//dist/ammap/images/',
|
||||
amChart: 'assets/img/theme/vendor/amcharts/dist/amcharts/images/'
|
||||
}
|
||||
});
|
||||
|
||||
|
|
Before Width: | Height: | Size: 122 B |
Before Width: | Height: | Size: 122 B |
Before Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 111 B |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 213 B |
Before Width: | Height: | Size: 1.4 KiB |
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 262 B |
Before Width: | Height: | Size: 257 B |
Before Width: | Height: | Size: 72 B |
Before Width: | Height: | Size: 73 B |
Before Width: | Height: | Size: 218 B |
Before Width: | Height: | Size: 848 B |
Before Width: | Height: | Size: 848 B |
Before Width: | Height: | Size: 59 B |
Before Width: | Height: | Size: 63 B |
Before Width: | Height: | Size: 63 B |
Before Width: | Height: | Size: 63 B |
Before Width: | Height: | Size: 63 B |
Before Width: | Height: | Size: 65 B |
Before Width: | Height: | Size: 93 B |
Before Width: | Height: | Size: 79 B |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 797 B |
|
@ -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;
|
||||
}
|