| 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="action_link.html"> | 2 <link rel="import" href="action_link.html"> |
| 3 <link rel="import" href="observatory_element.html"> | 3 <link rel="import" href="observatory_element.html"> |
| 4 | 4 |
| 5 <polymer-element name="nav-bar" extends="observatory-element"> | 5 <polymer-element name="nav-bar" extends="observatory-element"> |
| 6 <template> | 6 <template> |
| 7 <link rel="stylesheet" href="css/shared.css"> | 7 <link rel="stylesheet" href="css/shared.css"> |
| 8 <style> | 8 <style> |
| 9 nav { | 9 nav { |
| 10 position: fixed; | 10 position: fixed; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 nav ul:after { | 26 nav ul:after { |
| 27 content: ""; clear: both; display: block; | 27 content: ""; clear: both; display: block; |
| 28 } | 28 } |
| 29 .vertical-spacer { | 29 .vertical-spacer { |
| 30 height: 40px; | 30 height: 40px; |
| 31 background-color: #0489c3; | 31 background-color: #0489c3; |
| 32 } | 32 } |
| 33 </style> | 33 </style> |
| 34 <nav> | 34 <nav> |
| 35 <ul> | 35 <ul> |
| 36 <nav-notify notifications="{{ app.notifications }}" | |
| 37 notifyOnPause="{{ notifyOnPause }}"></nav-notify> | |
| 38 <content></content> | 36 <content></content> |
| 39 </ul> | 37 </ul> |
| 40 </nav> | 38 </nav> |
| 41 <div class="vertical-spacer"> | 39 <div class="vertical-spacer"> |
| 42 </div> | 40 </div> |
| 43 <template if="{{ pad }}"> | 41 <template if="{{ pad }}"> |
| 44 <br> | 42 <br> |
| 45 </template> | 43 </template> |
| 46 </template> | 44 </template> |
| 47 </polymer-element> | 45 </polymer-element> |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 356 [<a class="link" on-click="{{ goto }}" | 354 [<a class="link" on-click="{{ goto }}" |
| 357 _href="{{ gotoLink('vm-connect') }}">Connect to a different VM</a>] | 355 _href="{{ gotoLink('vm-connect') }}">Connect to a different VM</a>] |
| 358 <a class="boxclose" on-click="{{ closeItem }}">×</a> | 356 <a class="boxclose" on-click="{{ closeItem }}">×</a> |
| 359 </div> | 357 </div> |
| 360 </template> | 358 </template> |
| 361 </template> | 359 </template> |
| 362 </polymer-element> | 360 </polymer-element> |
| 363 | 361 |
| 364 | 362 |
| 365 <script type="application/dart" src="nav_bar.dart"></script> | 363 <script type="application/dart" src="nav_bar.dart"></script> |
| OLD | NEW |