blob: c22b8e5e4d1f021d20462d709a0cb0e5abdea7b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.subhead {
font-size: small;
padding-bottom: 10px;
}
.tcmalloc-instance-view #args {
white-space: pre;
}
.tcmalloc-instance-view #snapshots > * {
display: block;
}
.tcmalloc-instance-view {
overflow: auto;
}
.tcmalloc-instance-view * {
-webkit-user-select: text;
}
.tcmalloc-instance-view .title {
border-bottom: 1px solid rgb(128, 128, 128);
font-size: 110%;
font-weight: bold;
}
.tcmalloc-instance-view td,
.tcmalloc-instance-view th {
font-size: small;
text-align: right;
}
|