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

Unified Diff: runtime/observatory/lib/src/elements/css/shared.css

Issue 2237383004: Fixed Observatory class-view crash (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/observatory/lib/src/elements/containers/virtual_collection.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/observatory/lib/src/elements/css/shared.css
diff --git a/runtime/observatory/lib/src/elements/css/shared.css b/runtime/observatory/lib/src/elements/css/shared.css
index 9e4a0f5b67a7ff41c1d7eb1e329fe1cf6d8790cb..a72de8bace979f7a5c345497f4e94aebd1b9c168 100644
--- a/runtime/observatory/lib/src/elements/css/shared.css
+++ b/runtime/observatory/lib/src/elements/css/shared.css
@@ -447,6 +447,7 @@ cpu-profile-virtual-tree {
}
cpu-profile-virtual-tree .tree-item {
+ box-sizing: border-box;
line-height: 30px;
height: 30px;
padding-left: 5%;
@@ -753,6 +754,10 @@ observatory-application > div {
/* sample-buffer-control */
+sample-buffer-control {
+ white-space: nowrap;
+}
+
sample-buffer-control .statusMessage {
font-size: 150%;
font-weight: bold;
@@ -781,6 +786,12 @@ sample-buffer-control .shadow {
0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
+/* stack-trace-tree-config */
+
+stack-trace-tree-config {
+ white-space: nowrap;
+}
+
/* view-footer */
view-footer {
@@ -808,27 +819,22 @@ virtual-collection {
}
virtual-collection .scroller {
- position: relative;
overflow: hidden;
background: transparent;
+ display: inline-block;
+ min-width: 100%;
}
virtual-collection .shifter {
background: transparent;
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
+ position: relative;
+ display: inline-block;
+ min-width: 100%;
}
virtual-collection .shifter > * {
- display: block;
- position: relative;
- top: -25%;
- width: 100%;
- white-space: nowrap;
- text-overflow: ellipsis;
- overflow-x: hidden;
+ display: inline-block;
+ min-width: 100%;
white-space: nowrap;
}
« no previous file with comments | « runtime/observatory/lib/src/elements/containers/virtual_collection.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698