minor ui fixes
This commit is contained in:
parent
f68a657b82
commit
114694e0bd
|
@ -64,7 +64,7 @@
|
|||
{{'TENANT-CONFIGURATION-EDITOR.ACTIONS.RESET-TO-DEFAULT' | translate}}
|
||||
</button>
|
||||
</div>
|
||||
<div class="ml-auto col-auto"><button mat-button class="rounded-btn primary" (click)="formSubmit()">
|
||||
<div class="col-auto"><button mat-button class="rounded-btn primary" (click)="formSubmit()">
|
||||
{{'TENANT-CONFIGURATION-EDITOR.ACTIONS.SAVE' | translate}}
|
||||
</button>
|
||||
</div>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
</div>
|
||||
</ng-container>
|
||||
</div>
|
||||
<div *ngIf="this.nowEditing" class="pl-0 col-8">
|
||||
<div *ngIf="this.nowEditing" class="pl-0 mt-4 col-8">
|
||||
<mat-form-field class="w-100">
|
||||
<mat-select formControlName="roles" [panelWidth]="auto" multiple required>
|
||||
<mat-option *ngIf="!hasTenantAdminMode" [value]="appRole.Admin">{{enumUtils.toAppRoleString(appRole.Admin)}}</mat-option>
|
||||
|
@ -36,12 +36,12 @@
|
|||
</mat-form-field>
|
||||
</div>
|
||||
|
||||
<div *ngIf="!this.nowEditing" class="col-2 p-0">
|
||||
<div *ngIf="!this.nowEditing" class="col-auto p-0 dense-3">
|
||||
<button mat-icon-button color="primary" type="button" (click)="editItem()" matTooltip="{{'USER-LISTING.ACTIONS.EDIT' | translate}}">
|
||||
<mat-icon>edit</mat-icon>
|
||||
</button>
|
||||
</div>
|
||||
<div *ngIf="this.nowEditing" class="col-2 p-0">
|
||||
<div *ngIf="this.nowEditing" class="col-auto p-0 dense-3">
|
||||
<button mat-icon-button color="primary" type="submit" matTooltip="{{'USER-LISTING.ACTIONS.SAVE' | translate}}">
|
||||
<mat-icon>save</mat-icon>
|
||||
</button>
|
||||
|
|
|
@ -4,8 +4,6 @@
|
|||
justify-content: space-between;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
.select-role {
|
||||
}
|
||||
|
||||
.roles {
|
||||
min-width: 90px;
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
<!-- End of Guided Tour -->
|
||||
<!-- Search Filter-->
|
||||
<div class="col-12 col-xl-auto">
|
||||
<app-text-filter suffixIcon="search" floatLabel="never" placeholder="{{'GENERAL.CRITERIA.LIKE'| translate}}" [(value)]=lookup.like (valueChange)="controlModified()" />
|
||||
<app-text-filter suffixIcon="search" floatLabel="never" placeholder="{{'GENERAL.CRITERIA.LIKE'| translate}}" [(value)]=lookup.like (valueChange)="controlModified()"></app-text-filter>
|
||||
</div>
|
||||
<!-- End of Search Filter -->
|
||||
</div>
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
<span *ngIf="!isPublic" class="center-content" (click)="restartTour()">{{ 'GENERAL.ACTIONS.TAKE-A-TOUR'| translate }}</span>
|
||||
</div>
|
||||
<div class="col-12 col-xl-auto">
|
||||
<app-text-filter suffixIcon="search" floatLabel="never" placeholder="{{'GENERAL.CRITERIA.LIKE'| translate}}" [(value)]=lookup.like (valueChange)="controlModified()" />
|
||||
<app-text-filter suffixIcon="search" floatLabel="never" placeholder="{{'GENERAL.CRITERIA.LIKE'| translate}}" [(value)]=lookup.like (valueChange)="controlModified()"></app-text-filter>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<mat-form-field subscriptSizing="dynamic" [floatLabel]="floatLabel">
|
||||
<mat-form-field subscriptSizing="dynamic" [floatLabel]="floatLabel" class="w-100">
|
||||
<mat-icon *ngIf="suffixIcon" matSuffix>{{suffixIcon}}</mat-icon>
|
||||
<mat-label *ngIf="label">{{label}}</mat-label>
|
||||
<input autocomplete="nope" matInput class="search-box" [placeholder]="textPlaceholder" [(ngModel)]="inputValue">
|
||||
|
|
Loading…
Reference in New Issue