Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(radioButton): fixes focus color for md-primary and md-warn
Browse files Browse the repository at this point in the history
closes #4487
  • Loading branch information
Robert Messerle committed Nov 30, 2015
1 parent a9aabe1 commit 1693433
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/radioButton/radio-button-theme.scss
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,12 @@ md-radio-group.md-THEME_NAME-theme.md-focused:not(:empty) {
.md-checked .md-container:before {
background-color: '{{accent-color-0.26}}';
}
.md-checked:not([disabled]).md-primary .md-container:before {
&.md-primary .md-checked .md-container:before,
.md-checked.md-primary .md-container:before {
background-color: '{{primary-color-0.26}}';
}
.md-checked.md-primary .md-container:before {
&.md-warn .md-checked .md-container:before,
.md-checked.md-warn .md-container:before {
background-color: '{{warn-color-0.26}}';
}
}

0 comments on commit 1693433

Please sign in to comment.