From 825bd0e9802c69691723384652e9446997ae4526 Mon Sep 17 00:00:00 2001 From: Takusea Date: Sat, 7 Dec 2024 20:38:06 +0900 Subject: [PATCH] =?UTF-8?q?disabled=E6=99=82=E3=81=AEopacity=E3=82=920.4?= =?UTF-8?q?=E3=81=AB=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Base/BaseIconButton.vue | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/components/Base/BaseIconButton.vue b/src/components/Base/BaseIconButton.vue index 3316374e6f..267b00f776 100644 --- a/src/components/Base/BaseIconButton.vue +++ b/src/components/Base/BaseIconButton.vue @@ -53,5 +53,10 @@ defineEmits<{ &:active:not(:disabled) { background-color: colors.$clear-pressed; } + + &:disabled { + // Quasar側のopacity: 0.6 !important;を上書きするためimportantを付与 + opacity: 0.4 !important; + } }