reorganize assets in others bundles
@@ -1,8 +1,5 @@
|
||||
@import '~ChillMainAssets/module/bootstrap/bootstrap';
|
||||
|
||||
@import "_task-statuses.scss";
|
||||
@import "_task-list.scss";
|
||||
|
||||
div#single_task_warningInterval {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
@@ -49,22 +46,22 @@ div#single_task_warningInterval {
|
||||
.btn-task-exchange::before {
|
||||
@extend .btn-task;
|
||||
width: 10px;
|
||||
content: url(../svg/exchange-alt.svg);
|
||||
content: url('./svg/exchange-alt.svg');
|
||||
}
|
||||
|
||||
.btn-task-start::before {
|
||||
@extend .btn-task;
|
||||
content: url(../svg/play.svg);
|
||||
content: url('./svg/play.svg');
|
||||
}
|
||||
|
||||
.btn-task-cancel::before {
|
||||
@extend .btn-task;
|
||||
content: url(../svg/archive.svg);
|
||||
content: url('./svg/archive.svg');
|
||||
}
|
||||
|
||||
.btn-task-close::before {
|
||||
@extend .btn-task;
|
||||
content: url(../svg/check.svg);
|
||||
content: url('./svg/check.svg');
|
||||
}
|
||||
|
||||
.btn-dropdown {
|
@@ -0,0 +1,5 @@
|
||||
require('./scss/_task-statuses.scss');
|
||||
require('./scss/_task-list.scss');
|
||||
|
||||
require('./chilltask.scss');
|
||||
|
Before Width: | Height: | Size: 344 B After Width: | Height: | Size: 344 B |
Before Width: | Height: | Size: 354 B After Width: | Height: | Size: 354 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 191 B After Width: | Height: | Size: 191 B |
@@ -1,3 +0,0 @@
|
||||
// this file loads all assets from the Chill task bundle
|
||||
require('./sass/_task.scss');
|
||||
|
@@ -1,3 +1,4 @@
|
||||
module.exports = function(encore, entries) {
|
||||
entries.push(__dirname + '/Resources/public/index.js');
|
||||
};
|
||||
module.exports = function(encore, entries)
|
||||
{
|
||||
entries.push(__dirname + '/Resources/public/chill/index.js');
|
||||
};
|
||||
|