Skip to content

Commit

Permalink
fix(button): hover styles being applied to disabled buttons
Browse files Browse the repository at this point in the history
Fixes the button hover styles being applied, even if a button is disabled.

Fixes angular#866.
  • Loading branch information
crisbeto committed Jul 23, 2016
1 parent 16eb6be commit ba9066d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/components/button/button.scss
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,11 @@
}

// Only flat buttons and icon buttons (not raised or fabs) have a hover style.
[md-button]:hover, [md-icon-button]:hover {
// Use the same visual treatment for hover as for focus.
@include md-button-focus();
[md-button], [md-icon-button] {
&:not([disabled]):hover {
// Use the same visual treatment for hover as for focus.
@include md-button-focus();
}
}

// Applies a clearer border for high-contrast mode (a11y)
Expand Down

0 comments on commit ba9066d

Please sign in to comment.