Skip to content

Commit

Permalink
feat(range): fix the knob on md so the transform isn't blurry
Browse files Browse the repository at this point in the history
references #5422
  • Loading branch information
brandyscarney committed Jun 1, 2016
1 parent 2eb88fa commit cffa84c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/components/range/range.md.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $range-md-bar-height: 2px !default;
$range-md-bar-background-color: #bdbdbd !default;
$range-md-bar-active-background-color: color($colors-md, primary) !default;

$range-md-knob-width: 12px !default;
$range-md-knob-width: 18px !default;
$range-md-knob-height: $range-md-knob-width !default;
$range-md-knob-background-color: $range-md-bar-active-background-color !default;

Expand Down Expand Up @@ -115,6 +115,8 @@ ion-range {
background: $range-md-knob-background-color;

pointer-events: none;

transform: scale(.67);
}

.range-tick {
Expand Down Expand Up @@ -168,7 +170,7 @@ ion-range {
}

.range-knob-pressed .range-knob {
transform: scale(1.5);
transform: scale(1);
}

// Generate Material Design Range Colors
Expand Down

0 comments on commit cffa84c

Please sign in to comment.