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
22 lines
451 B
SCSS
22 lines
451 B
SCSS
@mixin adf-task-list-people-selector-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$warn: map-get($theme, warn);
|
|
|
|
.adf-people-selector {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: space-between;
|
|
|
|
&-field {
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
&-deselect {
|
|
flex: 0 0 auto;
|
|
top: 5px;
|
|
right: 5px;
|
|
}
|
|
}
|
|
}
|