Browse Source

rename is-disabled to inactive

pull/793/head
Thomas Willems 1 year ago
parent
commit
4aa6f99b04
Failed to extract signature
  1. 2
      src/tailwind.config.js
  2. 2
      src/www/css/app.css
  3. 4
      src/www/index.html

2
src/tailwind.config.js

@ -8,7 +8,7 @@ module.exports = {
plugins: [ plugins: [
function addDisabledClass({ addUtilities }) { function addDisabledClass({ addUtilities }) {
const newUtilities = { const newUtilities = {
'.is-disabled': { '.inactive': {
opacity: '0.25', opacity: '0.25',
cursor: 'default', cursor: 'default',
}, },

2
src/www/css/app.css

@ -1350,7 +1350,7 @@ video {
transition-timing-function: cubic-bezier(0, 0, 0.2, 1); transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
} }
.is-disabled { .inactive {
opacity: 0.25; opacity: 0.25;
cursor: default; cursor: default;
} }

4
src/www/index.html

@ -218,7 +218,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,
'is-disabled': !client.downloadableConfig 'inactive': !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`">
@ -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="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,
'is-disabled': !client.downloadableConfig 'inactive': !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(); }">

Loading…
Cancel
Save