| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <!-- | 2 <!-- |
| 3 Copyright 2013 The Polymer Authors. All rights reserved. | 3 Copyright 2013 The Polymer Authors. All rights reserved. |
| 4 Use of this source code is governed by a BSD-style | 4 Use of this source code is governed by a BSD-style |
| 5 license that can be found in the LICENSE file. | 5 license that can be found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <title>paper-icon-button</title> | 9 <title>paper-icon-button</title> |
| 10 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initia
l-scale=1, user-scalable=yes"> | 10 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initia
l-scale=1, user-scalable=yes"> |
| 11 <script src="../webcomponentsjs/webcomponents.js"></script> | 11 <script src="../webcomponentsjs/webcomponents.js"></script> |
| 12 | 12 |
| 13 <link rel="import" href="../core-icons/core-icons.html"> | 13 <link rel="import" href="../core-icons/core-icons.html"> |
| 14 <link rel="import" href="paper-icon-button.html"> | 14 <link rel="import" href="paper-icon-button.html"> |
| 15 | 15 |
| 16 <style shim-shadowdom> | 16 <style shim-shadowdom> |
| 17 body { | 17 body { |
| 18 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; | 18 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; |
| 19 font-size: 14px; | 19 font-size: 14px; |
| 20 margin: 0; | 20 margin: 0; |
| 21 padding: 24px; | 21 padding: 24px; |
| 22 -webkit-user-select: none; | |
| 23 -moz-user-select: none; | |
| 24 -ms-user-select: none; | |
| 25 user-select: none; | |
| 26 -webkit-tap-highlight-color: rgba(0,0,0,0); | 22 -webkit-tap-highlight-color: rgba(0,0,0,0); |
| 27 -webkit-touch-callout: none; | 23 -webkit-touch-callout: none; |
| 28 } | 24 } |
| 29 | 25 |
| 30 section { | 26 section { |
| 31 padding: 20px 0; | 27 padding: 20px 0; |
| 32 } | 28 } |
| 33 | 29 |
| 34 section > div { | 30 section > div { |
| 35 padding: 14px; | 31 padding: 14px; |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 } else { | 141 } else { |
| 146 console.log('click', t); | 142 console.log('click', t); |
| 147 } | 143 } |
| 148 } | 144 } |
| 149 } | 145 } |
| 150 | 146 |
| 151 </script> | 147 </script> |
| 152 | 148 |
| 153 </body> | 149 </body> |
| 154 </html> | 150 </html> |
| OLD | NEW |