mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[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:
@@ -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;
|
||||
|
@@ -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' }
|
||||
})
|
||||
|
Reference in New Issue
Block a user