styling fixes
This commit is contained in:
parent
4a5735c8ba
commit
34f471fb30
|
@ -77,7 +77,7 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="row editor-content">
|
||||
<div class="col-12 col-md-3 pr-md-0">
|
||||
<div style="width: 22em;" class="d-flex flex-column">
|
||||
<div class="stepper-back row">
|
||||
<div class="col-auto d-flex align-items-center back-to-dmp" (click)="backToDmp(this.formGroup.get('dmpId').value)">
|
||||
<mat-icon class="back-icon pointer">chevron_left</mat-icon>
|
||||
|
@ -106,7 +106,10 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row mt-3 stepper-actions justify-content-around">
|
||||
|
||||
<div class="row mb-4">
|
||||
<div class="col-12">
|
||||
<div class="row mt-3 stepper-actions justify-content-center">
|
||||
<div class="col-auto mb-1">
|
||||
<div mat-raised-button type="button" class="previous stepper-btn mr-2" [ngClass]="{'previous-disabled': this.step === 0}" (click)="previousStep()">
|
||||
<span class="material-icons">chevron_left</span>
|
||||
|
@ -132,12 +135,14 @@
|
|||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="row mb-4 mt-4">
|
||||
<div class="col-12">
|
||||
<app-form-progress-indication class="mt-2" *ngIf="formGroup && !viewOnly" [formGroup]="formGroup" [checkVisibility]="true"></app-form-progress-indication>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-12 col-md form" id="description-editor-form">
|
||||
<app-description-base-fields-editor-component [hidden]="this.step !== 0" [formGroup]="formGroup" [description]="item" (formChanged)="formChanged()" (refresh)="fireRefreshDataEvent($event)"></app-description-base-fields-editor-component>
|
||||
<app-description-form
|
||||
|
|
|
@ -1,23 +1,14 @@
|
|||
// .percentage {
|
||||
// color: #212121;
|
||||
// opacity: 0.7;
|
||||
// font-weight: 400;
|
||||
// font-size: 0.875rem;
|
||||
// }
|
||||
|
||||
// .progress-bar {
|
||||
// border-radius: 20px;
|
||||
// height: 11px;
|
||||
|
||||
// }
|
||||
|
||||
// ::ng-deep .mat-progress-bar .mat-progress-bar-fill::after {
|
||||
// border-radius: 20px !important;
|
||||
// }
|
||||
.percentage {
|
||||
color: #212121;
|
||||
opacity: 0.7;
|
||||
font-weight: 400;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
// Bar container
|
||||
.progress-bar {
|
||||
--mdc-linear-progress-active-indicator-height: 11px !important;
|
||||
height: 11px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
|
|
|
@ -79,7 +79,7 @@
|
|||
|
||||
<div class="row">
|
||||
<!-- <div class="col-auto dmp-stepper" *ngIf="this.step != 0"> -->
|
||||
<div class="col-12 col-md-3 pr-md-0" *ngIf="this.step != 0">
|
||||
<div *ngIf="this.step != 0" style="width: 22em;" class="d-flex flex-column justify-content-center">
|
||||
<div class="row stepper-title">
|
||||
<div class="col-12 pl-0 mb-1">
|
||||
<span class="font-weight-bold">{{'DMP-EDITOR.TITLE' | translate}}</span>
|
||||
|
@ -120,7 +120,10 @@
|
|||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row justify-content-around" *ngIf="this.step !== 0">
|
||||
|
||||
<div class="row mt-auto">
|
||||
<div class="col-12">
|
||||
<div class="row justify-content-center" *ngIf="this.step !== 0">
|
||||
<div class="col-auto mb-1">
|
||||
<div mat-raised-button type="button" class="previous stepper-btn mr-2" [ngClass]="{'previous-disabled': this.step === 1}" (click)="previousStep()">
|
||||
<span class="material-icons">chevron_left</span>
|
||||
|
@ -140,6 +143,8 @@
|
|||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-12 col-md form" id="editor-form" *ngIf="this.step !== 0">
|
||||
<div *ngIf="selectedBlueprint?.definition">
|
||||
|
|
|
@ -1,24 +1,15 @@
|
|||
// .percentage {
|
||||
// color: #212121;
|
||||
// opacity: 0.7;
|
||||
// font-weight: 400;
|
||||
// font-size: 0.875rem;
|
||||
// }
|
||||
|
||||
// .progress-bar {
|
||||
// border-radius: 20px;
|
||||
// height: 11px;
|
||||
|
||||
// }
|
||||
|
||||
// ::ng-deep .mat-progress-bar .mat-progress-bar-fill::after {
|
||||
// border-radius: 20px !important;
|
||||
// }
|
||||
.percentage {
|
||||
color: #212121;
|
||||
opacity: 0.7;
|
||||
font-weight: 400;
|
||||
font-size: 0.875rem;
|
||||
}
|
||||
|
||||
|
||||
// Bar container
|
||||
.progress-bar {
|
||||
--mdc-linear-progress-active-indicator-height: 11px !important;
|
||||
height: 11px;
|
||||
border-radius: 20px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue