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

Side by Side Diff: runtime/bin/vmservice/client/lib/src/elements/nav_bar.html

Issue 251043003: Observatory Display PC descriptors with disassembling (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 7 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 | Annotate | Revision Log
OLDNEW
1 <head> 1 <head>
2 <link rel="import" href="observatory_element.html"> 2 <link rel="import" href="observatory_element.html">
3 </head> 3 </head>
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="packages/observatory/src/elements/css/shared.cs s">
8 <style> 8 <style>
9 nav ul { 9 nav ul {
10 display: inline-table; 10 display: inline-table;
11 position: relative; 11 position: relative;
12 list-style: none; 12 list-style: none;
13 padding-left: 0; 13 padding-left: 0;
14 margin-left: 0; 14 margin-left: 0;
15 width: 100%; 15 width: 100%;
16 z-index: 10; 16 z-index: 10;
17 font: 400 16px 'Montserrat', sans-serif; 17 font: 400 16px 'Montserrat', sans-serif;
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 <polymer-element name="class-nav-menu" extends="observatory-element"> 188 <polymer-element name="class-nav-menu" extends="observatory-element">
189 <template> 189 <template>
190 <nav-menu link="{{ cls.hashLink }}" 190 <nav-menu link="{{ cls.hashLink }}"
191 anchor="{{ cls.name }}" last="{{ last }}"> 191 anchor="{{ cls.name }}" last="{{ last }}">
192 <content></content> 192 <content></content>
193 </nav-menu> 193 </nav-menu>
194 </template> 194 </template>
195 </polymer-element> 195 </polymer-element>
196 196
197 <script type="application/dart" src="nav_bar.dart"></script> 197 <script type="application/dart" src="nav_bar.dart"></script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698