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

Side by Side Diff: runtime/observatory/lib/src/elements/isolate/shared_summary_wrapper.dart

Issue 2286823002: Fixed isolate-shared-summary layout problems (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate/shared_summary.dart ('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 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import 'dart:html'; 5 import 'dart:html';
6 import 'dart:async'; 6 import 'dart:async';
7 import 'package:observatory/app.dart'; 7 import 'package:observatory/app.dart';
8 import 'package:observatory/service.dart'; 8 import 'package:observatory/service.dart';
9 import 'package:observatory/src/elements/helpers/tag.dart'; 9 import 'package:observatory/src/elements/helpers/tag.dart';
10 import 'package:observatory/src/elements/shims/binding.dart'; 10 import 'package:observatory/src/elements/shims/binding.dart';
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 display: table-row; 81 display: table-row;
82 } 82 }
83 .memberName, .memberValue { 83 .memberName, .memberValue {
84 display: table-cell; 84 display: table-cell;
85 vertical-align: top; 85 vertical-align: top;
86 padding: 3px 0 3px 1em; 86 padding: 3px 0 3px 1em;
87 font: 400 14px 'Montserrat', sans-serif; 87 font: 400 14px 'Montserrat', sans-serif;
88 } 88 }
89 isolate-shared-summary-wrapped { 89 isolate-shared-summary-wrapped {
90 display: block; 90 display: block;
91 }
92 isolate-shared-summary-wrapped > .summary {
91 height: 300px; 93 height: 300px;
92 position: relative; 94 position: relative;
93 } 95 }
94 isolate-shared-summary-wrapped > .menu { 96 isolate-shared-summary-wrapped .menu {
95 float: right; 97 float: right;
96 top: 0; 98 top: 0;
97 right: 0; 99 right: 0;
98 } 100 }
99 isolate-shared-summary-wrapped > isolate-counter-chart { 101 isolate-shared-summary-wrapped isolate-counter-chart {
100 position: absolute; 102 position: absolute;
101 left: 0; 103 left: 0;
102 top: 0; 104 top: 0;
103 right: 230px; 105 right: 230px;
104 clear: both; 106 clear: both;
105 } 107 }
106 isolate-shared-summary-wrapped .errorBox { 108 isolate-shared-summary-wrapped .errorBox {
107 background-color: #f5f5f5; 109 background-color: #f5f5f5;
108 border: 1px solid #ccc; 110 border: 1px solid #ccc;
109 padding: 2em; 111 padding: 2em;
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 text-overflow: ellipsis; 160 text-overflow: ellipsis;
159 max-width: 120px; 161 max-width: 120px;
160 flex: 1; 162 flex: 1;
161 } 163 }
162 ''', 164 ''',
163 new IsolateSharedSummaryElement(_isolate, 165 new IsolateSharedSummaryElement(_isolate,
164 queue: ObservatoryApplication.app.queue) 166 queue: ObservatoryApplication.app.queue)
165 ]; 167 ];
166 } 168 }
167 } 169 }
OLDNEW
« no previous file with comments | « runtime/observatory/lib/src/elements/isolate/shared_summary.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698