Adds comment for custom template, removes add dataset & updates style for dataset-info
This commit is contained in:
parent
bcbb9ba606
commit
74099ecabc
|
@ -32,9 +32,8 @@
|
|||
<mat-error *ngIf="formGroup.get('profile').hasError('backendError')">{{formGroup.get('profile').getError('backendError').message}}</mat-error>
|
||||
</mat-form-field>
|
||||
</div>
|
||||
<div class="col pb-3 d-flex">
|
||||
<span class="not-found">{{'DMP-EDITOR.DATASET-INFO.FIND' | translate}}</span>
|
||||
<span class="insert" (click)="addDataset(dmp.id)">{{'DMP-EDITOR.ACTIONS.CREATE-DATASET' | translate}}</span>
|
||||
<div class="col pl-0 pt-2 pb-3 d-flex">
|
||||
<span class="not-found">{{'QUICKWIZARD.CREATE-ADD.CREATE.QUICKWIZARD_CREATE.SECOND-STEP.FIELDS.HELP' | translate}}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -59,19 +59,10 @@
|
|||
color: #00b29f !important;
|
||||
}
|
||||
|
||||
.insert {
|
||||
text-decoration: underline;
|
||||
color: #00b29f;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
.not-found {
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
font-weight: 400;
|
||||
padding: 0rem 0.5rem 0rem 0rem;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 400;
|
||||
padding: 0rem 0.5rem 0rem 0rem;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -83,3 +74,11 @@
|
|||
font-size: 1rem;
|
||||
padding: 0.6em 0 1em 0 !important;
|
||||
}
|
||||
|
||||
::ng-deep .profile-form .mat-form-field-wrapper {
|
||||
padding-bottom: 0rem;
|
||||
}
|
||||
|
||||
:host ::ng-deep .multiple-auto-complete .align-arrow-right {
|
||||
bottom: 1rem !important;
|
||||
}
|
|
@ -197,7 +197,4 @@ export class DatasetInfoComponent extends BaseComponent implements OnInit {
|
|||
});
|
||||
}
|
||||
|
||||
addDataset(id: String) {
|
||||
this.router.navigate(['/datasets/new/' + id]);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue