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

Side by Side Diff: runtime/bin/vmservice/observatory/lib/src/elements/sliding_checkbox.html

Issue 839543002: Revert "Build Observatory with runtime" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 | Annotate | Revision Log
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698