Styles: paginator position Dmp listing, Translates: Dmp listing
This commit is contained in:
parent
7414853a2e
commit
caa6be46d8
|
@ -40,7 +40,7 @@
|
|||
<div *ngIf="showProject" class="col-10 filter-category">
|
||||
<h6 class="category-title">{{ 'DMP-RELATED-COLLABORATOR.RELATED-COLLABORATOR' | translate}}</h6>
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Select collaborators">
|
||||
<input matInput placeholder="{{ 'DMP-RELATED-COLLABORATOR.SELECT-COLLABORATORS' | translate }}">
|
||||
<!-- <app-multiple-auto-complete [formControl]="formGroup.get('projects')"
|
||||
placeholder="{{'CRITERIA.DMP.SELECT-PROJECTS' | translate}}"
|
||||
[configuration]="projectAutoCompleteConfiguration">
|
||||
|
@ -63,9 +63,9 @@
|
|||
|
||||
<!-- Related Organization Filter -->
|
||||
<div *ngIf="showProject" class="col-10 filter-category">
|
||||
<h6 class="category-title">RELATED ORGANIZATION</h6>
|
||||
<h6 class="category-title">{{ 'DMP-RELATED-ORGANIZATION.RELATED-ORGANIZATION' | translate }}</h6>
|
||||
<mat-form-field>
|
||||
<input matInput placeholder="Select Organizations">
|
||||
<input matInput placeholder="{{ 'DMP-RELATED-ORGANIZATION.SELECT-ORGANIZATIONS' | translate }}">
|
||||
<!-- <app-multiple-auto-complete [formControl]="formGroup.get('projects')"
|
||||
placeholder="Select Organizations"
|
||||
[configuration]="projectAutoCompleteConfiguration">
|
||||
|
|
|
@ -17,6 +17,26 @@
|
|||
}
|
||||
}
|
||||
|
||||
.search ::ng-deep.mat-form-field-infix {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.filter-category {
|
||||
background-color: #f6f6f6;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
|
||||
.category-title {
|
||||
color: #2e75b6;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.import {
|
||||
margin: 10px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.filters {
|
||||
border: 1px solid #e4e4e4;
|
||||
border-radius: 5px;
|
||||
|
@ -94,23 +114,3 @@
|
|||
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
|
||||
background-color: #2e74b649;
|
||||
}
|
||||
|
||||
.search ::ng-deep.mat-form-field-infix {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.filter-category {
|
||||
background-color: #f6f6f6;
|
||||
margin: 5px 0px;
|
||||
}
|
||||
|
||||
.category-title {
|
||||
color: #2e75b6;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.import {
|
||||
margin: 10px;
|
||||
padding: 0px;
|
||||
}
|
||||
|
|
|
@ -46,16 +46,9 @@ export class DmpCriteriaComponent extends BaseCriteriaComponent implements OnIni
|
|||
public projectService: ProjectService,
|
||||
private dmpService: DmpService,
|
||||
public formBuilder: FormBuilder,
|
||||
private dialog: MatDialog,
|
||||
fb: FormBuilder
|
||||
private dialog: MatDialog
|
||||
) {
|
||||
super(new ValidationErrorModel());
|
||||
this.options = fb.group({
|
||||
getDrafts: false,
|
||||
getFinalized: false,
|
||||
getDmpStatuses: false,
|
||||
floatLabel: 'auto',
|
||||
});
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
|
|
|
@ -2,6 +2,15 @@
|
|||
.mat-card {
|
||||
margin: 1em 0;
|
||||
}
|
||||
|
||||
.col-9 {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
::ng-deep .mat-paginator {
|
||||
margin-top: auto;
|
||||
}
|
||||
|
||||
::ng-deep .mat-paginator-container {
|
||||
|
|
|
@ -321,7 +321,8 @@
|
|||
"ACTIONS": {
|
||||
"EDIT": "Edit",
|
||||
"MAKE-IT-PUBLIC": "Make it public",
|
||||
"VIEW": "View"
|
||||
"VIEW": "View",
|
||||
"NEW": "New Dataset Description"
|
||||
}
|
||||
},
|
||||
"DATASET-PUBLIC-LISTING": {
|
||||
|
@ -497,7 +498,8 @@
|
|||
"USERS": {
|
||||
"LABEL": "Search",
|
||||
"ROLE": "Role"
|
||||
}
|
||||
},
|
||||
"SELECT": "Select an option"
|
||||
},
|
||||
"DATASET-EDITOR": {
|
||||
"TITLE": {
|
||||
|
@ -641,7 +643,12 @@
|
|||
"RELATED-PROJECT": "Related Project"
|
||||
},
|
||||
"DMP-RELATED-COLLABORATOR": {
|
||||
"RELATED-COLLABORATOR": "Related Collaborator"
|
||||
"RELATED-COLLABORATOR": "Related Collaborator",
|
||||
"SELECT-COLLABORATORS": "Select Collaborators"
|
||||
},
|
||||
"DMP-RELATED-ORGANIZATION": {
|
||||
"RELATED-ORGANIZATION": "Related Organization",
|
||||
"SELECT-ORGANIZATIONS": "Select Organizations"
|
||||
},
|
||||
"DATASET-PROFILE": {
|
||||
"PREVIEW": "Preview",
|
||||
|
|
Loading…
Reference in New Issue