Skip to content

Commit

Permalink
[#633] Add some accessibility to three dot menu
Browse files Browse the repository at this point in the history
Signed-off-by: Marius David Wieschollek <[email protected]>
  • Loading branch information
marius-wieschollek committed Jan 27, 2024
1 parent 9c07c57 commit 4ee53e5
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 41 deletions.
76 changes: 38 additions & 38 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ncpasswords",
"version": "2024.1.1",
"version": "2024.2.0",
"description": "Easy to use yet feature-rich and secure password manager for Nextcloud",
"private": true,
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions src/vue/Line/Password.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@
</router-link>
<shield-half-full-icon :size="20" :fill-color="securityColor" :title="securityTitle" v-else/>
<i v-if="hasCustomAction" @click="runCustomAction" class="action-button fa" :class="customActionClass"></i>
<div class="more" @click="toggleMenu($event)">
<i class="fa fa-ellipsis-h"></i>
<div class="more" @click="toggleMenu($event)" :aria-label="t('More')" :title="t('More')">
<i class="fa fa-ellipsis-h" :aria-label="t('More')" :title="t('More')">
<a href="#" :aria-label="t('More')" :title="t('More')" @click.stop.prevent="toggleMenu($event)"></a>
</i>
<div class="passwordActionsMenu popovermenu bubble menu" :class="{ open: showMenu }">
<slot name="menu">
<ul>
Expand Down

0 comments on commit 4ee53e5

Please sign in to comment.