Skip to content

Commit

Permalink
fix(select): animation jump in Chrome and blurry text in IE (#3328)
Browse files Browse the repository at this point in the history
Fixes #3327.
Fixes #1953.
  • Loading branch information
crisbeto authored and kara committed Mar 1, 2017
1 parent 7a40ec7 commit 09c6386
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/select/select-animations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,13 @@ export const transformPanel: AnimationEntryMetadata = trigger('transformPanel',
state('showing', style({
opacity: 1,
minWidth: 'calc(100% + 32px)',
transform: `translate3d(0,0,0) scaleY(1)`
transform: `scaleY(1)`
})),
transition('void => *', [
style({
opacity: 0,
minWidth: '100%',
transform: `translate3d(0, 0, 0) scaleY(0)`
transform: `scaleY(0)`
}),
animate(`150ms cubic-bezier(0.25, 0.8, 0.25, 1)`)
]),
Expand Down

0 comments on commit 09c6386

Please sign in to comment.