Update branch for ADF 6.0.0-A.2-8282 and JS-API 5.4.0-639 [ci:force] (#2994)

* [ci:force][auto-commit] Update @alfresco/adf-extensions to 6.0.0-A.2-8282 for branch: update-alfresco-dependencies originated from @alfresco/adf-extensions PR: 4195361652

* [ci:force][auto-commit] Update @alfresco/adf-core to 6.0.0-A.2-8282 for branch: update-alfresco-dependencies originated from @alfresco/adf-core PR: 4195361652

* [ci:force][auto-commit] Update @alfresco/adf-content-services to 6.0.0-A.2-8282 for branch: update-alfresco-dependencies originated from @alfresco/adf-content-services PR: 4195361652

* [ci:force][auto-commit] Update @alfresco/adf-cli to 6.0.0-A.2-8282 for branch: update-alfresco-dependencies originated from @alfresco/adf-cli PR: 4195361652

* [ci:force][auto-commit] Update @alfresco/adf-testing to 6.0.0-A.2-8282 for branch: update-alfresco-dependencies originated from @alfresco/adf-testing PR: 4195361652

* Fixed theming on update

---------

Co-authored-by: Vito Albano <vito.albano@alfresco.com>
This commit is contained in:
Alfresco Build
2023-02-16 17:33:35 +01:00
committed by GitHub
parent 4065d39ca7
commit 197ef8f0e3
3 changed files with 31 additions and 24 deletions

View File

@@ -12,11 +12,18 @@ $mat-warn-palette: mat.define-palette($aca-warn, A100);
$app-typography: mat.define-typography-config($font-family: 'Open Sans'
);
@include mat.core($app-typography);
@include mat.core();
$custom-theme: mat.define-light-theme($mat-primary-palette,
$mat-accent-palette,
$mat-warn-palette);
$custom-theme: mat.define-light-theme(
(
color: (
primary: $mat-primary-palette,
accent: $mat-accent-palette,
warn: $mat-warn-palette
),
typography: $app-typography
)
);
@mixin custom-theme($theme) {
@include mat.all-component-themes($theme);