Manage project team dialog fixes
This commit is contained in:
parent
430807b487
commit
e32003c13e
@ -14,7 +14,7 @@
|
|||||||
</mat-form-field>
|
</mat-form-field>
|
||||||
</div>
|
</div>
|
||||||
<ng-container *ngIf="data.type === 'project'">
|
<ng-container *ngIf="data.type === 'project'">
|
||||||
<div class="all-caps-label" [translate]="'assign-' + data.type + '-owner.dialog.members'"></div>
|
<div class="all-caps-label mt-10" [translate]="'assign-' + data.type + '-owner.dialog.members'"></div>
|
||||||
<redaction-team-members
|
<redaction-team-members
|
||||||
[memberIds]="selectedUserList"
|
[memberIds]="selectedUserList"
|
||||||
[canAdd]="false"
|
[canAdd]="false"
|
||||||
@ -22,6 +22,9 @@
|
|||||||
[canRemove]="true"
|
[canRemove]="true"
|
||||||
(remove)="toggleSelected($event)"
|
(remove)="toggleSelected($event)"
|
||||||
></redaction-team-members>
|
></redaction-team-members>
|
||||||
|
|
||||||
|
<pre *ngIf="selectedUserList.length === 0" class="info" [innerHTML]="'assign-' + data.type + '-owner.dialog.no-members' | translate"></pre>
|
||||||
|
|
||||||
<form [formGroup]="searchForm">
|
<form [formGroup]="searchForm">
|
||||||
<div class="red-input-group search-container">
|
<div class="red-input-group search-container">
|
||||||
<input
|
<input
|
||||||
|
|||||||
@ -1,5 +1,9 @@
|
|||||||
@import '../../../assets/styles/red-mixins';
|
@import '../../../assets/styles/red-mixins';
|
||||||
|
|
||||||
|
.dialog-content {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.search-container {
|
.search-container {
|
||||||
width: 560px;
|
width: 560px;
|
||||||
margin-top: 16px;
|
margin-top: 16px;
|
||||||
@ -65,3 +69,11 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
margin-top: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mt-10 {
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|||||||
@ -358,7 +358,8 @@
|
|||||||
"members": "Members",
|
"members": "Members",
|
||||||
"save": "Save Changes",
|
"save": "Save Changes",
|
||||||
"cancel": "Cancel",
|
"cancel": "Cancel",
|
||||||
"search": "Search..."
|
"search": "Search...",
|
||||||
|
"no-members": "No members yet.\nSelect from the list below."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"project-member-guard": {
|
"project-member-guard": {
|
||||||
|
|||||||
@ -11,6 +11,11 @@ a {
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pre {
|
||||||
|
font-family: Inter, sans-serif;
|
||||||
|
color: $accent;
|
||||||
|
}
|
||||||
|
|
||||||
.heading-xl {
|
.heading-xl {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
@ -29,6 +34,12 @@ a {
|
|||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.info {
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 18px;
|
||||||
|
opacity: 0.7;
|
||||||
|
}
|
||||||
|
|
||||||
.page-title {
|
.page-title {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user