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

Side by Side Diff: polymer_0.5.4/bower_components/paper-icon-button/demo.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 10 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
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698