Fixes style on title of dataset temlate preview and adds margin on expansion panels
This commit is contained in:
parent
d27f8301c6
commit
45979922d5
|
@ -20,7 +20,7 @@ export class DatasetEditorComponent extends BaseComponent {
|
|||
@Input() availableProfiles: DatasetProfileModel[];
|
||||
@Input() dmpId: string;
|
||||
showUri: boolean = false;
|
||||
dmpText: string;
|
||||
dmpText: string = null;
|
||||
viewOnly = false;
|
||||
|
||||
constructor(
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<div class="template-container">
|
||||
<div mat-dialog-title class="row d-flex m-0 header">
|
||||
<span class="template-title align-self-center">{{'DMP-LISTING.COLUMNS.PROFILE' | translate}} - {{data.template.label}}</span>
|
||||
<span class="template-title align-self-center" matTooltip="{{data.template.label}}">{{'DMP-LISTING.COLUMNS.PROFILE' | translate}} - {{data.template.label}}</span>
|
||||
<span class="ml-auto align-self-center" (click)="closeDialog()"><mat-icon class="close-icon">close</mat-icon></span>
|
||||
</div>
|
||||
<div *ngIf="progressIndication" class="progress-bar">
|
||||
|
|
|
@ -10,6 +10,10 @@
|
|||
|
||||
.template-title {
|
||||
margin-left: 37px;
|
||||
white-space: nowrap;
|
||||
width: 480px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.close-icon {
|
||||
|
|
|
@ -2,6 +2,8 @@
|
|||
.expansion-panel {
|
||||
// background-color: #eeeeee54;
|
||||
background-color: white;
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
// margin-bottom: 1em;
|
||||
}
|
||||
.addOneFieldButton {
|
||||
|
|
Loading…
Reference in New Issue