Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[23.1] move history and tool panel tooltips out of the way #16808

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions client/src/components/Common/DelayedInput.vue
Expand Up @@ -13,7 +13,7 @@
<b-input-group-append>
<b-button
v-if="enableAdvanced"
v-b-tooltip.hover.noninteractive
v-b-tooltip.hover.bottom.noninteractive
aria-haspopup="true"
size="sm"
:pressed="showAdvanced"
Expand All @@ -25,7 +25,7 @@
<icon v-else fixed-width icon="angle-double-down" />
</b-button>
<b-button
v-b-tooltip.hover.noninteractive
v-b-tooltip.hover.bottom.noninteractive
aria-haspopup="true"
class="search-clear"
size="sm"
Expand Down
Expand Up @@ -13,7 +13,7 @@
</DebouncedInput>
<b-input-group-append>
<b-button
v-b-tooltip.hover
v-b-tooltip.hover.bottom.noninteractive
aria-haspopup="true"
size="sm"
:pressed="showAdvanced"
Expand All @@ -26,7 +26,7 @@
<icon v-else fixed-width icon="angle-double-down" />
</b-button>
<b-button
v-b-tooltip.hover
v-b-tooltip.hover.bottom.noninteractive
aria-haspopup="true"
size="sm"
title="Clear Filters (esc)"
Expand Down
Expand Up @@ -7,7 +7,7 @@
<h2 class="m-1 h-sm">History</h2>
<b-button-group>
<b-button
v-b-tooltip.bottom.hover
v-b-tooltip.top.hover.noninteractive
class="create-hist-btn"
data-description="create new history"
size="sm"
Expand All @@ -19,7 +19,7 @@
</b-button>

<b-button
v-b-tooltip.bottom.hover
v-b-tooltip.top.hover.noninteractive
data-description="switch to another history"
size="sm"
variant="link"
Expand All @@ -30,7 +30,7 @@
</b-button>

<b-dropdown
v-b-tooltip.bottom.hover
v-b-tooltip.top.hover.noninteractive
size="sm"
variant="link"
toggle-class="text-decoration-none"
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Panels/Buttons/FavoritesButton.vue
@@ -1,6 +1,6 @@
<template>
<b-button
v-b-tooltip.hover.noninteractive
v-b-tooltip.hover.top.noninteractive
class="panel-header-button-toolbox"
size="sm"
variant="link"
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/Panels/Buttons/PanelViewButton.vue
@@ -1,6 +1,6 @@
<template>
<b-dropdown
v-b-tooltip.hover.noninteractive
v-b-tooltip.hover.top.noninteractive
right
title="Show panel options"
variant="link"
Expand Down