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

Fix font-weight rendering bug on Safari #74

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions paper-ripple.html
Original file line number Diff line number Diff line change
Expand Up @@ -93,16 +93,10 @@
* handler "interrupts" that event handler (which happens when the
* ripple is created on demand) */
pointer-events: none;
}

:host([animating]) {
/* This resolves a rendering issue in Chrome (as of 40) where the
ripple is not properly clipped by its parent (which may have
rounded corners). See: http://jsbin.com/temexa/4

Note: We only apply this style conditionally. Otherwise, the browser
will create a new compositing layer for every ripple element on the
page, and that would be bad. */
rounded corners). See: http://jsbin.com/temexa/4 */
-webkit-transform: translate(0, 0);
transform: translate3d(0, 0, 0);
}
Expand Down