diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2023-01-28 22:59:40 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2023-01-28 22:59:40 +0000 |
| commit | a08378253fe8ca72d178b19c5d45da21100cfe71 (patch) | |
| tree | ae8f50884a933c7512b8aaf52d36233383098c75 /src/components/desktop_nav | |
| parent | 2635e24679b8f3492ba9056f35d0964749eb9867 (diff) | |
| parent | 1ab958ba6b0ad1e1449fd8fe6b0bc8729520ce12 (diff) | |
Merge branch 'tusooa/topbar-alttext' into 'develop'
Accessibility fixes for panel headers/top bar
See merge request pleroma/pleroma-fe!1772
Diffstat (limited to 'src/components/desktop_nav')
| -rw-r--r-- | src/components/desktop_nav/desktop_nav.vue | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/components/desktop_nav/desktop_nav.vue b/src/components/desktop_nav/desktop_nav.vue index 92622cf9..dc8bbfd3 100644 --- a/src/components/desktop_nav/desktop_nav.vue +++ b/src/components/desktop_nav/desktop_nav.vue @@ -20,6 +20,7 @@ class="logo" :to="{ name: 'root' }" :style="logoBgStyle" + :title="sitename" > <div class="mask" @@ -38,13 +39,13 @@ /> <button class="button-unstyled nav-icon" + :title="$t('nav.preferences')" @click.stop="openSettingsModal" > <FAIcon fixed-width class="fa-scale-110 fa-old-padding" icon="cog" - :title="$t('nav.preferences')" /> </button> <a @@ -52,26 +53,26 @@ href="/pleroma/admin/#/login-pleroma" class="nav-icon" target="_blank" + :title="$t('nav.administration')" @click.stop > <FAIcon fixed-width class="fa-scale-110 fa-old-padding" icon="tachometer-alt" - :title="$t('nav.administration')" /> </a> <span class="spacer" /> <button v-if="currentUser" class="button-unstyled nav-icon" + :title="$t('login.logout')" @click.stop.prevent="logout" > <FAIcon fixed-width class="fa-scale-110 fa-old-padding" icon="sign-out-alt" - :title="$t('login.logout')" /> </button> </div> |
