[ACS-10885] Dashboard: Non-descriptive announcement of the Company Logo button (#4975)

This commit is contained in:
dominikiwanekhyland
2026-01-12 11:27:49 +01:00
committed by GitHub
parent fd81a29d51
commit 5799cddd03
3 changed files with 13 additions and 6 deletions
+1
View File
@@ -472,6 +472,7 @@
}, },
"TOOLTIPS": { "TOOLTIPS": {
"COLLAPSE_NAVIGATION": "Collapse navigation menu", "COLLAPSE_NAVIGATION": "Collapse navigation menu",
"COLLAPSE_NAVIGATION_ALT": "Collapse navigation menu icon",
"OPTIONS_SETTINGS": "Options and settings", "OPTIONS_SETTINGS": "Options and settings",
"MY_PROFILE": "My profile", "MY_PROFILE": "My profile",
"EXPAND_NAVIGATION": "Expand navigation menu", "EXPAND_NAVIGATION": "Expand navigation menu",
@@ -1,15 +1,18 @@
<div class="aca-sidenav-header" data-automation-id="app-sidenav-header"> <div class="aca-sidenav-header" data-automation-id="app-sidenav-header">
<div class="aca-sidenav-header-title" data-automation-id="app-sidenav-header-title"> <div class="aca-sidenav-header-title" data-automation-id="app-sidenav-header-title">
<div class="aca-sidenav-header-title-logo" <button
tabindex=0 class="aca-sidenav-header-title-logo"
data-automation-id="app-sidenav-header-title-logo" data-automation-id="app-sidenav-header-title-logo"
(click)="toggleNavBar.emit()" (click)="toggleNavBar.emit()"
(keypress)="toggleNavBar.emit()"> (keypress)="toggleNavBar.emit()"
[attr.aria-label]="'APP.TOOLTIPS.COLLAPSE_NAVIGATION' | translate">
<img <img
src="{{ logoUrl }}" src="{{ logoUrl }}"
title="{{'APP.TOOLTIPS.COLLAPSE_NAVIGATION' | translate}}" title="{{ 'APP.TOOLTIPS.COLLAPSE_NAVIGATION' | translate }}"
alt="{{ 'CORE.HEADER.LOGO_ARIA' | translate }}" /> alt="{{ 'APP.TOOLTIPS.COLLAPSE_NAVIGATION_ALT' | translate }}"
</div> aria-hidden="true"
/>
</button>
<div <div
class="aca-sidenav-header-title-text" class="aca-sidenav-header-title-text"
@@ -19,6 +19,9 @@
padding: 0 24px; padding: 0 24px;
&-logo { &-logo {
background: transparent;
border: none;
img { img {
cursor: pointer; cursor: pointer;
height: 28px; height: 28px;