Skip to content

Commit 0cc43e2

Browse files
committed
fix(VRadio): change icon color when disabled
1 parent 322b670 commit 0cc43e2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/vuetify/src/components/VInput/VInput.sass

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,12 +100,12 @@
100100

101101
&__slot
102102
align-items: center
103-
color: inherit
104103
display: flex
105104
margin-bottom: $input-slot-margin-bottom
106105
min-height: inherit
107106
position: relative
108107
transition: $primary-transition
108+
transition-property: height, min-height
109109
width: 100%
110110

111111
&--dense > .v-input__control > .v-input__slot

packages/vuetify/src/components/VRadioGroup/VRadio.ts

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export default baseMixins.extend<options>().extend({
7474
}
7575
},
7676
computedColor (): string | undefined {
77+
if (this.isDisabled) return undefined
7778
return Selectable.options.computed.computedColor.call(this)
7879
},
7980
computedIcon (): string {

0 commit comments

Comments
 (0)