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

Side by Side Diff: runtime/observatory/lib/src/elements/ports.html

Issue 2167053002: Converted Observatory nav-notify element (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Fixed template ciclic references that were blocking initialization Created 4 years, 4 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
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/persistent_handles.html ('k') | runtime/observatory/lib/src/elements/script_inset.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698