| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2016 The Polymer Project Authors. All rights reserved. | 3 Copyright (c) 2016 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="../paper-behaviors/paper-ripple-behavior.html"> | 10 <link rel="import" href="../paper-behaviors/paper-ripple-behavior.html"> |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 outline: none; | 23 outline: none; |
| 24 width: 24px; | 24 width: 24px; |
| 25 height: 24px; | 25 height: 24px; |
| 26 background: none; | 26 background: none; |
| 27 margin: 0; | 27 margin: 0; |
| 28 border: none; | 28 border: none; |
| 29 padding: 0; | 29 padding: 0; |
| 30 | 30 |
| 31 position: relative; | 31 position: relative; |
| 32 cursor: pointer; | 32 cursor: pointer; |
| 33 | |
| 34 /* NOTE: Both values are needed, since some phones require the value to
be `transparent`. */ | |
| 35 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | 33 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
| 36 -webkit-tap-highlight-color: transparent; | |
| 37 } | 34 } |
| 38 | 35 |
| 39 :host([disabled]) { | 36 :host([disabled]) { |
| 40 color: #9b9b9b; | 37 color: #9b9b9b; |
| 41 pointer-events: none; | 38 pointer-events: none; |
| 42 cursor: auto; | 39 cursor: auto; |
| 43 } | 40 } |
| 44 | 41 |
| 45 paper-ripple { | 42 paper-ripple { |
| 46 opacity: 0.6; | 43 opacity: 0.6; |
| 47 color: currentColor; | 44 color: currentColor; |
| 48 } | 45 } |
| 49 </style> | 46 </style> |
| 50 <content></content> | 47 <content></content> |
| 51 </template> | 48 </template> |
| 52 </dom-module> | 49 </dom-module> |
| 53 <script src="paper-icon-button-light-extracted.js"></script></body></html> | 50 <script src="paper-icon-button-light-extracted.js"></script></body></html> |
| OLD | NEW |