From 2a02be69dbf89b01444edcc69cdeea46c2e82da8 Mon Sep 17 00:00:00 2001 From: Oreille <33065839+Oreilles@users.noreply.github.com> Date: Tue, 26 Oct 2021 04:50:34 +0200 Subject: [PATCH] Change v-checkbox background color when disabled (#9070) * Change v-checkbox background color when disabled * Only apply style for block input. --- app/src/components/v-checkbox/v-checkbox.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/src/components/v-checkbox/v-checkbox.vue b/app/src/components/v-checkbox/v-checkbox.vue index 3d61209b3c..08bde7b78e 100644 --- a/app/src/components/v-checkbox/v-checkbox.vue +++ b/app/src/components/v-checkbox/v-checkbox.vue @@ -182,6 +182,10 @@ body { border-radius: var(--border-radius); transition: all var(--fast) var(--transition); + &:disabled { + background-color: var(--background-subdued); + } + &::before { position: absolute; top: 0;