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

Commit

Permalink
fix(sidenav): rightNav button and input text is blurry on IE11
Browse files Browse the repository at this point in the history
 Use `translate` instead of `translate3d` for better IE11 support
 Same was previously done for `md-dialog` here: 689a34d

Fixes #6007.

Closes #8297
  • Loading branch information
Splaktar authored and ThomasBurleson committed May 11, 2016
1 parent 86bb3f7 commit fc42e2c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/sidenav/sidenav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ md-sidenav {
.md-sidenav-right {
left: 100%;
top: 0;
transform: translate3d(-100%, 0, 0);
transform: translate(-100%, 0);
&._md-closed {
transform: translate3d(0%, 0, 0);
transform: translate(0%, 0);
}
}

Expand Down

0 comments on commit fc42e2c

Please sign in to comment.