blob: ad7cf9467f09b9d17f34e421f58ddedcd190634c (
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
|
/* Copyright 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. */
#snapshot-view {
width: 100%;
}
#snapshot-view tr:nth-child(odd) {
background: rgb(239, 243, 255);
}
#snapshot-view td {
vertical-align: top;
}
#snapshot-view .process-memory {
text-align: right;
}
#snapshot-view #process-template {
display: none;
}
#json {
display: none;
height: 100px;
width: 100%;
}
|