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

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

Issue 2161363002: Refactoring of nav-notify (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Removed duplicated nav-notify tag Created 4 years, 5 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="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
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
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 }}">&times;</a> 356 <a class="boxclose" on-click="{{ closeItem }}">&times;</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>
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/nav_bar.dart ('k') | runtime/observatory/lib/src/elements/object_view.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698