mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* First steps * Every package have separate entry points for styling mixins * Moving to config dir, and using it in demo shell * Remove webpack config include path magic from activiti-form package * Fixing all the webpack common configs and using relative paths in the prebuilt themes * Datatable header fix * Update documentation
18 lines
741 B
SCSS
18 lines
741 B
SCSS
@import './theme-colors';
|
|
@import '../src/components/collapsable/accordion-group.component';
|
|
@import '../src/components/view/card-view-textitem.component';
|
|
@import '../src/components/view/card-view-dateitem.component';
|
|
@import '../src/components/view/card-view.component';
|
|
@import '../src/components/toolbar/toolbar.component';
|
|
@import '../src/components/pagination/pagination.component';
|
|
|
|
@mixin alfresco-core-theme($theme) {
|
|
@include mat-accordion-theme($theme);
|
|
@include mat-card-view-textitem-theme($theme);
|
|
@include mat-card-view-dateitem-theme($theme);
|
|
@include mat-card-view-theme($theme);
|
|
@include mat-adf-toolbar-theme($theme);
|
|
@include mat-pagination-theme($theme);
|
|
@include mat-colors-theme($theme);
|
|
}
|