mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* people module directory restructuring * Extract PeopleSearchFieldComponent to reuse most part of it * Transform PeopleSearchFieldComponent to the form we want to reuse * People selector component, first try * Remove material grid from start-task.component, first part * Styling and i18n * clear button for deleting the selected assignee * Remove people preloading, remove combobox and update assigneeId * Fix existing tests * Add new tests * Final css fixes
20 lines
893 B
SCSS
20 lines
893 B
SCSS
@import '../process-list/components/process-filters.component';
|
|
@import '../attachment/process-attachment-list.component';
|
|
@import '../attachment/task-attachment-list.component';
|
|
@import '../comments/comment-list.component';
|
|
@import '../people/people.module';
|
|
@import '../task-list/components/start-task.component';
|
|
@import '../task-list/components/task-filters.component';
|
|
@import '../task-list/components/task-header.component';
|
|
|
|
@mixin adf-process-services-theme($theme) {
|
|
@include adf-process-filters-theme($theme);
|
|
@include adf-task-list-comment-list-theme($theme);
|
|
@include adf-task-list-start-task-theme($theme);
|
|
@include adf-people-module-theme($theme);
|
|
@include adf-task-list-filters-task-theme($theme);
|
|
@include adf-task-list-header-theme($theme);
|
|
@include adf-process-attachment-list-theme($theme);
|
|
@include adf-task-attachment-list-theme($theme);
|
|
}
|