| OLD | NEW |
| 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> | 1 <link rel="import" href="../../../../packages/polymer/polymer.html"> |
| 2 <link rel="import" href="nav_bar.html"> | 2 <link rel="import" href="nav_bar.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 | 4 |
| 5 <polymer-element name="vm-connect-target" extends="observatory-element"> | 5 <polymer-element name="vm-connect-target" extends="observatory-element"> |
| 6 <template> | 6 <template> |
| 7 <style> | 7 <style> |
| 8 .delete-button { | 8 .delete-button { |
| 9 padding: 4px; | 9 padding: 4px; |
| 10 background: transparent; | 10 background: transparent; |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 <link rel="stylesheet" href="css/shared.css"> | 34 <link rel="stylesheet" href="css/shared.css"> |
| 35 <style> | 35 <style> |
| 36 .textbox { | 36 .textbox { |
| 37 width: 20em; | 37 width: 20em; |
| 38 font: 400 16px 'Montserrat', sans-serif; | 38 font: 400 16px 'Montserrat', sans-serif; |
| 39 } | 39 } |
| 40 </style> | 40 </style> |
| 41 | 41 |
| 42 <nav-bar> | 42 <nav-bar> |
| 43 <top-nav-menu last="{{ true }}"></top-nav-menu> | 43 <top-nav-menu last="{{ true }}"></top-nav-menu> |
| 44 <nav-control></nav-control> | |
| 45 </nav-bar> | 44 </nav-bar> |
| 46 | 45 |
| 47 <div class="content-centered"> | 46 <div class="content-centered"> |
| 48 <h1>Connect to a Dart VM</h1> | 47 <h1>Connect to a Dart VM</h1> |
| 49 <br> | 48 <br> |
| 50 <hr> | 49 <hr> |
| 51 <div class="flex-row"> | 50 <div class="flex-row"> |
| 52 <div class="flex-item-40-percent"> | 51 <div class="flex-item-40-percent"> |
| 53 <h2><img style="height: 48px" src="img/dart_icon.png">Standalone</h2> | 52 <h2><img style="height: 48px" src="img/dart_icon.png">Standalone</h2> |
| 54 <br> | 53 <br> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 <pre class="well">Run Chromium with: | 86 <pre class="well">Run Chromium with: |
| 88 '--remote-debugging-port=9222'</pre> | 87 '--remote-debugging-port=9222'</pre> |
| 89 <hr> | 88 <hr> |
| 90 </div> | 89 </div> |
| 91 </div> | 90 </div> |
| 92 </div> | 91 </div> |
| 93 </template> | 92 </template> |
| 94 </polymer-element> | 93 </polymer-element> |
| 95 | 94 |
| 96 <script type="application/dart" src="vm_connect.dart"></script> | 95 <script type="application/dart" src="vm_connect.dart"></script> |
| OLD | NEW |