mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Merge pull request #484 from YunoHost/fix-domain
[fix] domain apps styling and tooltip trigger method
This commit is contained in:
commit
dbb17155c3
2 changed files with 18 additions and 16 deletions
|
@ -11,7 +11,7 @@
|
||||||
</b-button>
|
</b-button>
|
||||||
<b-popover
|
<b-popover
|
||||||
placement="auto"
|
placement="auto"
|
||||||
:target="id" triggers="click" custom-class="explain-what-popover"
|
:target="id" triggers="focus" custom-class="explain-what-popover"
|
||||||
:variant="variant" :title="title"
|
:variant="variant" :title="title"
|
||||||
>
|
>
|
||||||
<span v-html="content" />
|
<span v-html="content" />
|
||||||
|
|
|
@ -57,9 +57,10 @@
|
||||||
|
|
||||||
<!-- DOMAIN APPS -->
|
<!-- DOMAIN APPS -->
|
||||||
<description-row :term="$t('domain.info.apps_on_domain')">
|
<description-row :term="$t('domain.info.apps_on_domain')">
|
||||||
|
<div>
|
||||||
<b-button-group
|
<b-button-group
|
||||||
v-for="app in domain.apps" :key="app.id"
|
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 }}">
|
<b-button class="py-0 font-weight-bold" variant="outline-dark" :to="{ name: 'app-info', params: { id: app.id }}">
|
||||||
{{ app.name }}
|
{{ app.name }}
|
||||||
|
@ -74,6 +75,7 @@
|
||||||
</b-button-group>
|
</b-button-group>
|
||||||
|
|
||||||
{{ domain.apps.length ? '' : $t('words.none') }}
|
{{ domain.apps.length ? '' : $t('words.none') }}
|
||||||
|
</div>
|
||||||
</description-row>
|
</description-row>
|
||||||
</card>
|
</card>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue