Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Side by Side Diff: third_party/polymer/v1_0/components-chromium/paper-ripple/paper-ripple.html

Issue 2719213002: Polymer: fix web animations-based <paper-ripple> in RTL (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 @license 2 @license
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><html><head><link rel="import" href="../polymer/polymer.html"> 9 --><html><head><link rel="import" href="../polymer/polymer.html">
10 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html "> 10 <link rel="import" href="../iron-a11y-keys-behavior/iron-a11y-keys-behavior.html ">
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 pointer-events: none; 85 pointer-events: none;
86 position: absolute; 86 position: absolute;
87 right: 0; 87 right: 0;
88 top: 0; 88 top: 0;
89 /* For rounded corners: http://jsbin.com/temexa/4. */ 89 /* For rounded corners: http://jsbin.com/temexa/4. */
90 transform: translate3d(0, 0, 0); 90 transform: translate3d(0, 0, 0);
91 } 91 }
92 92
93 .ripple { 93 .ripple {
94 background-color: currentcolor; 94 background-color: currentcolor;
95 left: 0;
95 opacity: .25; 96 opacity: .25;
96 pointer-events: none; 97 pointer-events: none;
97 position: absolute; 98 position: absolute;
98 will-change: height, transform, width; 99 will-change: height, transform, width;
99 } 100 }
100 101
101 .ripple, 102 .ripple,
102 :host(.circle) { 103 :host(.circle) {
103 border-radius: 50%; 104 border-radius: 50%;
104 } 105 }
105 </style> 106 </style>
106 </template> 107 </template>
107 </dom-module> 108 </dom-module>
108 <script src="paper-ripple-extracted.js"></script></body></html> 109 <script src="paper-ripple-extracted.js"></script></body></html>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698