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

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

Issue 237683004: Disable applyAuthorStyles (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 8 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="curly_block.html"> 2 <link rel="import" href="curly_block.html">
3 <link rel="import" href="eval_box.html"> 3 <link rel="import" href="eval_box.html">
4 <link rel="import" href="function_ref.html"> 4 <link rel="import" href="function_ref.html">
5 <link rel="import" href="library_ref.html"> 5 <link rel="import" href="library_ref.html">
6 <link rel="import" href="nav_bar.html"> 6 <link rel="import" href="nav_bar.html">
7 <link rel="import" href="observatory_element.html"> 7 <link rel="import" href="observatory_element.html">
8 <link rel="import" href="script_inset.html"> 8 <link rel="import" href="script_inset.html">
9 <link rel="import" href="script_ref.html"> 9 <link rel="import" href="script_ref.html">
10 </head> 10 </head>
11 <polymer-element name="isolate-view" extends="observatory-element"> 11 <polymer-element name="isolate-view" extends="observatory-element">
12 <template> 12 <template>
13 <link rel="stylesheet" href="css/shared.css">
13 <style> 14 <style>
14 .content {
15 padding-left: 10%;
16 font: 400 14px 'Montserrat', sans-serif;
17 }
18 h1 {
19 font: 400 18px 'Montserrat', sans-serif;
20 }
21 .memberList {
22 display: table;
23 }
24 .memberItem {
25 display: table-row;
26 }
27 .memberName, .memberValue {
28 display: table-cell;
29 vertical-align: top;
30 padding: 3px 0 3px 1em;
31 font: 400 14px 'Montserrat', sans-serif;
32 }
33 .sourceInset { 15 .sourceInset {
34 padding-left: 15%; 16 padding-left: 15%;
35 padding-right: 15%; 17 padding-right: 15%;
36 } 18 }
37 .miniProfileChart { 19 .miniProfileChart {
38 width: 80%; 20 width: 80%;
39 } 21 }
40 </style> 22 </style>
41 23
42 <nav-bar> 24 <nav-bar>
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 <hr> 201 <hr>
220 202
221 <div class="content"> 203 <div class="content">
222 <eval-box callback="{{ eval }}"></eval-box> 204 <eval-box callback="{{ eval }}"></eval-box>
223 </div> 205 </div>
224 <br><br><br><br> 206 <br><br><br><br>
225 <br><br><br><br> 207 <br><br><br><br>
226 </template> 208 </template>
227 <script type="application/dart" src="isolate_view.dart"></script> 209 <script type="application/dart" src="isolate_view.dart"></script>
228 </polymer-element> 210 </polymer-element>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698