diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/chillthirdparty.scss b/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/chillthirdparty.scss index eede1a84d..976b5bcb9 100644 --- a/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/chillthirdparty.scss +++ b/src/Bundle/ChillThirdPartyBundle/Resources/public/chill/chillthirdparty.scss @@ -11,6 +11,11 @@ /// force first column width in list div.thirdparty-list { + label.counter { + span { + font-weight: bold; + } + } div.flex-table { div.item-bloc { div.item-row { @@ -21,3 +26,10 @@ div.thirdparty-list { } } } + +/// render_box +section.chill-entity { + .entity-thirdparty { + span.name {} + } +} diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/public/page/index/index.js b/src/Bundle/ChillThirdPartyBundle/Resources/public/page/index/index.js deleted file mode 100644 index 10b9e8383..000000000 --- a/src/Bundle/ChillThirdPartyBundle/Resources/public/page/index/index.js +++ /dev/null @@ -1,2 +0,0 @@ -require('./index_3party.scss'); - diff --git a/src/Bundle/ChillThirdPartyBundle/Resources/public/page/index/index_3party.scss b/src/Bundle/ChillThirdPartyBundle/Resources/public/page/index/index_3party.scss deleted file mode 100644 index c14be5194..000000000 --- a/src/Bundle/ChillThirdPartyBundle/Resources/public/page/index/index_3party.scss +++ /dev/null @@ -1,17 +0,0 @@ -/// -div.thirdparty-list { - label.counter { - float: right; - span { - font-weight: bold; - } - } -} - -/// render_box -section.chill-entity { - .entity-thirdparty { - span.name {} - } -} - diff --git a/src/Bundle/ChillThirdPartyBundle/chill.webpack.config.js b/src/Bundle/ChillThirdPartyBundle/chill.webpack.config.js index 8fbeb35a2..ea523d82f 100644 --- a/src/Bundle/ChillThirdPartyBundle/chill.webpack.config.js +++ b/src/Bundle/ChillThirdPartyBundle/chill.webpack.config.js @@ -6,9 +6,4 @@ module.exports = function(encore, entries) }); entries.push(__dirname + '/Resources/public/chill/index.js'); - - encore.addEntry( - 'page_3party_3party_index', - __dirname + '/Resources/public/page/index/index.js' - ); };