debug.css
2.16 KB
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#debugHost {
font-size: 12px;
color:#4a4a4a;
height: 100%;
}
#debugHostBtn a {
background: url('images/variables_on.png');
background: url('images/variables_on.svg'),linear-gradient(transparent, transparent);
}
.hashover #debugHostBtn a:hover {
background: url('images/variables_hover.png');
background: url('images/variables_hover.svg'),linear-gradient(transparent, transparent);
}
#debugHostBtn a.selected, #debugHostBtn a.selected:hover {
background: url('images/variables_off.png');
background: url('images/variables_off.svg'),linear-gradient(transparent, transparent);
}
#debugHeader .pageNameHeader {
padding-right: 0px;
}
#variablesClearLink {
display: inline-block;
margin-bottom: 15px;
}
#variablesClearLink:hover {
color: #0a6cd6;
}
#traceClearLink {
display: inline-block;
margin-bottom: 15px;
}
#traceClearLink:hover {
color: #0a6cd6;
}
#debugScrollContainer
{
overflow: auto;
width: 100%;
height: 100%;
-webkit-overflow-scrolling: touch;
}
#debugContainer {
padding: 10px 10px 10px 10px;
}
.variableName
{
font-weight: bold;
}
.variableDiv
{
margin-bottom: 20px;
line-height: 16px;
}
#variablesContainer {
padding-bottom: 5px;
/*overflow: auto;*/
}
#traceContainer {
padding-top: 15px;
/*padding: 0px 10px 10px 10px;*/
}
.debugToolbarButton
{
font-size: 1em;
color: #069;
}
.axEventBlock {
display: inline-block;
width: 100%;
margin: 5px 0px 5px 0px;
line-height: 21px;
}
/*a.axEventBlock:hover {
background-color: #069;
color: white;
}*/
.axTime {
margin: 0px 0px 0px 0px;
font-size: 11px;
color: #b1b3b5;
}
.axLabel {
margin: 0px 0px 5px 0px;
font-family: 'Trebuchet MS';
font-size: 14px;
font-weight: bold;
}
.lastAxEvent {
margin-bottom: 10px;
border-bottom: 1px solid #c2c2c2;
padding-bottom: 10px;
}
.axEvent {
margin: 0px 0px 5px 0px;
font-weight: bold;
}
.axCase {
margin: 0px 0px 5px 8px;
font-style: italic;
}
.axAction {
margin: 0px 0px 5px 13px;
}
#traceEmptyState.emptyStateContainer {
margin-top: 0px;
}
.debugLinksContainer {
text-align: right;
}