1/* Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6.subhead {
7  font-size: small;
8  padding-bottom: 10px;
9}
10
11.tcmalloc-snapshot-view ul {
12  background-position: 0 5px;
13  background-repeat: no-repeat;
14  cursor: pointer;
15  font-family: monospace;
16  list-style: none;
17  margin: 0;
18  padding-left: 15px;
19}
20
21.tcmalloc-snapshot-view li {
22  background-position: 0 5px;
23  background-repeat: no-repeat;
24  cursor: pointer;
25  list-style: none;
26  margin: 0;
27  padding-left: 15px;
28}
29
30/* Collapsed state for list element */
31.tcmalloc-snapshot-view .collapsed {
32  background-image: url(../images/expand.png);
33}
34
35/* Expanded state for list element. Must be located under the collapsed one. */
36.tcmalloc-snapshot-view .expanded {
37  background-image: url(../images/collapse.png);
38}
39
40/* Allocation size in MB, right-aligned for easier comparison of columns. */
41.trace-bytes {
42  display: inline-block;
43  padding-right: 10px;
44  text-align: right;
45  width: 80px;
46}
47
48/* Trace allocation count. */
49.trace-allocs {
50  display: inline-block;
51  padding-right: 10px;
52  text-align: right;
53  width: 120px;
54}
55
56/* Trace name, inline so it appears to the right of the byte count. */
57.trace-name {
58  display: inline-block;
59}
60