Merge pull request #484 from YunoHost/fix-domain

[fix] domain apps styling and tooltip trigger method
This commit is contained in:
Alexandre Aubin 2022-10-31 13:23:08 +01:00 committed by GitHub
commit dbb17155c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 16 deletions

View file

@ -11,7 +11,7 @@
</b-button>
<b-popover
placement="auto"
:target="id" triggers="click" custom-class="explain-what-popover"
:target="id" triggers="focus" custom-class="explain-what-popover"
:variant="variant" :title="title"
>
<span v-html="content" />

View file

@ -57,9 +57,10 @@
<!-- DOMAIN APPS -->
<description-row :term="$t('domain.info.apps_on_domain')">
<div>
<b-button-group
v-for="app in domain.apps" :key="app.id"
size="sm" class="mr-2"
size="sm" class="mr-2 mb-2"
>
<b-button class="py-0 font-weight-bold" variant="outline-dark" :to="{ name: 'app-info', params: { id: app.id }}">
{{ app.name }}
@ -74,6 +75,7 @@
</b-button-group>
{{ domain.apps.length ? '' : $t('words.none') }}
</div>
</description-row>
</card>