From 8258d26d34bc8c490379cda25dbd79359a79e2c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20KILI=C3=87?= Date: Wed, 21 Dec 2022 13:54:52 +0300 Subject: [PATCH 1/3] add styles to the Angular theme document --- docs/en/Themes/LeptonXLite/Angular.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/Themes/LeptonXLite/Angular.md b/docs/en/Themes/LeptonXLite/Angular.md index 950cd20c8b..4214cc46ab 100644 --- a/docs/en/Themes/LeptonXLite/Angular.md +++ b/docs/en/Themes/LeptonXLite/Angular.md @@ -20,7 +20,9 @@ To add `LeptonX-lite` into your project, `yarn add bootstrap-icons` -- Then, we need to edit the styles array in `angular.json` to replace the existing style with the new one. +- Then, we need to edit the styles array in `angular.json` to replace the existing style with the new one in the following link. + +* [Styles - Angular UI](../../UI/Angular/Theme-Configurations.md) Add the following style From c105df290d38a8f96d0209286706d14917945b0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20KILI=C3=87?= Date: Wed, 21 Dec 2022 13:57:48 +0300 Subject: [PATCH 2/3] add styles to the Angular Theme-Configurations --- docs/en/UI/Angular/Theme-Configurations.md | 23 +++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/docs/en/UI/Angular/Theme-Configurations.md b/docs/en/UI/Angular/Theme-Configurations.md index 1ec4f56c5e..e663955667 100644 --- a/docs/en/UI/Angular/Theme-Configurations.md +++ b/docs/en/UI/Angular/Theme-Configurations.md @@ -43,6 +43,16 @@ Theme packages no longer import styles as CSS modules as of ABP version 6.0. The "inject": false, "bundleName": "abp-bundle.rtl" }, +{ + "input":"node_modules/@volo/ngx-lepton-x.lite/assets/css/font-bundle.rtl.css", + "inject":false, + "bundleName":"font-bundle.rtl" +} +,{ + "input":"node_modules/@volo/ngx-lepton-x.lite/assets/css/font-bundle.css", + "inject":false, + "bundleName":"font-bundle" +}, ``` ## Theme Basic @@ -150,7 +160,18 @@ Theme packages no longer import styles as CSS modules as of ABP version 6.0. The "input": "node_modules/@volosoft/abp.ng.theme.lepton-x/assets/css/abp-bundle.rtl.css", "inject": false, "bundleName": "abp-bundle.rtl" -} +}, +{ + "input": "node_modules/@volosoft/ngx-lepton-x/assets/css/font-bundle.css", + "inject": false, + "bundleName": "font-bundle" +}, +{ + "input": "node_modules/@volosoft/ngx-lepton-x/assets/css/font-bundle.rtl.css", + "inject": false, + "bundleName": "font-bundle.rtl" +}, + ``` ## Theme Lepton From 3fb3825f15b4830c4e6166238e45d54f465d2603 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fatih=20KILI=C3=87?= Date: Thu, 22 Dec 2022 14:35:54 +0300 Subject: [PATCH 3/3] fix typo. --- docs/en/Themes/LeptonXLite/Angular.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/en/Themes/LeptonXLite/Angular.md b/docs/en/Themes/LeptonXLite/Angular.md index 4214cc46ab..7ebb649aca 100644 --- a/docs/en/Themes/LeptonXLite/Angular.md +++ b/docs/en/Themes/LeptonXLite/Angular.md @@ -20,7 +20,7 @@ To add `LeptonX-lite` into your project, `yarn add bootstrap-icons` -- Then, we need to edit the styles array in `angular.json` to replace the existing style with the new one in the following link. +- Then, we need to edit the styles array in `angular.json` to replace the existing style with the new one in the following link : * [Styles - Angular UI](../../UI/Angular/Theme-Configurations.md)