c1f11fed3f
- Make the size tools less dependent on quirks mode. - Add explicit language attribute so Chrome stops offering to translate. - Add zip_size to look at the Dart SDK and Flutter APKs. Change-Id: I0017bd68145344e2427644fcccd13f9b9f307218 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/428064 Reviewed-by: Brian Quinlan <bquinlan@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
70 lines
1.2 KiB
CSS
70 lines
1.2 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;
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.nameCell {
|
|
flex-basis: 0px;
|
|
flex-grow: 3;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
padding: 5px;
|
|
}
|
|
|
|
.edgeCell {
|
|
flex-basis: 0px;
|
|
flex-grow: 2;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
padding: 5px;
|
|
}
|
|
|
|
.classCell {
|
|
flex-basis: 0px;
|
|
flex-grow: 1;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
padding: 5px;
|
|
}
|
|
|
|
.sizeCell {
|
|
flex-basis: 8em;
|
|
flex-grow: 0;
|
|
text-align: right;
|
|
padding: 5px
|
|
}
|
|
|
|
.sizePercentCell {
|
|
flex-basis: 2.5em;
|
|
flex-grow: 0;
|
|
text-align: right;
|
|
padding: 5px;
|
|
color: gray;
|
|
}
|
|
|
|
.treemapTile {
|
|
position: absolute;
|
|
box-sizing: border-box;
|
|
border: solid 1px;
|
|
font-size: 13px;
|
|
text-align: center;
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
cursor: default;
|
|
}
|