| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 | 2 |
| 3 <polymer-element name="sliding-checkbox"> | 3 <polymer-element name="sliding-checkbox"> |
| 4 <template> | 4 <template> |
| 5 <style> | 5 <style> |
| 6 .switch { | 6 .switch { |
| 7 position: relative; | 7 position: relative; |
| 8 width: 121px; | 8 width: 121px; |
| 9 -webkit-user-select: none; | 9 -webkit-user-select: none; |
| 10 -moz-user-select: none; | 10 -moz-user-select: none; |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 on-change="{{ change }}"> | 81 on-change="{{ change }}"> |
| 82 <label class="label" for="slide-switch"> | 82 <label class="label" for="slide-switch"> |
| 83 <div class="content"></div> | 83 <div class="content"></div> |
| 84 <div class="dot"></div> | 84 <div class="dot"></div> |
| 85 </label> | 85 </label> |
| 86 </div> | 86 </div> |
| 87 </template> | 87 </template> |
| 88 </polymer-element> | 88 </polymer-element> |
| 89 | 89 |
| 90 <script type="application/dart" src="sliding_checkbox.dart"></script> | 90 <script type="application/dart" src="sliding_checkbox.dart"></script> |
| OLD | NEW |