summaryrefslogtreecommitdiffstats
path: root/apps/theming
diff options
context:
space:
mode:
authorjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2022-12-28 11:32:42 +0100
committerjulia.kirschenheuter <julia.kirschenheuter@nextcloud.com>2023-01-20 09:32:32 +0100
commitd2e50baf29b261ceef2ac874eb539f7fcc624540 (patch)
tree4cb1ece21e8b0e1f2ddff2b57710d8c3e2f63917 /apps/theming
parent0df8fc011bff81371a2f7aee2e92d46610beb613 (diff)
downloadnextcloud-server-d2e50baf29b261ceef2ac874eb539f7fcc624540.tar.gz
nextcloud-server-d2e50baf29b261ceef2ac874eb539f7fcc624540.zip
Replace custom tooltips with native tooltips
Signed-off-by: julia.kirschenheuter <julia.kirschenheuter@nextcloud.com>
Diffstat (limited to 'apps/theming')
-rw-r--r--apps/theming/src/components/BackgroundSettings.vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/apps/theming/src/components/BackgroundSettings.vue b/apps/theming/src/components/BackgroundSettings.vue
index 36d249e4c51..578c01827a0 100644
--- a/apps/theming/src/components/BackgroundSettings.vue
+++ b/apps/theming/src/components/BackgroundSettings.vue
@@ -67,7 +67,8 @@
<!-- Background set selection -->
<button v-for="shippedBackground in shippedBackgrounds"
:key="shippedBackground.name"
- v-tooltip="shippedBackground.details.attribution"
+ :title="shippedBackground.details.attribution"
+ :aria-label="shippedBackground.details.attribution"
:class="{ 'icon-loading': loading === shippedBackground.name, active: background === shippedBackground.name }"
tabindex="0"
class="background"
@@ -85,15 +86,11 @@ import { prefixWithBaseUrl } from '../helpers/prefixWithBaseUrl.js'
import axios from '@nextcloud/axios'
import debounce from 'debounce'
import NcColorPicker from '@nextcloud/vue/dist/Components/NcColorPicker'
-import Tooltip from '@nextcloud/vue/dist/Directives/Tooltip'
const shippedBackgroundList = loadState('theming', 'shippedBackgrounds')
export default {
name: 'BackgroundSettings',
- directives: {
- Tooltip,
- },
components: {
NcColorPicker,