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
40 lines
935 B
SCSS
40 lines
935 B
SCSS
@mixin adf-task-list-people-search-theme($theme) {
|
|
$primary: map-get($theme, primary);
|
|
$accent: map-get($theme, accent);
|
|
$warn: map-get($theme, warn);
|
|
|
|
.adf-people-search {
|
|
width: 100%;
|
|
|
|
.activiti-label {
|
|
font-weight: bolder;
|
|
}
|
|
|
|
.fix-element-user-list {
|
|
padding-top: 0px;
|
|
padding-right: 0px;
|
|
padding-bottom: 0px;
|
|
padding-left: 0px;
|
|
}
|
|
|
|
.search-text-header {
|
|
font-weight: bold;
|
|
opacity: 0.54;
|
|
}
|
|
|
|
.search-list-action-container {
|
|
border-top: 1px solid #eee;
|
|
text-align: right;
|
|
padding: 5px 0px;
|
|
margin-top: 5px;
|
|
> button {
|
|
opacity: 0.54;
|
|
font-weight: bolder;
|
|
&:hover {
|
|
color: mat-color($primary);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|