| 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`. */ |
| 33 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); | 35 -webkit-tap-highlight-color: rgba(0, 0, 0, 0); |
| 36 -webkit-tap-highlight-color: transparent; |
| 34 } | 37 } |
| 35 | 38 |
| 36 :host([disabled]) { | 39 :host([disabled]) { |
| 37 color: #9b9b9b; | 40 color: #9b9b9b; |
| 38 pointer-events: none; | 41 pointer-events: none; |
| 39 cursor: auto; | 42 cursor: auto; |
| 40 } | 43 } |
| 41 | 44 |
| 42 paper-ripple { | 45 paper-ripple { |
| 43 opacity: 0.6; | 46 opacity: 0.6; |
| 44 color: currentColor; | 47 color: currentColor; |
| 45 } | 48 } |
| 46 </style> | 49 </style> |
| 47 <content></content> | 50 <content></content> |
| 48 </template> | 51 </template> |
| 49 </dom-module> | 52 </dom-module> |
| 50 <script src="paper-icon-button-light-extracted.js"></script></body></html> | 53 <script src="paper-icon-button-light-extracted.js"></script></body></html> |
| OLD | NEW |