forked from catapult-project/catapult
-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeline_view.css
95 lines (74 loc) · 1.56 KB
/
timeline_view.css
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* Copyright (c) 2012 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. */
#timeline-view-selection-div {
display: inline-block;
overflow-y: auto;
}
#timeline-view-selection-toggle {
background-color: #fff;
background-image: url(select.png);
border: none;
height: 8px;
padding: none;
width: 19px;
}
.timeline-view-rotateleft {
transform: rotate(90deg);
}
.timeline-view-rotateright {
transform: rotate(270deg);
}
#timeline-view-selection-div ul {
margin-top: 0;
padding-left: 10px;
}
#timeline-view-selection-div li {
list-style: none;
white-space: nowrap;
}
.timeline-view-text {
color: black;
}
#timeline-view-open-sockets {
color: rgb(170, 0, 170);
}
#timeline-view-in-use-sockets {
color: rgb(255, 51, 204);
}
#timeline-view-url-requests {
color: black;
}
#timeline-view-dns-jobs {
color: rgb(150, 20, 29);
}
#timeline-view-bytes-received {
color: rgb(0, 187, 0);
}
#timeline-view-bytes-sent {
color: red;
}
#timeline-view-disk-cache-bytes-read {
color: rgb(0, 0, 255);
}
#timeline-view-disk-cache-bytes-written {
color: #999;
}
/* Need the id in this rule to override the above color rules. */
#timeline-view-selection-div .timeline-view-hidden {
color: white;
}
#timeline-view-graph-div {
background-color: white;
}
#timeline-view-graph-canvas {
cursor: pointer;
padding: 10px 10px 2px;
}
#timeline-view-scrollbar-div {
overflow-x: scroll;
overflow-y: hidden;
}
#timeline-view-scrollbar-inner-div {
height: 1px;
}