customisable header image url (#1449)

This commit is contained in:
Denys Vuika
2020-05-06 14:17:42 +01:00
committed by GitHub
parent 9c3f3b5987
commit f6c1843b23
9 changed files with 37 additions and 7 deletions

View File

@@ -86,7 +86,6 @@ The default logo displayed in the top left corner of the Alfresco Content Applic
```json
{
...,
"application": {
"logo": "/assets/images/alfresco-logo-white.svg"
}
@@ -99,8 +98,21 @@ You can change the header background color by specifying the color code for the
```json
{
...,
"headerColor": "#ffffff"
"application": {
"headerColor": "#ffffff"
}
}
```
### Header background image
You can change the header background image by specifying the path to the corresponding resource:
```json
{
"application": {
"headerImagePath": "assets/images/mastHead-bg-shapesPattern.svg",
}
}
```