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

Commit

Permalink
fix(ripple): fixes ripple bug with checkboxes in lists
Browse files Browse the repository at this point in the history
Reduces the ripple size slightly to prevent scrollbars from showing up in list items.  Closes #679.
  • Loading branch information
robertmesserle authored and ajoslin committed Nov 24, 2014
1 parent cb25cd4 commit 7d99f70
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/components/checkbox/_checkbox.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ md-checkbox {
.md-ripple-container {
position: absolute;
display: block;
width: $checkbox-width * 3;
height: $checkbox-width * 3;
left: -$checkbox-width;
top: -$checkbox-width;
width: auto;
height: auto;
left: -15px;
top: -15px;
right: -15px;
bottom: -15px;
}
}

Expand Down

0 comments on commit 7d99f70

Please sign in to comment.