minor fixes

This commit is contained in:
Denys Vuika
2023-02-11 18:00:37 -05:00
committed by Yasa-Nataliya
parent 243eb9ffae
commit 2bdf7b96e1
5 changed files with 8 additions and 19 deletions

View File

@@ -3,6 +3,7 @@
z-index: 2; z-index: 2;
.mat-toolbar { .mat-toolbar {
background-image: var(--header-background-image) !important;
background-repeat: no-repeat !important; background-repeat: no-repeat !important;
.aca-current-user { .aca-current-user {

View File

@@ -8,7 +8,7 @@
<button mat-icon-button class="app-search-button" (click)="searchByOption()" [title]="'SEARCH.BUTTON.TOOLTIP' | translate"> <button mat-icon-button class="app-search-button" (click)="searchByOption()" [title]="'SEARCH.BUTTON.TOOLTIP' | translate">
<mat-icon [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon> <mat-icon [attr.aria-label]="'SEARCH.BUTTON.ARIA-LABEL' | translate">search</mat-icon>
</button> </button>
<mat-form-field class="app-input-form-field" [floatLabel]="'never'"> <mat-form-field class="app-input-form-field" [floatLabel]="'never'">
<input <input
matInput matInput
[attr.aria-label]="'SEARCH.INPUT.ARIA-LABEL' | translate" [attr.aria-label]="'SEARCH.INPUT.ARIA-LABEL' | translate"
@@ -22,7 +22,7 @@
<mat-icon>arrow_drop_down</mat-icon> <mat-icon>arrow_drop_down</mat-icon>
</div> </div>
<button mat-icon-button matSuffix class="app-suffix-search-icon-wrapper app-close-icon" (click)="exitSearch()" (keypressk)="exitSearch()"> <button mat-icon-button matSuffix class="app-suffix-search-icon-wrapper app-close-icon" (click)="exitSearch()">
<mat-icon>close</mat-icon> <mat-icon>close</mat-icon>
</button> </button>
</mat-form-field> </mat-form-field>

View File

@@ -17,7 +17,7 @@
<ng-container *ngIf="item.children && item.children.length"> <ng-container *ngIf="item.children && item.children.length">
<mat-expansion-panel <mat-expansion-panel
[expanded]="acaExpansionPanel.isItemExpanded()" [expanded]="acaExpansionPanel.isItemExpanded()"
[acaExpansionPanel]="item" [acaExpansionPanel]="item"
#acaExpansionPanel="acaExpansionPanel" #acaExpansionPanel="acaExpansionPanel"
[@.disabled]="true" [@.disabled]="true"

View File

@@ -13,12 +13,7 @@
{{ appName$ | async | translate }} {{ appName$ | async | translate }}
</div> </div>
<div class="sidenav-header-notification"> <adf-notification-history></adf-notification-history>
<adf-notification-history></adf-notification-history> <app-navigation-menu></app-navigation-menu>
</div>
<div class="sidenav-header-menu-icon">
<app-navigation-menu></app-navigation-menu>
</div>
</div> </div>
</div> </div>

View File

@@ -25,6 +25,7 @@
} }
&-text { &-text {
flex: 1;
color: var(--theme-selected-text-color); color: var(--theme-selected-text-color);
padding-left: 32px; padding-left: 32px;
letter-spacing: 0.25px; letter-spacing: 0.25px;
@@ -34,14 +35,6 @@
cursor: pointer; cursor: pointer;
} }
} }
&-menu-icon {
transform: scale(1.2);
}
&-notification {
padding-left: 63px;
}
} }
.section:last-child { .section:last-child {