| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 @license | 2 @license |
| 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. | 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 | 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 | 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 | 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 | 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 | 8 subject to an additional IP rights grant found at http://polymer.github.io/P
ATENTS.txt |
| 9 --> | 9 --> |
| 10 <!doctype html> | 10 <!doctype html> |
| 11 <html> | 11 <html> |
| 12 <head> | 12 <head> |
| 13 <title>paper-checkbox</title> | 13 <title>paper-checkbox</title> |
| 14 | 14 |
| 15 <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-
scale=1, user-scalable=yes"> | 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"> | 16 <meta name="mobile-web-app-capable" content="yes"> |
| 17 <meta name="apple-mobile-web-app-capable" content="yes"> | 17 <meta name="apple-mobile-web-app-capable" content="yes"> |
| 18 | 18 |
| 19 <script src="../platform/platform.js"></script> | 19 <script src="../webcomponentsjs/webcomponents.js"></script> |
| 20 | 20 |
| 21 <link rel="import" href="paper-checkbox.html"> | 21 <link rel="import" href="paper-checkbox.html"> |
| 22 <link rel="import" href="../font-roboto/roboto.html"> | 22 <link rel="import" href="../font-roboto/roboto.html"> |
| 23 <link rel="import" href="../core-label/core-label.html"> |
| 23 | 24 |
| 24 <style shim-shadowdom> | 25 <style shim-shadowdom> |
| 25 | 26 |
| 26 body { | 27 body { |
| 27 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; | 28 font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial; |
| 28 margin: 0; | 29 margin: 0; |
| 29 padding: 24px; | 30 padding: 24px; |
| 30 -webkit-user-select: none; | 31 -webkit-user-select: none; |
| 31 -moz-user-select: none; | 32 -moz-user-select: none; |
| 32 -ms-user-select: none; | 33 -ms-user-select: none; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 49 | 50 |
| 50 paper-checkbox.blue::shadow #checkbox.checked { | 51 paper-checkbox.blue::shadow #checkbox.checked { |
| 51 border-color: #4285f4; | 52 border-color: #4285f4; |
| 52 } | 53 } |
| 53 | 54 |
| 54 </style> | 55 </style> |
| 55 | 56 |
| 56 </head> | 57 </head> |
| 57 <body unresolved> | 58 <body unresolved> |
| 58 | 59 |
| 59 <div horizontal layout> | 60 <core-label horizontal layout> |
| 60 <paper-checkbox></paper-checkbox> | 61 <paper-checkbox for></paper-checkbox> |
| 61 <div vertical layout> | 62 <div vertical layout> |
| 62 <h4>Notifications</h4> | 63 <h4>Notifications</h4> |
| 63 <div>Notify me about updates to apps or games that I've downloaded</div> | 64 <div>Notify me about updates to apps or games that I've downloaded</div> |
| 64 </div> | 65 </div> |
| 65 </div> | 66 </core-label> |
| 66 | 67 |
| 67 <br> | 68 <br> |
| 68 | 69 |
| 69 <div horizontal layout> | 70 <core-label horizontal layout> |
| 70 <paper-checkbox checked></paper-checkbox> | 71 <paper-checkbox checked for></paper-checkbox> |
| 71 <div vertical layout> | 72 <div vertical layout> |
| 72 <h4>Auto-updates</h4> | 73 <h4>Auto-updates</h4> |
| 73 <div>Auto-update apps over wifi only</div> | 74 <div>Auto-update apps over wifi only</div> |
| 74 </div> | 75 </div> |
| 75 </div> | 76 </core-label> |
| 76 | 77 |
| 77 <br> | 78 <br> |
| 78 | 79 |
| 79 <div horizontal layout> | 80 <core-label horizontal layout> |
| 80 <paper-checkbox></paper-checkbox> | 81 <paper-checkbox for></paper-checkbox> |
| 81 <div vertical layout> | 82 <div vertical layout> |
| 82 <h4>Clear search history</h4> | 83 <h4>Clear search history</h4> |
| 83 <div>Remove all the searches you have ever performed</div> | 84 <div>Remove all the searches you have ever performed</div> |
| 84 </div> | 85 </div> |
| 85 </div> | 86 </core-label> |
| 86 | 87 |
| 87 <br> | 88 <br> |
| 88 <br> | 89 <br> |
| 89 <br> | 90 <br> |
| 90 | 91 |
| 91 <section> | 92 <section> |
| 92 | 93 |
| 93 <h3>Sound</h3> | 94 <h3>Sound</h3> |
| 94 | 95 |
| 95 <div center horizontal layout> | 96 <core-label center horizontal layout> |
| 96 <div flex>Touch sounds</div> | 97 <div flex>Touch sounds</div> |
| 97 <paper-checkbox class="blue" checked></paper-checkbox> | 98 <paper-checkbox class="blue" checked for></paper-checkbox> |
| 98 </div> | 99 </core-label> |
| 99 | 100 |
| 100 <div center horizontal layout> | 101 <core-label center horizontal layout> |
| 101 <div flex>Screen lock sound</div> | 102 <div flex>Screen lock sound</div> |
| 102 <paper-checkbox class="blue"></paper-checkbox> | 103 <paper-checkbox class="blue" for></paper-checkbox> |
| 103 </div> | 104 </core-label> |
| 104 | 105 |
| 105 <div center horizontal layout> | 106 <core-label center horizontal layout> |
| 106 <div flex>Vibrate on touch</div> | 107 <div flex>Vibrate on touch</div> |
| 107 <paper-checkbox class="blue"></paper-checkbox> | 108 <paper-checkbox class="blue" for></paper-checkbox> |
| 108 </div> | 109 </core-label> |
| 109 | 110 |
| 110 </section> | 111 </section> |
| 111 | 112 |
| 112 </body> | 113 </body> |
| 113 </html> | 114 </html> |
| OLD | NEW |