mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-10-01 14:41:32 +00:00
* add integration 2.0.0 test * update readme * add integration test in travis * restore tsconfig.dev * fix test script travis call * improve script * fix npm run test
34 lines
926 B
SCSS
34 lines
926 B
SCSS
@import '~@alfresco/adf-core/prebuilt-themes/adf-blue-orange.css';
|
|
|
|
|
|
@import '~@alfresco/adf-content-services/theming';
|
|
@import '~@alfresco/adf-process-services/theming';
|
|
@import '~@alfresco/adf-core/theming';
|
|
|
|
@import '~@angular/material/theming';
|
|
|
|
@include mat-core($alfresco-typography);
|
|
|
|
$primary: mat-palette($alfresco-accent-orange);
|
|
$accent: mat-palette($alfresco-accent-purple);
|
|
$warn: mat-palette($alfresco-warn);
|
|
$theme: mat-light-theme($primary, $accent, $warn);
|
|
|
|
@include angular-material-theme($theme);
|
|
@include adf-content-services-theme($theme);
|
|
@include adf-process-services-theme($theme);
|
|
@include adf-core-theme($theme);
|
|
|
|
body, html {
|
|
margin: 0;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
font-size: mat-font-size($alfresco-typography, body-1);
|
|
font-family: mat-font-family($alfresco-typography);
|
|
line-height: mat-line-height($alfresco-typography, body-1);
|
|
}
|
|
|
|
body {
|
|
overflow: auto;
|
|
}
|