Thomas Willems
1 year ago
committed by
Philip H
No known key found for this signature in database
GPG Key ID: DA39C2199C603FA5
2 changed files with
7 additions and
2 deletions
src/www/css/app.css
src/www/index.html
@ -1371,6 +1371,11 @@ video {
transition-duration : 150ms ;
transition-duration : 150ms ;
}
}
. disabled-link {
opacity : 0 . 25 ;
cursor : default ;
}
. duration-200 {
. duration-200 {
transition-duration : 200ms ;
transition-duration : 200ms ;
}
}
@ -258,7 +258,7 @@
class="align-middle bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition"
class="align-middle bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition"
:class="{
:class="{
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig,
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig,
'inactive ': !client.downloadableConfig
'opacity-25 ': !client.downloadableConfig
}"
}"
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('showQR')"
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('showQR')"
@click="qrcode = `./api/wireguard/client/${client.id}/qrcode.svg`">
@click="qrcode = `./api/wireguard/client/${client.id}/qrcode.svg`">
@ -276,7 +276,7 @@
class="align-middle inline-block bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition"
class="align-middle inline-block bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition"
:class="{
:class="{
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig,
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig,
'inactive ': !client.downloadableConfig
'disabled-link ': !client.downloadableConfig
}"
}"
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('downloadConfig')"
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('downloadConfig')"
@click="if(!client.downloadableConfig) { $event.preventDefault(); }">
@click="if(!client.downloadableConfig) { $event.preventDefault(); }">