Change v-checkbox background color when disabled (#9070)

* Change v-checkbox background color when disabled

* Only apply style for block input.
This commit is contained in:
Oreille
2021-10-26 04:50:34 +02:00
committed by GitHub
parent 9197cae5c9
commit 2a02be69db

View File

@@ -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;