Skip to content

Commit

Permalink
Disable tooltips for now
Browse files Browse the repository at this point in the history
  • Loading branch information
raimund-schluessler committed Apr 22, 2022
1 parent 901468a commit d3ec2bd
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 22 deletions.
10 changes: 0 additions & 10 deletions src/components/AppNavigation/ListItemCalendar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
{{ t('tasks', 'Export') }}
</ActionLink>
<ActionButton v-if="!calendar.readOnly || calendar.isSharedWithMe"
v-tooltip="{
placement: 'left',
boundariesElement: 'body',
content: deleteMessage
}"
@click="scheduleDelete">
<template v-if="!calendar.isSharedWithMe" #icon>
<Delete :size="20" />
Expand All @@ -112,11 +107,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<div v-if="!deleteTimeout" :class="{error: nameError}" class="app-navigation-entry-edit">
<form>
<input v-model="newCalendarName"
v-tooltip="{
content: tooltipMessage,
show: showTooltip('list_' + calendar.id),
trigger: 'manual'
}"
class="edit"
type="text"
@keyup="checkName($event, calendar, save)">
Expand Down
4 changes: 2 additions & 2 deletions src/components/DeleteCompletedModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<progress :max="initialCompletedTasksCount" :value="progress" class="delete-completed__progress" />
<p class="delete-completed__tracker">
<span>{{ percentage }} %</span>
<span v-if="failed === 0">
<!-- <span v-if="failed === 0">
{{ t('tasks', 'No errors') }}
</span>
<span v-else v-tooltip.auto="t('tasks', 'Open your browser console for more details')">
{{ n('tasks', 'Could not delete {failedCount} task.', 'Could not delete {failedCount} tasks.', failed, { failedCount: failed }) }}
</span>
</span> -->
</p>
</div>
</div>
Expand Down
5 changes: 0 additions & 5 deletions src/components/SortorderDropdown.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
</template>
<ActionButton v-for="order in orders"
:key="order.id"
v-tooltip="{
placement: 'left',
content: order.hint,
delay: { show: 500, hide: 0 }
}"
class="reactive"
:class="{selected: sortOrder === order.id}"
:close-after-click="true"
Expand Down
5 changes: 0 additions & 5 deletions src/views/AppNavigation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
<form>
<input id="newListInput"
v-model="newCalendarName"
v-tooltip="{
content: tooltipMessage,
show: showTooltip('list_'),
trigger: 'manual'
}"
:placeholder="t('tasks', 'New List')"
class="edit"
type="text"
Expand Down

0 comments on commit d3ec2bd

Please sign in to comment.