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
|
#scripts-files option.injected {
color: rgb(70, 134, 240);
}
.data-grid table {
line-height: 120%;
}
body.attached #toolbar {
height: 34px;
border-top: 1px solid rgb(100, 100, 100);
cursor: default; /* overriden */
padding-left: 0;
}
/* Chrome theme overrides */
#toolbar {
background-image: -webkit-gradient(linear, left top, left bottom, from(rgb(242, 247, 253)), to(rgb(223, 234, 248)));
}
/* Heap Profiler Styles */
#heap-snapshot-views {
position: absolute;
top: 0;
right: 0;
left: 200px;
bottom: 0;
}
#heap-snapshot-status-bar-items {
position: absolute;
top: 0;
bottom: 0;
left: 200px;
overflow: hidden;
border-left: 1px solid rgb(184, 184, 184);
margin-left: -1px;
}
.heap-snapshot-status-bar-item {
background-image: url(Images/focusButtons.png) !important;
}
.heap-snapshot-status-bar-item:active {
background-position: 32px 0;
}
.heap-snapshot-sidebar-tree-item .icon {
content: url(Images/profileIcon.png);
}
.heap-snapshot-sidebar-tree-item.small .icon {
content: url(Images/profileSmallIcon.png);
}
.heap-snapshot-view {
display: none;
overflow: hidden;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.heap-snapshot-view.visible {
display: block;
}
.heap-snapshot-view .data-grid {
border: none;
height: 100%;
}
|