| OLD | NEW |
| 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 Loading... |
| 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> |
| OLD | NEW |