2017-06-10 14:53:29 +00:00
|
|
|
|
|
|
|
module.exports = (function () {
|
|
|
|
|
|
|
|
return function UISpaStylePlugin() {
|
|
|
|
|
|
|
|
this.configPlugin = function (ctx) {
|
|
|
|
ctx.key='uiSpaStyle';
|
|
|
|
ctx.description='Adds basic styling resources.';
|
|
|
|
ctx.dependencies.push('uiSpaTopcoatFont');
|
|
|
|
};
|
|
|
|
|
|
|
|
this.configServer = function(ctx) {
|
2017-12-23 21:45:27 +00:00
|
|
|
//ctx.hostTemplateCSS('css/flot');
|
|
|
|
//ctx.hostTemplateCSS('css/panel');
|
2017-06-10 14:53:29 +00:00
|
|
|
ctx.hostTemplateCSS('css/style');
|
|
|
|
};
|
|
|
|
};
|
|
|
|
})();
|