We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca0c2a4 commit 084171dCopy full SHA for 084171d
src/components/MdRadio/MdRadio.vue
@@ -30,9 +30,7 @@
30
},
31
id: {
32
type: String,
33
- default () {
34
- return 'md-radio-' + MdUuid()
35
- }
+ default: () => 'md-radio-' + MdUuid()
36
37
name: [String, Number],
38
required: Boolean,
src/components/MdRadio/theme.scss
@@ -14,6 +14,20 @@
14
}
15
16
17
+ &.md-checked.md-primary {
18
+ .md-radio-container {
19
+ @include md-theme-property(border-color, primary);
20
+
21
+ &:after {
22
+ @include md-theme-property(background-color, primary);
23
+ }
24
25
26
+ .md-ripple {
27
+ @include md-theme-property(color, primary);
28
29
@if md-get-theme-mode() == light {
.md-radio-container {
border-color: rgba(#000, .54);
0 commit comments