mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[AAE-11496] Move 'content-plugin' to projects folder as 'aca-content' (#2817)
* [AAE-11496] Move content-plugin to projects * Fix unit test
This commit is contained in:
28
projects/aca-content/src/lib/ui/custom-theme.scss
Normal file
28
projects/aca-content/src/lib/ui/custom-theme.scss
Normal file
@@ -0,0 +1,28 @@
|
||||
@use '@angular/material' as mat;
|
||||
@import './overrides/adf-style-fixes.theme';
|
||||
@import './overrides/adf-pagination.theme';
|
||||
@import './overrides/ay11';
|
||||
@import './overrides/adf-about.theme.scss';
|
||||
@import './colors';
|
||||
|
||||
$mat-primary-palette: mat.define-palette($aca-primary-blue, A100);
|
||||
$mat-accent-palette: mat.define-palette($aca-accent-green, A200);
|
||||
$mat-warn-palette: mat.define-palette($aca-warn, A100);
|
||||
|
||||
$app-typography: mat.define-typography-config($font-family: 'Open Sans'
|
||||
);
|
||||
|
||||
@include mat.core($app-typography);
|
||||
|
||||
$custom-theme: mat.define-light-theme($mat-primary-palette,
|
||||
$mat-accent-palette,
|
||||
$mat-warn-palette);
|
||||
|
||||
@mixin custom-theme($theme) {
|
||||
@include mat.all-component-themes($theme);
|
||||
@include adf-core-theme($theme);
|
||||
@include adf-style-fixes($theme);
|
||||
@include adf-pagination-theme($theme);
|
||||
@include ay11-theme();
|
||||
@include adf-about-theme($theme);
|
||||
}
|
Reference in New Issue
Block a user