Thomas Willems
1 year ago
Failed to extract signature
3 changed files with
4 additions and
4 deletions
-
src/tailwind.config.js
-
src/www/css/app.css
-
src/www/index.html
|
|
@ -8,7 +8,7 @@ module.exports = { |
|
|
|
plugins: [ |
|
|
|
function addDisabledClass({ addUtilities }) { |
|
|
|
const newUtilities = { |
|
|
|
'.is-disabled': { |
|
|
|
'.inactive': { |
|
|
|
opacity: '0.25', |
|
|
|
cursor: 'default', |
|
|
|
}, |
|
|
|
|
|
@ -1350,7 +1350,7 @@ video { |
|
|
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1); |
|
|
|
} |
|
|
|
|
|
|
|
.is-disabled { |
|
|
|
.inactive { |
|
|
|
opacity: 0.25; |
|
|
|
cursor: default; |
|
|
|
} |
|
|
|
|
|
@ -218,7 +218,7 @@ |
|
|
|
class="align-middle bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition" |
|
|
|
:class="{ |
|
|
|
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig, |
|
|
|
'is-disabled': !client.downloadableConfig |
|
|
|
'inactive': !client.downloadableConfig |
|
|
|
}" |
|
|
|
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('showQR')" |
|
|
|
@click="qrcode = `./api/wireguard/client/${client.id}/qrcode.svg`"> |
|
|
@ -236,7 +236,7 @@ |
|
|
|
class="align-middle inline-block bg-gray-100 dark:bg-neutral-600 dark:text-neutral-300 p-2 rounded transition" |
|
|
|
:class="{ |
|
|
|
'hover:bg-red-800 dark:hover:bg-red-800 hover:text-white dark:hover:text-white': client.downloadableConfig, |
|
|
|
'is-disabled': !client.downloadableConfig |
|
|
|
'inactive': !client.downloadableConfig |
|
|
|
}" |
|
|
|
:title="!client.downloadableConfig ? $t('noPrivKey') : $t('downloadConfig')" |
|
|
|
@click="if(!client.downloadableConfig) { $event.preventDefault(); }"> |
|
|
|