Browse Source
Merge pull request #15187 from abpframework/Issue-theme-docs
Lepton theme docs added styles
pull/15205/head
Fatih KILIÇ
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
25 additions and
2 deletions
-
docs/en/Themes/LeptonXLite/Angular.md
-
docs/en/UI/Angular/Theme-Configurations.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 |
|
|
|
|
|
|
|
|
|
|
|
@ -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 |
|
|
|
|