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

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

Issue 322483005: Final Observatory 1.5 fixes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 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
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="css/shared.css">
8 <style> 8 <style>
9 nav { 9 nav {
10 position: fixed; 10 position: fixed;
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 <polymer-element name="nav-control" extends="observatory-element"> 168 <polymer-element name="nav-control" extends="observatory-element">
169 <template> 169 <template>
170 <style> 170 <style>
171 .black { 171 .black {
172 color: #000; 172 color: #000;
173 } 173 }
174 li { 174 li {
175 float: right; 175 float: right;
176 margin: 0; 176 margin: 0;
177 } 177 }
178 li button { 178 button {
Cutch 2014/06/06 17:18:44 On Linux the buttons are the same size, on Mac the
179 margin: 3px; 179 margin: 3px;
180 padding: 8px; 180 padding: 8px;
181 } 181 }
182 </style> 182 </style>
183 <li> 183 <li>
184 <button class="black" on-click="{{ back }}">&#9664;</button> 184 <button class="black" on-click="{{ back }}">&#9664;</button>
185 <button class="black" on-click="{{ forward }}">&#9654;</button> 185 <button class="black" on-click="{{ forward }}">&#9654;</button>
186 </li> 186 </li>
187 </template> 187 </template>
188 </polymer-element> 188 </polymer-element>
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
225 <polymer-element name="class-nav-menu" extends="observatory-element"> 225 <polymer-element name="class-nav-menu" extends="observatory-element">
226 <template> 226 <template>
227 <nav-menu link="{{ cls.link }}" 227 <nav-menu link="{{ cls.link }}"
228 anchor="{{ cls.name }}" last="{{ last }}"> 228 anchor="{{ cls.name }}" last="{{ last }}">
229 <content></content> 229 <content></content>
230 </nav-menu> 230 </nav-menu>
231 </template> 231 </template>
232 </polymer-element> 232 </polymer-element>
233 233
234 <script type="application/dart" src="nav_bar.dart"></script> 234 <script type="application/dart" src="nav_bar.dart"></script>
OLDNEW
« no previous file with comments | « runtime/bin/vmservice/client/lib/src/elements/isolate_summary.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698