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

Side by Side Diff: bower_components/paper-checkbox/demo.html

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « bower_components/paper-checkbox/bower.json ('k') | bower_components/paper-checkbox/index.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!--
2 @license
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://polym er.github.io/LICENSE.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/CO NTRIBUTORS.txt
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/P ATENTS.txt
9 -->
10 <!doctype html>
11 <html>
12 <head>
13 <title>paper-checkbox</title>
14
15 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial- scale=1, user-scalable=yes">
16 <meta name="mobile-web-app-capable" content="yes">
17 <meta name="apple-mobile-web-app-capable" content="yes">
18
19 <script src="../platform/platform.js"></script>
20
21 <link rel="import" href="paper-checkbox.html">
22 <link rel="import" href="../font-roboto/roboto.html">
23
24 <style shim-shadowdom>
25
26 body {
27 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
28 margin: 0;
29 padding: 24px;
30 -webkit-user-select: none;
31 -moz-user-select: none;
32 -ms-user-select: none;
33 user-select: none;
34 -webkit-tap-highlight-color: rgba(0,0,0,0);
35 -webkit-touch-callout: none;
36 }
37
38 paper-checkbox {
39 padding: 20px 20px 20px 0;
40 }
41
42 section {
43 width: 300px;
44 }
45
46 paper-checkbox.blue::shadow #ink[checked] {
47 color: #4285f4;
48 }
49
50 paper-checkbox.blue::shadow #checkbox.checked {
51 border-color: #4285f4;
52 }
53
54 </style>
55
56 </head>
57 <body unresolved>
58
59 <div horizontal layout>
60 <paper-checkbox></paper-checkbox>
61 <div vertical layout>
62 <h4>Notifications</h4>
63 <div>Notify me about updates to apps or games that I've downloaded</div>
64 </div>
65 </div>
66
67 <br>
68
69 <div horizontal layout>
70 <paper-checkbox checked></paper-checkbox>
71 <div vertical layout>
72 <h4>Auto-updates</h4>
73 <div>Auto-update apps over wifi only</div>
74 </div>
75 </div>
76
77 <br>
78
79 <div horizontal layout>
80 <paper-checkbox></paper-checkbox>
81 <div vertical layout>
82 <h4>Clear search history</h4>
83 <div>Remove all the searches you have ever performed</div>
84 </div>
85 </div>
86
87 <br>
88 <br>
89 <br>
90
91 <section>
92
93 <h3>Sound</h3>
94
95 <div center horizontal layout>
96 <div flex>Touch sounds</div>
97 <paper-checkbox class="blue" checked></paper-checkbox>
98 </div>
99
100 <div center horizontal layout>
101 <div flex>Screen lock sound</div>
102 <paper-checkbox class="blue"></paper-checkbox>
103 </div>
104
105 <div center horizontal layout>
106 <div flex>Vibrate on touch</div>
107 <paper-checkbox class="blue"></paper-checkbox>
108 </div>
109
110 </section>
111
112 </body>
113 </html>
OLDNEW
« no previous file with comments | « bower_components/paper-checkbox/bower.json ('k') | bower_components/paper-checkbox/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698