diff options
| author | HJ <30-hj@users.noreply.git.pleroma.social> | 2024-10-03 19:44:24 +0000 |
|---|---|---|
| committer | HJ <30-hj@users.noreply.git.pleroma.social> | 2024-10-03 19:44:24 +0000 |
| commit | a1c3a7a742ea86b0ddeb67a42ca27f478f0f22a2 (patch) | |
| tree | 82540411b3afbcc66545e2419eee7ec5dbae7f93 /src/components/opacity_input/opacity_input.vue | |
| parent | 56a3bff267203017a704652117167569be0cd58a (diff) | |
| parent | 05ab57a8e68033b520e6038afaa6514423f0d117 (diff) | |
Merge branch 'shadow-control-2.0' into 'develop'
Fixed and refined the shadow control in theme tab
See merge request pleroma/pleroma-fe!1939
Diffstat (limited to 'src/components/opacity_input/opacity_input.vue')
| -rw-r--r-- | src/components/opacity_input/opacity_input.vue | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/opacity_input/opacity_input.vue b/src/components/opacity_input/opacity_input.vue index a45bdd92..5a80b100 100644 --- a/src/components/opacity_input/opacity_input.vue +++ b/src/components/opacity_input/opacity_input.vue @@ -6,6 +6,7 @@ <label :for="name" class="label" + :class="{ faint: !present || disabled }" > {{ $t('settings.style.common.opacity') }} </label> @@ -22,6 +23,7 @@ type="number" :value="modelValue || fallback" :disabled="!present || disabled" + :class="{ disabled: !present || disabled }" max="1" min="0" step=".05" |
