rack-mini-profiler 0.10.2 → 0.10.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -1
- data/README.md +14 -0
- data/lib/html/includes.css +303 -461
- data/lib/html/includes.js +16 -7
- data/lib/html/{includes.less → includes.scss} +50 -49
- data/lib/html/includes.tmpl +1 -1
- data/lib/mini_profiler/asset_version.rb +1 -1
- data/lib/mini_profiler/profiler.rb +3 -13
- data/lib/mini_profiler/storage/redis_store.rb +30 -11
- data/lib/mini_profiler/timer_struct/sql.rb +5 -2
- data/lib/mini_profiler/version.rb +1 -1
- data/lib/patches/db/mysql2.rb +1 -1
- data/lib/patches/db/oracle_enhanced.rb +1 -1
- data/lib/patches/db/pg.rb +32 -7
- data/rack-mini-profiler.gemspec +2 -3
- metadata +8 -22
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95c41a418f4dba907b768b7c03f2bcb57d726e29
|
4
|
+
data.tar.gz: 1dc4e923440be3b8b8230bce372051cc70569d78
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3de6ae27c0700dd63208478bc39a0b9f5b47f4c1fa82ac137f7529fa265acc6b310afda9cf06db7bb2e66e2a9e47dd4d3f2113370589f32c399333aa72e95a32
|
7
|
+
data.tar.gz: efa1662cc45ea54d1349a4b9529d14c5066cbd8761dbdc43da04a46c4224f82e0144e4fe0019c5735db4ff5a3ecf9566e664d64a920d51ea0a4b6008ff082336
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,15 @@
|
|
1
1
|
# CHANGELOG
|
2
2
|
|
3
|
-
## 0.10.
|
3
|
+
## 0.10.3 2017-05-17
|
4
|
+
|
5
|
+
- [FEATURE] log binds for pg @neznauy
|
6
|
+
- [FIX] use async exec pg monkey patch instead of exec
|
7
|
+
- [FEATURE] nuke less css and use sass instead
|
8
|
+
- [FIX] use jQuery on instead of bind
|
9
|
+
- [FIX] ensure redis get_unviewed_ids returns only ids that exist
|
10
|
+
- [FIX] correctly respect SCRIPT in env if it is sniffed by middleware
|
11
|
+
|
12
|
+
## 0.10.2 2017-02-08
|
4
13
|
|
5
14
|
- [FIX] improve turbolinks support
|
6
15
|
- [FEATURE] make location of mini_profiler injection customizable
|
data/README.md
CHANGED
@@ -180,6 +180,20 @@ rack-mini-profiler is designed with production profiling in mind. To enable that
|
|
180
180
|
end
|
181
181
|
```
|
182
182
|
|
183
|
+
Note:
|
184
|
+
|
185
|
+
Out-of-the-box we will initialize the autorization_mode to :whitelist in production. However, in some cases we may not be able to do it:
|
186
|
+
|
187
|
+
- If you are running in development or test we will not enable whitelist mode
|
188
|
+
- If you use `require: false` on rack_mini_profiler we are unlikely to be able to run the railstie
|
189
|
+
- If ou are running outside of rails we will not run the railstie
|
190
|
+
|
191
|
+
In those cases use:
|
192
|
+
|
193
|
+
```
|
194
|
+
Rack::MiniProfiler.config.authorization_mode = :whitelist
|
195
|
+
```
|
196
|
+
|
183
197
|
## Configuration
|
184
198
|
|
185
199
|
Various aspects of rack-mini-profiler's behavior can be configured when your app boots.
|
data/lib/html/includes.css
CHANGED
@@ -1,415 +1,272 @@
|
|
1
|
-
|
2
|
-
.profiler-queries {
|
1
|
+
@charset "UTF-8";
|
2
|
+
.profiler-result, .profiler-queries {
|
3
3
|
color: #555;
|
4
4
|
line-height: 1;
|
5
|
-
font-size: 12px;
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
.profiler-queries
|
17
|
-
|
18
|
-
|
19
|
-
.profiler-result
|
20
|
-
|
21
|
-
|
22
|
-
.profiler-queries
|
23
|
-
|
24
|
-
.profiler-queries
|
25
|
-
|
26
|
-
|
27
|
-
margin: 0;
|
28
|
-
padding: 0;
|
29
|
-
border: 0;
|
30
|
-
font-size: 100%;
|
31
|
-
font: inherit;
|
32
|
-
vertical-align: baseline;
|
33
|
-
background-color: transparent;
|
34
|
-
overflow: visible;
|
35
|
-
max-height: none;
|
36
|
-
}
|
37
|
-
.profiler-result table,
|
38
|
-
.profiler-queries table {
|
39
|
-
border-collapse: collapse;
|
40
|
-
border-spacing: 0;
|
41
|
-
}
|
42
|
-
.profiler-result a,
|
43
|
-
.profiler-queries a,
|
44
|
-
.profiler-result a:hover,
|
45
|
-
.profiler-queries a:hover {
|
46
|
-
cursor: pointer;
|
47
|
-
color: #0077cc;
|
48
|
-
}
|
49
|
-
.profiler-result a,
|
50
|
-
.profiler-queries a {
|
51
|
-
text-decoration: none;
|
52
|
-
}
|
53
|
-
.profiler-result a:hover,
|
54
|
-
.profiler-queries a:hover {
|
55
|
-
text-decoration: underline;
|
56
|
-
}
|
5
|
+
font-size: 12px; }
|
6
|
+
.profiler-result pre, .profiler-result code, .profiler-result label, .profiler-result table, .profiler-result tbody, .profiler-result thead, .profiler-result tfoot, .profiler-result tr, .profiler-result th, .profiler-result td, .profiler-queries pre, .profiler-queries code, .profiler-queries label, .profiler-queries table, .profiler-queries tbody, .profiler-queries thead, .profiler-queries tfoot, .profiler-queries tr, .profiler-queries th, .profiler-queries td {
|
7
|
+
margin: 0;
|
8
|
+
padding: 0;
|
9
|
+
border: 0;
|
10
|
+
font-size: 100%;
|
11
|
+
font: inherit;
|
12
|
+
vertical-align: baseline;
|
13
|
+
background-color: transparent;
|
14
|
+
overflow: visible;
|
15
|
+
max-height: none; }
|
16
|
+
.profiler-result table, .profiler-queries table {
|
17
|
+
border-collapse: collapse;
|
18
|
+
border-spacing: 0; }
|
19
|
+
.profiler-result a, .profiler-result a:hover, .profiler-queries a, .profiler-queries a:hover {
|
20
|
+
cursor: pointer;
|
21
|
+
color: #0077CC; }
|
22
|
+
.profiler-result a, .profiler-queries a {
|
23
|
+
text-decoration: none; }
|
24
|
+
.profiler-result a:hover, .profiler-queries a:hover {
|
25
|
+
text-decoration: underline; }
|
26
|
+
|
57
27
|
.profiler-result {
|
58
|
-
font-family: Helvetica, Arial, sans-serif;
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
}
|
63
|
-
.profiler-result
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
}
|
71
|
-
.profiler-result .profiler-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
}
|
77
|
-
.profiler-result .profiler-
|
78
|
-
|
79
|
-
|
80
|
-
}
|
81
|
-
.profiler-result
|
82
|
-
|
83
|
-
.profiler-result .profiler-
|
84
|
-
|
85
|
-
|
86
|
-
}
|
87
|
-
.profiler-result .profiler-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
}
|
96
|
-
.profiler-result .profiler-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
}
|
119
|
-
.profiler-result .profiler-
|
120
|
-
|
121
|
-
|
122
|
-
}
|
123
|
-
.profiler-result .profiler-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
}
|
143
|
-
.profiler-result .profiler-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
}
|
152
|
-
.profiler-result .profiler-queries
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
}
|
158
|
-
.profiler-result .profiler-queries
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
}
|
164
|
-
.profiler-result .profiler-queries
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
}
|
178
|
-
.profiler-result .profiler-queries
|
179
|
-
|
180
|
-
|
181
|
-
}
|
182
|
-
.profiler-result .profiler-queries
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
margin-bottom: 5px;
|
192
|
-
}
|
193
|
-
.profiler-result .profiler-queries .profiler-gap-info,
|
194
|
-
.profiler-result .profiler-queries .profiler-gap-info td {
|
195
|
-
background-color: #ccc;
|
196
|
-
}
|
197
|
-
.profiler-result .profiler-queries .profiler-gap-info .profiler-unit {
|
198
|
-
color: #777;
|
199
|
-
}
|
200
|
-
.profiler-result .profiler-queries .profiler-gap-info .profiler-info {
|
201
|
-
text-align: right;
|
202
|
-
}
|
203
|
-
.profiler-result .profiler-queries .profiler-gap-info.profiler-trivial-gaps {
|
204
|
-
display: none;
|
205
|
-
}
|
206
|
-
.profiler-result .profiler-queries .profiler-trivial-gap-container {
|
207
|
-
text-align: center;
|
208
|
-
}
|
209
|
-
.profiler-result .profiler-queries .str {
|
210
|
-
color: #800000;
|
211
|
-
}
|
212
|
-
.profiler-result .profiler-queries .kwd {
|
213
|
-
color: #00008b;
|
214
|
-
}
|
215
|
-
.profiler-result .profiler-queries .com {
|
216
|
-
color: #808080;
|
217
|
-
}
|
218
|
-
.profiler-result .profiler-queries .typ {
|
219
|
-
color: #2b91af;
|
220
|
-
}
|
221
|
-
.profiler-result .profiler-queries .lit {
|
222
|
-
color: #800000;
|
223
|
-
}
|
224
|
-
.profiler-result .profiler-queries .pun {
|
225
|
-
color: #000000;
|
226
|
-
}
|
227
|
-
.profiler-result .profiler-queries .pln {
|
228
|
-
color: #000000;
|
229
|
-
}
|
230
|
-
.profiler-result .profiler-queries .tag {
|
231
|
-
color: #800000;
|
232
|
-
}
|
233
|
-
.profiler-result .profiler-queries .atn {
|
234
|
-
color: #ff0000;
|
235
|
-
}
|
236
|
-
.profiler-result .profiler-queries .atv {
|
237
|
-
color: #0000ff;
|
238
|
-
}
|
239
|
-
.profiler-result .profiler-queries .dec {
|
240
|
-
color: #800080;
|
241
|
-
}
|
242
|
-
.profiler-result .profiler-warning,
|
243
|
-
.profiler-result .profiler-warning *,
|
244
|
-
.profiler-result .profiler-warning .profiler-queries-show,
|
245
|
-
.profiler-result .profiler-warning .profiler-queries-show .profiler-unit {
|
246
|
-
color: #f00;
|
247
|
-
}
|
248
|
-
.profiler-result .profiler-warning:hover,
|
249
|
-
.profiler-result .profiler-warning *:hover,
|
250
|
-
.profiler-result .profiler-warning .profiler-queries-show:hover,
|
251
|
-
.profiler-result .profiler-warning .profiler-queries-show .profiler-unit:hover {
|
252
|
-
color: #f00;
|
253
|
-
}
|
254
|
-
.profiler-result .profiler-nuclear {
|
255
|
-
color: #f00;
|
256
|
-
font-weight: bold;
|
257
|
-
padding-right: 2px;
|
258
|
-
}
|
259
|
-
.profiler-result .profiler-nuclear:hover {
|
260
|
-
color: #f00;
|
261
|
-
}
|
28
|
+
font-family: Helvetica, Arial, sans-serif; }
|
29
|
+
.profiler-result .profiler-toggle-duration-with-children {
|
30
|
+
float: right; }
|
31
|
+
.profiler-result table.profiler-client-timings {
|
32
|
+
margin-top: 10px; }
|
33
|
+
.profiler-result .profiler-label {
|
34
|
+
color: #555;
|
35
|
+
overflow: hidden;
|
36
|
+
text-overflow: ellipsis; }
|
37
|
+
.profiler-result .profiler-unit {
|
38
|
+
color: #aaa; }
|
39
|
+
.profiler-result .profiler-trivial {
|
40
|
+
display: none; }
|
41
|
+
.profiler-result .profiler-trivial td, .profiler-result .profiler-trivial td * {
|
42
|
+
color: #aaa !important; }
|
43
|
+
.profiler-result pre, .profiler-result code, .profiler-result .profiler-number, .profiler-result .profiler-unit {
|
44
|
+
font-family: Consolas, monospace, serif; }
|
45
|
+
.profiler-result .profiler-number {
|
46
|
+
color: #111; }
|
47
|
+
.profiler-result .profiler-info {
|
48
|
+
text-align: right; }
|
49
|
+
.profiler-result .profiler-info .profiler-name {
|
50
|
+
float: left; }
|
51
|
+
.profiler-result .profiler-info .profiler-server-time {
|
52
|
+
white-space: nowrap; }
|
53
|
+
.profiler-result .profiler-timings th {
|
54
|
+
background-color: #fff;
|
55
|
+
color: #aaa;
|
56
|
+
text-align: right; }
|
57
|
+
.profiler-result .profiler-timings th, .profiler-result .profiler-timings td {
|
58
|
+
white-space: nowrap; }
|
59
|
+
.profiler-result .profiler-timings .profiler-duration-with-children {
|
60
|
+
display: none; }
|
61
|
+
.profiler-result .profiler-timings .profiler-duration {
|
62
|
+
color: #111;
|
63
|
+
text-align: right; }
|
64
|
+
.profiler-result .profiler-timings .profiler-indent {
|
65
|
+
letter-spacing: 4px; }
|
66
|
+
.profiler-result .profiler-timings .profiler-queries-show .profiler-number, .profiler-result .profiler-timings .profiler-queries-show .profiler-unit {
|
67
|
+
color: #0077CC; }
|
68
|
+
.profiler-result .profiler-timings .profiler-queries-duration {
|
69
|
+
padding-left: 6px; }
|
70
|
+
.profiler-result .profiler-timings .profiler-percent-in-sql {
|
71
|
+
white-space: nowrap;
|
72
|
+
text-align: right; }
|
73
|
+
.profiler-result .profiler-timings tfoot td {
|
74
|
+
padding-top: 10px;
|
75
|
+
text-align: right; }
|
76
|
+
.profiler-result .profiler-timings tfoot td a {
|
77
|
+
font-size: 95%;
|
78
|
+
display: inline-block;
|
79
|
+
margin-left: 12px; }
|
80
|
+
.profiler-result .profiler-timings tfoot td a:first-child {
|
81
|
+
float: left;
|
82
|
+
margin-left: 0px; }
|
83
|
+
.profiler-result .profiler-timings tfoot td a.profiler-custom-link {
|
84
|
+
float: left; }
|
85
|
+
.profiler-result .profiler-queries {
|
86
|
+
font-family: Helvetica, Arial, sans-serif; }
|
87
|
+
.profiler-result .profiler-queries .profiler-stack-trace {
|
88
|
+
margin-bottom: 15px; }
|
89
|
+
.profiler-result .profiler-queries tbody tr {
|
90
|
+
border-bottom: 1px solid #f1f1f1; }
|
91
|
+
.profiler-result .profiler-queries tr {
|
92
|
+
background-color: #FFF; }
|
93
|
+
.profiler-result .profiler-queries tr.slow {
|
94
|
+
background-color: #FEE; }
|
95
|
+
.profiler-result .profiler-queries tr.very-slow {
|
96
|
+
background-color: #FDD; }
|
97
|
+
.profiler-result .profiler-queries tr.very-very-slow {
|
98
|
+
background-color: #FCC; }
|
99
|
+
.profiler-result .profiler-queries pre {
|
100
|
+
font-family: Consolas, monospace, serif;
|
101
|
+
white-space: pre-wrap; }
|
102
|
+
.profiler-result .profiler-queries th {
|
103
|
+
background-color: #fff;
|
104
|
+
border-bottom: 1px solid #555;
|
105
|
+
font-weight: bold;
|
106
|
+
padding: 15px;
|
107
|
+
white-space: nowrap; }
|
108
|
+
.profiler-result .profiler-queries td {
|
109
|
+
padding: 15px;
|
110
|
+
text-align: left; }
|
111
|
+
.profiler-result .profiler-queries td:last-child {
|
112
|
+
padding-right: 25px; }
|
113
|
+
.profiler-result .profiler-queries .profiler-since-start, .profiler-result .profiler-queries .profiler-duration {
|
114
|
+
text-align: right; }
|
115
|
+
.profiler-result .profiler-queries .profiler-info div {
|
116
|
+
text-align: right;
|
117
|
+
margin-bottom: 5px; }
|
118
|
+
.profiler-result .profiler-queries .profiler-gap-info, .profiler-result .profiler-queries .profiler-gap-info td {
|
119
|
+
background-color: #ccc; }
|
120
|
+
.profiler-result .profiler-queries .profiler-gap-info .profiler-unit {
|
121
|
+
color: #777; }
|
122
|
+
.profiler-result .profiler-queries .profiler-gap-info .profiler-info {
|
123
|
+
text-align: right; }
|
124
|
+
.profiler-result .profiler-queries .profiler-gap-info.profiler-trivial-gaps {
|
125
|
+
display: none; }
|
126
|
+
.profiler-result .profiler-queries .profiler-trivial-gap-container {
|
127
|
+
text-align: center; }
|
128
|
+
.profiler-result .profiler-queries .str {
|
129
|
+
color: maroon; }
|
130
|
+
.profiler-result .profiler-queries .kwd {
|
131
|
+
color: #00008b; }
|
132
|
+
.profiler-result .profiler-queries .com {
|
133
|
+
color: gray; }
|
134
|
+
.profiler-result .profiler-queries .typ {
|
135
|
+
color: #2b91af; }
|
136
|
+
.profiler-result .profiler-queries .lit {
|
137
|
+
color: maroon; }
|
138
|
+
.profiler-result .profiler-queries .pun {
|
139
|
+
color: #000; }
|
140
|
+
.profiler-result .profiler-queries .pln {
|
141
|
+
color: #000; }
|
142
|
+
.profiler-result .profiler-queries .tag {
|
143
|
+
color: maroon; }
|
144
|
+
.profiler-result .profiler-queries .atn {
|
145
|
+
color: red; }
|
146
|
+
.profiler-result .profiler-queries .atv {
|
147
|
+
color: blue; }
|
148
|
+
.profiler-result .profiler-queries .dec {
|
149
|
+
color: purple; }
|
150
|
+
.profiler-result .profiler-warning, .profiler-result .profiler-warning *, .profiler-result .profiler-warning .profiler-queries-show, .profiler-result .profiler-warning .profiler-queries-show .profiler-unit {
|
151
|
+
color: #f00; }
|
152
|
+
.profiler-result .profiler-warning:hover, .profiler-result .profiler-warning *:hover, .profiler-result .profiler-warning .profiler-queries-show:hover, .profiler-result .profiler-warning .profiler-queries-show .profiler-unit:hover {
|
153
|
+
color: #f00; }
|
154
|
+
.profiler-result .profiler-nuclear {
|
155
|
+
color: #f00;
|
156
|
+
font-weight: bold;
|
157
|
+
padding-right: 2px; }
|
158
|
+
.profiler-result .profiler-nuclear:hover {
|
159
|
+
color: #f00; }
|
160
|
+
|
262
161
|
.profiler-results {
|
263
162
|
z-index: 2147483643;
|
264
163
|
position: fixed;
|
265
|
-
top: 0px;
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
.profiler-results.profiler-left .profiler-controls {
|
273
|
-
|
274
|
-
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
.profiler-results.profiler-
|
293
|
-
|
294
|
-
}
|
295
|
-
.profiler-results .profiler-button,
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
.profiler-results .profiler-controls
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
.profiler-results .profiler-controls
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
.profiler-results .profiler-controls
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
}
|
370
|
-
|
371
|
-
display: none;
|
372
|
-
}
|
373
|
-
.profiler-results .profiler-popup .profiler-info .profiler-server-time {
|
374
|
-
font-size: 95%;
|
375
|
-
}
|
376
|
-
.profiler-results .profiler-popup .profiler-timings th,
|
377
|
-
.profiler-results .profiler-popup .profiler-timings td {
|
378
|
-
padding-left: 6px;
|
379
|
-
padding-right: 6px;
|
380
|
-
}
|
381
|
-
.profiler-results .profiler-popup .profiler-timings th {
|
382
|
-
font-size: 95%;
|
383
|
-
padding-bottom: 3px;
|
384
|
-
}
|
385
|
-
.profiler-results .profiler-popup .profiler-timings .profiler-label {
|
386
|
-
max-width: 275px;
|
387
|
-
}
|
388
|
-
.profiler-results .profiler-queries {
|
389
|
-
display: none;
|
390
|
-
z-index: 2147483643;
|
391
|
-
position: absolute;
|
392
|
-
overflow-y: auto;
|
393
|
-
overflow-x: auto;
|
394
|
-
background-color: #fff;
|
395
|
-
}
|
396
|
-
.profiler-results .profiler-queries th {
|
397
|
-
font-size: 17px;
|
398
|
-
}
|
399
|
-
.profiler-results.profiler-min .profiler-result {
|
400
|
-
display: none;
|
401
|
-
}
|
402
|
-
.profiler-results.profiler-min .profiler-controls span {
|
403
|
-
display: none;
|
404
|
-
}
|
405
|
-
.profiler-results.profiler-min .profiler-controls .profiler-min-max {
|
406
|
-
border-right: none;
|
407
|
-
padding: 0px;
|
408
|
-
margin: 0px;
|
409
|
-
}
|
410
|
-
.profiler-results .profiler-more-actions {
|
411
|
-
float: left;
|
412
|
-
}
|
164
|
+
top: 0px; }
|
165
|
+
.profiler-results.profiler-left {
|
166
|
+
left: 0px; }
|
167
|
+
.profiler-results.profiler-left.profiler-no-controls .profiler-totals, .profiler-results.profiler-left.profiler-no-controls .profiler-result:last-child .profiler-button, .profiler-results.profiler-left .profiler-controls {
|
168
|
+
-webkit-border-bottom-right-radius: 10px;
|
169
|
+
-moz-border-radius-bottomright: 10px;
|
170
|
+
border-bottom-right-radius: 10px; }
|
171
|
+
.profiler-results.profiler-left .profiler-button, .profiler-results.profiler-left .profiler-controls {
|
172
|
+
border-right: 1px solid #888; }
|
173
|
+
.profiler-results.profiler-right {
|
174
|
+
right: 0px; }
|
175
|
+
.profiler-results.profiler-right.profiler-no-controls .profiler-totals, .profiler-results.profiler-right.profiler-no-controls .profiler-result:last-child .profiler-button, .profiler-results.profiler-right .profiler-controls {
|
176
|
+
-webkit-border-bottom-left-radius: 10px;
|
177
|
+
-moz-border-radius-bottomleft: 10px;
|
178
|
+
border-bottom-left-radius: 10px; }
|
179
|
+
.profiler-results.profiler-right .profiler-button, .profiler-results.profiler-right .profiler-controls {
|
180
|
+
border-left: 1px solid #888; }
|
181
|
+
.profiler-results .profiler-button, .profiler-results .profiler-controls {
|
182
|
+
display: none;
|
183
|
+
z-index: 2147483640;
|
184
|
+
border-bottom: 1px solid #888;
|
185
|
+
background-color: #fff;
|
186
|
+
padding: 4px 7px;
|
187
|
+
text-align: right;
|
188
|
+
cursor: pointer; }
|
189
|
+
.profiler-results .profiler-button.profiler-button-active, .profiler-results .profiler-controls.profiler-button-active {
|
190
|
+
background-color: maroon; }
|
191
|
+
.profiler-results .profiler-button.profiler-button-active .profiler-number, .profiler-results .profiler-button.profiler-button-active .profiler-nuclear, .profiler-results .profiler-controls.profiler-button-active .profiler-number, .profiler-results .profiler-controls.profiler-button-active .profiler-nuclear {
|
192
|
+
color: #fff;
|
193
|
+
font-weight: bold; }
|
194
|
+
.profiler-results .profiler-button.profiler-button-active .profiler-unit, .profiler-results .profiler-controls.profiler-button-active .profiler-unit {
|
195
|
+
color: #fff;
|
196
|
+
font-weight: normal; }
|
197
|
+
.profiler-results .profiler-totals .profiler-reqs {
|
198
|
+
font-family: Consolas, monospace, serif;
|
199
|
+
font-size: 10px;
|
200
|
+
margin-left: 6px; }
|
201
|
+
.profiler-results .profiler-totals .profiler-reqs:before {
|
202
|
+
font-family: Consolas, monospace, serif;
|
203
|
+
content: "×";
|
204
|
+
margin-right: 1px; }
|
205
|
+
.profiler-results .profiler-controls {
|
206
|
+
display: block;
|
207
|
+
font-size: 12px;
|
208
|
+
font-family: Consolas, monospace, serif;
|
209
|
+
cursor: default;
|
210
|
+
text-align: center; }
|
211
|
+
.profiler-results .profiler-controls span {
|
212
|
+
border-right: 1px solid #aaa;
|
213
|
+
padding-right: 5px;
|
214
|
+
margin-right: 5px;
|
215
|
+
cursor: pointer; }
|
216
|
+
.profiler-results .profiler-controls span:last-child {
|
217
|
+
border-right: none; }
|
218
|
+
.profiler-results .profiler-popup {
|
219
|
+
display: none;
|
220
|
+
z-index: 2147483641;
|
221
|
+
position: absolute;
|
222
|
+
background-color: #fff;
|
223
|
+
border: 1px solid #aaa;
|
224
|
+
padding: 5px 10px;
|
225
|
+
text-align: left;
|
226
|
+
line-height: 18px;
|
227
|
+
overflow: auto;
|
228
|
+
-moz-box-shadow: 0px 1px 15px #555;
|
229
|
+
-webkit-box-shadow: 0px 1px 15px #555;
|
230
|
+
box-shadow: 0px 1px 15px #555; }
|
231
|
+
.profiler-results .profiler-popup .profiler-info {
|
232
|
+
margin-bottom: 3px;
|
233
|
+
padding-bottom: 2px;
|
234
|
+
border-bottom: 1px solid #ddd; }
|
235
|
+
.profiler-results .profiler-popup .profiler-info .profiler-name {
|
236
|
+
font-size: 110%;
|
237
|
+
font-weight: bold; }
|
238
|
+
.profiler-results .profiler-popup .profiler-info .profiler-name .profiler-overall-duration {
|
239
|
+
display: none; }
|
240
|
+
.profiler-results .profiler-popup .profiler-info .profiler-server-time {
|
241
|
+
font-size: 95%; }
|
242
|
+
.profiler-results .profiler-popup .profiler-timings th, .profiler-results .profiler-popup .profiler-timings td {
|
243
|
+
padding-left: 6px;
|
244
|
+
padding-right: 6px; }
|
245
|
+
.profiler-results .profiler-popup .profiler-timings th {
|
246
|
+
font-size: 95%;
|
247
|
+
padding-bottom: 3px; }
|
248
|
+
.profiler-results .profiler-popup .profiler-timings .profiler-label {
|
249
|
+
max-width: 275px; }
|
250
|
+
.profiler-results .profiler-queries {
|
251
|
+
display: none;
|
252
|
+
z-index: 2147483643;
|
253
|
+
position: absolute;
|
254
|
+
overflow-y: auto;
|
255
|
+
overflow-x: auto;
|
256
|
+
background-color: #fff; }
|
257
|
+
.profiler-results .profiler-queries th {
|
258
|
+
font-size: 17px; }
|
259
|
+
.profiler-results.profiler-min .profiler-result {
|
260
|
+
display: none; }
|
261
|
+
.profiler-results.profiler-min .profiler-controls span {
|
262
|
+
display: none; }
|
263
|
+
.profiler-results.profiler-min .profiler-controls .profiler-min-max {
|
264
|
+
border-right: none;
|
265
|
+
padding: 0px;
|
266
|
+
margin: 0px; }
|
267
|
+
.profiler-results .profiler-more-actions {
|
268
|
+
float: left; }
|
269
|
+
|
413
270
|
.profiler-queries-bg {
|
414
271
|
z-index: 2147483642;
|
415
272
|
display: none;
|
@@ -418,60 +275,45 @@
|
|
418
275
|
position: absolute;
|
419
276
|
top: 0px;
|
420
277
|
left: 0px;
|
421
|
-
min-width: 100%;
|
422
|
-
|
278
|
+
min-width: 100%; }
|
279
|
+
|
423
280
|
.profiler-result-full .profiler-result {
|
424
281
|
width: 950px;
|
425
|
-
margin: 30px auto;
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
.profiler-result-full .profiler-result .profiler-popup .profiler-timings
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
}
|
449
|
-
.profiler-result-full .profiler-result .profiler-
|
450
|
-
|
451
|
-
|
452
|
-
}
|
453
|
-
.profiler-result-full .profiler-result .profiler-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
width: 100%;
|
464
|
-
}
|
465
|
-
.profiler-result-full .profiler-result .profiler-queries th {
|
466
|
-
font-size: 16px;
|
467
|
-
color: #555;
|
468
|
-
line-height: 20px;
|
469
|
-
}
|
470
|
-
.profiler-result-full .profiler-result .profiler-queries td {
|
471
|
-
padding: 15px 10px;
|
472
|
-
text-align: left;
|
473
|
-
}
|
474
|
-
.profiler-result-full .profiler-result .profiler-queries .profiler-info div {
|
475
|
-
text-align: right;
|
476
|
-
margin-bottom: 5px;
|
477
|
-
}
|
282
|
+
margin: 30px auto; }
|
283
|
+
.profiler-result-full .profiler-result .profiler-button {
|
284
|
+
display: none; }
|
285
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-info {
|
286
|
+
font-size: 25px;
|
287
|
+
border-bottom: 1px solid #aaa;
|
288
|
+
padding-bottom: 3px;
|
289
|
+
margin-bottom: 25px; }
|
290
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-info .profiler-overall-duration {
|
291
|
+
padding-right: 20px;
|
292
|
+
font-size: 80%;
|
293
|
+
color: #888; }
|
294
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings td, .profiler-result-full .profiler-result .profiler-popup .profiler-timings th {
|
295
|
+
padding-left: 8px;
|
296
|
+
padding-right: 8px; }
|
297
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings th {
|
298
|
+
padding-bottom: 7px; }
|
299
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings td {
|
300
|
+
font-size: 14px;
|
301
|
+
padding-bottom: 4px; }
|
302
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings td:first-child {
|
303
|
+
padding-left: 10px; }
|
304
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings .profiler-label {
|
305
|
+
max-width: 550px; }
|
306
|
+
.profiler-result-full .profiler-result .profiler-queries {
|
307
|
+
margin: 25px 0; }
|
308
|
+
.profiler-result-full .profiler-result .profiler-queries table {
|
309
|
+
width: 100%; }
|
310
|
+
.profiler-result-full .profiler-result .profiler-queries th {
|
311
|
+
font-size: 16px;
|
312
|
+
color: #555;
|
313
|
+
line-height: 20px; }
|
314
|
+
.profiler-result-full .profiler-result .profiler-queries td {
|
315
|
+
padding: 15px 10px;
|
316
|
+
text-align: left; }
|
317
|
+
.profiler-result-full .profiler-result .profiler-queries .profiler-info div {
|
318
|
+
text-align: right;
|
319
|
+
margin-bottom: 5px; }
|