| 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"> | |
| 4 | 3 |
| 5 <polymer-element name="ports-page" extends="observatory-element"> | 4 |
| 5 <polymer-element name="ports-page"> |
| 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 ul li:hover:not(.selected) { | 9 ul li:hover:not(.selected) { |
| 10 background-color: #FFF3E3; | 10 background-color: #FFF3E3; |
| 11 } | 11 } |
| 12 .selected { | 12 .selected { |
| 13 background-color: #0489c3; | 13 background-color: #0489c3; |
| 14 } | 14 } |
| 15 .graph { | 15 .graph { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 35 <any-service-ref ref="{{ port['handler'] }}"></any-service-ref> | 35 <any-service-ref ref="{{ port['handler'] }}"></any-service-ref> |
| 36 </div> | 36 </div> |
| 37 </div> | 37 </div> |
| 38 </template> | 38 </template> |
| 39 </div> | 39 </div> |
| 40 <hr> | 40 <hr> |
| 41 <view-footer></view-footer> | 41 <view-footer></view-footer> |
| 42 </div> | 42 </div> |
| 43 </template> | 43 </template> |
| 44 </polymer-element> | 44 </polymer-element> |
| OLD | NEW |