reorganize assets in others bundles
@ -0,0 +1 @@
|
|||||||
|
require('./chillactivity.scss');
|
@ -1 +0,0 @@
|
|||||||
require('./scss/chillactivity.scss');
|
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
{{ encore_entry_link_tags('async_upload') }}
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener('DOMContentLoaded', function (e) {
|
window.addEventListener('DOMContentLoaded', function (e) {
|
||||||
chill.displayAlertWhenLeavingModifiedForm('form[name="{{ edit_form.vars.form.vars.name }}"]',
|
chill.displayAlertWhenLeavingModifiedForm('form[name="{{ edit_form.vars.form.vars.name }}"]',
|
||||||
@ -28,6 +28,6 @@
|
|||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
{{ encore_entry_link_tags('async_upload') }}
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
{{ encore_entry_link_tags('vue_activity') }}
|
{{ encore_entry_link_tags('vue_activity') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
{{ encore_entry_link_tags('async_upload') }}
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener('DOMContentLoaded', function (e) {
|
window.addEventListener('DOMContentLoaded', function (e) {
|
||||||
chill.displayAlertWhenLeavingModifiedForm('form[name="{{ edit_form.vars.form.vars.name }}"]',
|
chill.displayAlertWhenLeavingModifiedForm('form[name="{{ edit_form.vars.form.vars.name }}"]',
|
||||||
@ -42,6 +42,6 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
{{ encore_entry_link_tags('async_upload') }}
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
{{ encore_entry_link_tags('vue_activity') }}
|
{{ encore_entry_link_tags('vue_activity') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
{{ encore_entry_script_tags('async_upload') }}
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener('DOMContentLoaded', function (e) {
|
window.addEventListener('DOMContentLoaded', function (e) {
|
||||||
chill.displayAlertWhenLeavingUnsubmittedForm('form[name="{{ form.vars.form.vars.name }}"]',
|
chill.displayAlertWhenLeavingUnsubmittedForm('form[name="{{ form.vars.form.vars.name }}"]',
|
||||||
@ -28,6 +28,6 @@
|
|||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
{{ parent() }}
|
{{ parent() }}
|
||||||
<link rel="stylesheet" href="{{ asset('build/async_upload.css') }}"/>
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
{{ encore_entry_link_tags('vue_activity') }}
|
{{ encore_entry_link_tags('vue_activity') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
{{ encore_entry_link_tags('async_upload') }}
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
window.addEventListener('DOMContentLoaded', function (e) {
|
window.addEventListener('DOMContentLoaded', function (e) {
|
||||||
chill.displayAlertWhenLeavingUnsubmittedForm('form[name="{{ form.vars.form.vars.name }}"]',
|
chill.displayAlertWhenLeavingUnsubmittedForm('form[name="{{ form.vars.form.vars.name }}"]',
|
||||||
@ -26,6 +26,6 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
{{ encore_entry_link_tags('async_upload') }}
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
{{ encore_entry_link_tags('vue_activity') }}
|
{{ encore_entry_link_tags('vue_activity') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
// this file loads all assets from the Chill person bundle
|
// this file loads all assets from the Chill person bundle
|
||||||
module.exports = function(encore, entries) {
|
module.exports = function(encore, entries)
|
||||||
entries.push(__dirname + '/Resources/public/index.js');
|
{
|
||||||
|
entries.push(__dirname + '/Resources/public/chill/index.js');
|
||||||
|
|
||||||
encore.addAliases({
|
encore.addAliases({
|
||||||
ChillActivityAssets: __dirname + '/Resources/public'
|
ChillActivityAssets: __dirname + '/Resources/public'
|
||||||
|
@ -56,9 +56,9 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<script src="{{ asset('build/async_upload.js') }}" type="text/javascript"></script>
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
<link rel="stylesheet" href="{{ asset('build/async_upload.css') }}"/>
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
{% block title %}{{ 'Documents for %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}{% endblock %}
|
{% block title %}{{ 'Documents for %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<script src="{{ asset('build/async_upload.js') }}" type="text/javascript"></script>
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block personcontent %}
|
{% block personcontent %}
|
||||||
|
@ -48,9 +48,9 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<script src="{{ asset('build/async_upload.js') }}" type="text/javascript"></script>
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block css %}
|
{% block css %}
|
||||||
<link rel="stylesheet" href="{{ asset('build/async_upload.css') }}"/>
|
{{ encore_entry_link_tags('mod_async_upload') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
{% block title %}{{ 'Detail of document of %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}{% endblock %}
|
{% block title %}{{ 'Detail of document of %name%'|trans({ '%name%': person|chill_entity_render_string } ) }}{% endblock %}
|
||||||
|
|
||||||
{% block js %}
|
{% block js %}
|
||||||
<script src="{{ asset('build/async_upload.js') }}" type="text/javascript"></script>
|
{{ encore_entry_script_tags('mod_async_upload') }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block personcontent %}
|
{% block personcontent %}
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
module.exports = function(encore) {
|
module.exports = function(encore)
|
||||||
encore.addEntry('async_upload', __dirname + '/Resources/public/module/async_upload/index.js');
|
{
|
||||||
|
encore.addEntry('mod_async_upload', __dirname + '/Resources/public/module/async_upload/index.js');
|
||||||
};
|
};
|
||||||
|
@ -0,0 +1 @@
|
|||||||
|
require('./chillevent.scss');
|
@ -1 +0,0 @@
|
|||||||
require('./css/chillevent.css');
|
|
@ -1,4 +1,4 @@
|
|||||||
// this file loads all assets from the Chill Event Bundle
|
module.exports = function(encore, entries)
|
||||||
module.exports = function(encore, entries) {
|
{
|
||||||
entries.push(__dirname + '/Resources/public/index.js');
|
entries.push(__dirname + '/Resources/public/chill/index.js');
|
||||||
};
|
};
|
@ -1,8 +1,5 @@
|
|||||||
@import '~ChillMainAssets/module/bootstrap/bootstrap';
|
@import '~ChillMainAssets/module/bootstrap/bootstrap';
|
||||||
|
|
||||||
@import "_task-statuses.scss";
|
|
||||||
@import "_task-list.scss";
|
|
||||||
|
|
||||||
div#single_task_warningInterval {
|
div#single_task_warningInterval {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
@ -49,22 +46,22 @@ div#single_task_warningInterval {
|
|||||||
.btn-task-exchange::before {
|
.btn-task-exchange::before {
|
||||||
@extend .btn-task;
|
@extend .btn-task;
|
||||||
width: 10px;
|
width: 10px;
|
||||||
content: url(../svg/exchange-alt.svg);
|
content: url('./svg/exchange-alt.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-task-start::before {
|
.btn-task-start::before {
|
||||||
@extend .btn-task;
|
@extend .btn-task;
|
||||||
content: url(../svg/play.svg);
|
content: url('./svg/play.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-task-cancel::before {
|
.btn-task-cancel::before {
|
||||||
@extend .btn-task;
|
@extend .btn-task;
|
||||||
content: url(../svg/archive.svg);
|
content: url('./svg/archive.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-task-close::before {
|
.btn-task-close::before {
|
||||||
@extend .btn-task;
|
@extend .btn-task;
|
||||||
content: url(../svg/check.svg);
|
content: url('./svg/check.svg');
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-dropdown {
|
.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) {
|
module.exports = function(encore, entries)
|
||||||
entries.push(__dirname + '/Resources/public/index.js');
|
{
|
||||||
|
entries.push(__dirname + '/Resources/public/chill/index.js');
|
||||||
};
|
};
|
@ -0,0 +1,2 @@
|
|||||||
|
require('./thirdparty.scss');
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
// sass/css
|
|
||||||
require('./sass/thirdparty.scss');
|
|
||||||
|
|
@ -1,3 +1,4 @@
|
|||||||
module.exports = function(encore, entries) {
|
module.exports = function(encore, entries)
|
||||||
entries.push(__dirname + '/Resources/public/index.js');
|
{
|
||||||
|
entries.push(__dirname + '/Resources/public/chill/index.js');
|
||||||
};
|
};
|
||||||
|