mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +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
48 lines
1.1 KiB
SCSS
48 lines
1.1 KiB
SCSS
@mixin adf-task-list-people-search-field-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$warn: map-get($theme, warn);
|
|
|
|
.adf-people-search-field {
|
|
width: 100%;
|
|
|
|
.search-text-container {
|
|
width: 100%;
|
|
|
|
input {
|
|
line-height: normal;
|
|
}
|
|
}
|
|
|
|
.search-list-container {
|
|
max-height: 152px;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
adf-people-list ::ng-deep adf-datatable ::ng-deep thead {
|
|
display: none;
|
|
}
|
|
|
|
.people-pic {
|
|
background: mat-color($primary);
|
|
width: 30px;
|
|
padding: 10px 5px;
|
|
border-radius: 90%;
|
|
color: #fff;
|
|
text-align: center;
|
|
font-weight: bolder;
|
|
font-size: 18px;
|
|
text-transform: uppercase;
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
.people-img {
|
|
border-radius: 90%;
|
|
width: 40px;
|
|
height: 40px;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|