mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-4900] Card View and Metadata Components refactoring * CSS linting * Unit test excluded * Rebase branch * Fix unit tests * Fix linting * Fix e2e tests * Fix 2e2 tests * Fix process-services e2e tests * More fixes * Fix more e2e tests * Fix unit test * Improve flaky unit test * Fix process services e2e tests * Update Process Header Cloud Page * Fix linting * Fix timing issue * Lintintg * Fix selectors * Fix e2e tests * Fix timing issue * Fix C260328 * Fix spellcheck * save screenshot * performance issue * Fix unit tests and e2e tests * fix e2e * refactoring * fix lint * fix e2e * Fix C309698 * fix other e2e * fix lint * increase timeout Co-authored-by: Eugenio Romano <eugenio.romano@alfresco.com>
16 lines
791 B
SCSS
16 lines
791 B
SCSS
@import './components/card-view-arrayitem/card-view-arrayitem.component';
|
|
@import './components/card-view-dateitem/card-view-dateitem.component';
|
|
@import './components/card-view-textitem/card-view-textitem.component';
|
|
@import './components/card-view-keyvaluepairsitem/card-view-keyvaluepairsitem.component';
|
|
@import './components/card-view/card-view.component';
|
|
@import '~@mat-datetimepicker/core/datetimepicker/datetimepicker-theme.scss';
|
|
|
|
@mixin adf-card-view-module-theme($theme) {
|
|
@include adf-card-view-dateitem-theme($theme);
|
|
@include adf-card-view-textitem-theme($theme);
|
|
@include adf-card-view-keyvaluepairsitem-theme($theme);
|
|
@include adf-card-view-theme($theme);
|
|
@include mat-datetimepicker-theme($theme);
|
|
@include adf-card-view-array-item-theme($theme);
|
|
}
|