Files
sdk/runtime/tools/graphexplorer/graphexplorer.css
T
Ryan Macnak 7329247892 [vm/tools] Add Graph Explorer to visualize output of --write_v8_snapshot_profile_to.
In particular, this tool can produce treemap visualizations of the dominator tree.

Change-Id: If582c80213b4bdec9ff8ee4d5d61a1e15bf342e5
Reviewed-on: https://dart-review.googlesource.com/c/92900
Reviewed-by: Aart Bik <ajcbik@google.com>
2019-02-13 19:30:37 +00:00

68 lines
1.1 KiB
CSS

/*
Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
for details. All rights reserved. Use of this source code is governed by a
BSD-style license that can be found in the LICENSE file.
*/
.actionCell {
cursor: pointer;
}
.actionCell:hover {
text-decoration: underline;
}
.headerRow {
font-weight: bold;
background-color: #BBBBBB;
}
.nameCell {
flex-basis: 0px;
flex-grow: 3;
overflow: hidden;
white-space: nowrap;
padding: 5;
}
.edgeCell {
flex-basis: 0px;
flex-grow: 2;
overflow: hidden;
white-space: nowrap;
padding: 5;
}
.classCell {
flex-basis: 0px;
flex-grow: 1;
overflow: hidden;
white-space: nowrap;
padding: 5;
}
.sizeCell {
flex-basis: 7em;
flex-grow: 0;
text-align: right;
padding: 5;
}
.sizePercentCell {
flex-basis: 2.5em;
flex-grow: 0;
text-align: right;
padding: 5;
color: gray;
}
.treemapTile {
position: absolute;
box-sizing: border-box;
border: solid 1px;
font-size: 10;
text-align: center;
overflow: hidden;
white-space: nowrap;
cursor: default;
}