| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |