| 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-styles/default-theme.html"> | 10 <link rel="import" href="../paper-styles/default-theme.html"> |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 </head><body><dom-module id="paper-checkbox"> | 54 </head><body><dom-module id="paper-checkbox"> |
| 55 <template strip-whitespace=""> | 55 <template strip-whitespace=""> |
| 56 <style> | 56 <style> |
| 57 :host { | 57 :host { |
| 58 display: inline-block; | 58 display: inline-block; |
| 59 white-space: nowrap; | 59 white-space: nowrap; |
| 60 cursor: pointer; | 60 cursor: pointer; |
| 61 --calculated-paper-checkbox-size: var(--paper-checkbox-size, 18px); | 61 --calculated-paper-checkbox-size: var(--paper-checkbox-size, 18px); |
| 62 @apply(--paper-font-common-base); | 62 @apply(--paper-font-common-base); |
| 63 line-height: 0; | 63 line-height: 0; |
| 64 -webkit-tap-highlight-color: transparent; |
| 64 } | 65 } |
| 65 | 66 |
| 66 :host(:focus) { | 67 :host(:focus) { |
| 67 outline: none; | 68 outline: none; |
| 68 } | 69 } |
| 69 | 70 |
| 70 .hidden { | 71 .hidden { |
| 71 display: none; | 72 display: none; |
| 72 } | 73 } |
| 73 | 74 |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 <div id="checkbox" class$="[[_computeCheckboxClass(checked, invalid)]]"> | 217 <div id="checkbox" class$="[[_computeCheckboxClass(checked, invalid)]]"> |
| 217 <div id="checkmark" class$="[[_computeCheckmarkClass(checked)]]"></div> | 218 <div id="checkmark" class$="[[_computeCheckmarkClass(checked)]]"></div> |
| 218 </div> | 219 </div> |
| 219 </div> | 220 </div> |
| 220 | 221 |
| 221 <div id="checkboxLabel"><content></content></div> | 222 <div id="checkboxLabel"><content></content></div> |
| 222 </template> | 223 </template> |
| 223 | 224 |
| 224 </dom-module> | 225 </dom-module> |
| 225 <script src="paper-checkbox-extracted.js"></script></body></html> | 226 <script src="paper-checkbox-extracted.js"></script></body></html> |
| OLD | NEW |