[ACS-5539] Icon and pressed state of buttons updated as per the figma (#3449)

* Updated the icon as per the figma

* pressed state for buttons updated

* review comments resolved

* Resolved the review comments
This commit is contained in:
pkunduGL
2023-09-27 18:52:16 +05:30
committed by GitHub
parent ce543ff483
commit c5f1e22740
2 changed files with 17 additions and 1 deletions

View File

@@ -5,6 +5,12 @@ app-details-manager {
outline: none;
border-radius: 4px;
&:focus {
background-color: var(--theme-selected-background-color);
outline: 2px solid var(--theme-blue-button-color);
border-radius: 4px;
}
&:focus-visible {
outline: 2px solid var(--theme-blue-button-color);
border-radius: 4px;

View File

@@ -44,9 +44,19 @@ import { MatIconModule } from '@angular/material/icon';
[attr.title]="'APP.ACTIONS.DETAILS' | translate"
(click)="onClick()"
>
<mat-icon>menu_open</mat-icon>
<mat-icon>view_sidebar</mat-icon>
</button>
`,
styles: [
`
.app-toggle-info-drawer button:focus {
border: 2px solid var(--theme-blue-button-color);
border-radius: 6px;
outline: none;
background-color: var(--theme-selected-background-color);
}
`
],
encapsulation: ViewEncapsulation.None,
host: { class: 'app-toggle-info-drawer' }
})