Skip to content

Commit

Permalink
perf: topmenu tooltip delay #399
Browse files Browse the repository at this point in the history
  • Loading branch information
WDaan committed Apr 17, 2022
1 parent 4b90d56 commit 2d5ad9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/components/Navbar/TopActions.vue
@@ -1,6 +1,6 @@
<template>
<div :class="mobile ? '' : 'flex-shrink-0 ml-0'">
<v-tooltip bottom>
<v-tooltip bottom open-delay="400">
<template #activator="{ on }">
<v-btn
:text="!mobile"
Expand All @@ -19,7 +19,7 @@
</template>
<span> {{ $t('navbar.topActions.addTorrent') | titleCase }}</span>
</v-tooltip>
<v-tooltip bottom>
<v-tooltip bottom open-delay="400">
<template #activator="{ on }">
<v-btn
small
Expand All @@ -37,7 +37,7 @@
</template>
<span>{{ $t('navbar.topActions.resumeSelected') | titleCase }}</span>
</v-tooltip>
<v-tooltip bottom>
<v-tooltip bottom open-delay="400">
<template #activator="{ on }">
<v-btn
small
Expand All @@ -55,7 +55,7 @@
</template>
<span> {{ $t('navbar.topActions.pauseSelected') | titleCase }}</span>
</v-tooltip>
<v-tooltip bottom>
<v-tooltip bottom open-delay="400">
<template #activator="{ on }">
<v-btn
small
Expand All @@ -73,7 +73,7 @@
</template>
<span> {{ $t('navbar.topActions.removeSelected') | titleCase }}</span>
</v-tooltip>
<v-tooltip bottom>
<v-tooltip bottom open-delay="400">
<template #activator="{ on }">
<v-btn
:text="!mobile"
Expand All @@ -92,7 +92,7 @@
</template>
<span>{{ $t('navbar.topActions.searchNew') | titleCase }}</span>
</v-tooltip>
<v-tooltip bottom>
<v-tooltip bottom open-delay="400">
<template #activator="{ on }">
<v-btn
small
Expand Down

0 comments on commit 2d5ad9d

Please sign in to comment.