mini-sharp-hub 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/mini-sharp-hub.gemspec +12 -0
- data/rack-mini-profiler-4.0.1/CHANGELOG.md +424 -0
- data/rack-mini-profiler-4.0.1/README.md +542 -0
- data/rack-mini-profiler-4.0.1/lib/enable_rails_patches.rb +5 -0
- data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/USAGE +9 -0
- data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/install_generator.rb +13 -0
- data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/templates/rack_mini_profiler.rb +8 -0
- data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/USAGE +2 -0
- data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/install_generator.rb +16 -0
- data/rack-mini-profiler-4.0.1/lib/html/dot.1.1.2.min.js +2 -0
- data/rack-mini-profiler-4.0.1/lib/html/includes.css +474 -0
- data/rack-mini-profiler-4.0.1/lib/html/includes.js +1520 -0
- data/rack-mini-profiler-4.0.1/lib/html/includes.scss +698 -0
- data/rack-mini-profiler-4.0.1/lib/html/includes.tmpl +333 -0
- data/rack-mini-profiler-4.0.1/lib/html/pretty-print.js +810 -0
- data/rack-mini-profiler-4.0.1/lib/html/profile_handler.js +1 -0
- data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.css +3 -0
- data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.js +2 -0
- data/rack-mini-profiler-4.0.1/lib/html/share.html +10 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/LICENSE +21 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/README.md +3 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/demangle-cpp.1768f4cc.js +4 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-16x16.f74b3187.png +0 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-32x32.bc503437.png +0 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/file-format-schema.json +324 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-regular.css +8 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff +0 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff2 +0 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/import.8ae8aa3d.js +123 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/index.html +2 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/release.txt +3 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/reset.8c46b7a1.css +2 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/source-map.438fa06b.js +24 -0
- data/rack-mini-profiler-4.0.1/lib/html/speedscope/speedscope.f27db165.js +193 -0
- data/rack-mini-profiler-4.0.1/lib/html/vendor.js +848 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/actions.rb +157 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/asset_version.rb +6 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/client_settings.rb +127 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/config.rb +146 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/context.rb +14 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/gc_profiler.rb +158 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/profiling_methods.rb +167 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/snapshots_transporter.rb +111 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/abstract_store.rb +97 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/file_store.rb +179 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memcache_store.rb +105 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memory_store.rb +233 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/redis_store.rb +353 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage.rb +7 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/base.rb +39 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/client.rb +90 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/custom.rb +25 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/page.rb +146 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/request.rb +186 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/sql.rb +89 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct.rb +8 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/version.rb +8 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler/views.rb +198 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler.rb +670 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie.rb +234 -0
- data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie_methods.rb +61 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/activerecord.rb +44 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/mongo.rb +18 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/moped.rb +14 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/alias_method.rb +30 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/prepend.rb +34 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2.rb +7 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/neo4j.rb +16 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/nobrainer.rb +31 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/oracle_enhanced.rb +70 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/pg/alias_method.rb +121 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/pg/prepend.rb +115 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/pg.rb +7 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/plucky.rb +49 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/riak.rb +105 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/rsolr.rb +26 -0
- data/rack-mini-profiler-4.0.1/lib/patches/db/sequel.rb +12 -0
- data/rack-mini-profiler-4.0.1/lib/patches/net_patches.rb +27 -0
- data/rack-mini-profiler-4.0.1/lib/patches/sql_patches.rb +74 -0
- data/rack-mini-profiler-4.0.1/lib/prepend_mysql2_patch.rb +5 -0
- data/rack-mini-profiler-4.0.1/lib/prepend_net_http_patch.rb +5 -0
- data/rack-mini-profiler-4.0.1/lib/prepend_pg_patch.rb +5 -0
- data/rack-mini-profiler-4.0.1/lib/rack-mini-profiler.rb +13 -0
- data/rack-mini-profiler-4.0.1/rack-mini-profiler.gemspec +49 -0
- metadata +125 -0
|
@@ -0,0 +1,474 @@
|
|
|
1
|
+
@charset "UTF-8";
|
|
2
|
+
.mp-snapshots,
|
|
3
|
+
.profiler-result,
|
|
4
|
+
.profiler-queries {
|
|
5
|
+
color: #555;
|
|
6
|
+
line-height: 1;
|
|
7
|
+
font-size: 12px; }
|
|
8
|
+
.mp-snapshots pre,
|
|
9
|
+
.mp-snapshots code,
|
|
10
|
+
.mp-snapshots label,
|
|
11
|
+
.mp-snapshots table,
|
|
12
|
+
.mp-snapshots tbody,
|
|
13
|
+
.mp-snapshots thead,
|
|
14
|
+
.mp-snapshots tfoot,
|
|
15
|
+
.mp-snapshots tr,
|
|
16
|
+
.mp-snapshots th,
|
|
17
|
+
.mp-snapshots td,
|
|
18
|
+
.profiler-result pre,
|
|
19
|
+
.profiler-result code,
|
|
20
|
+
.profiler-result label,
|
|
21
|
+
.profiler-result table,
|
|
22
|
+
.profiler-result tbody,
|
|
23
|
+
.profiler-result thead,
|
|
24
|
+
.profiler-result tfoot,
|
|
25
|
+
.profiler-result tr,
|
|
26
|
+
.profiler-result th,
|
|
27
|
+
.profiler-result td,
|
|
28
|
+
.profiler-queries pre,
|
|
29
|
+
.profiler-queries code,
|
|
30
|
+
.profiler-queries label,
|
|
31
|
+
.profiler-queries table,
|
|
32
|
+
.profiler-queries tbody,
|
|
33
|
+
.profiler-queries thead,
|
|
34
|
+
.profiler-queries tfoot,
|
|
35
|
+
.profiler-queries tr,
|
|
36
|
+
.profiler-queries th,
|
|
37
|
+
.profiler-queries td {
|
|
38
|
+
margin: 0;
|
|
39
|
+
padding: 0;
|
|
40
|
+
border: 0;
|
|
41
|
+
font-size: 100%;
|
|
42
|
+
font: inherit;
|
|
43
|
+
vertical-align: baseline;
|
|
44
|
+
background-color: transparent;
|
|
45
|
+
overflow: visible;
|
|
46
|
+
max-height: none; }
|
|
47
|
+
.mp-snapshots table,
|
|
48
|
+
.profiler-result table,
|
|
49
|
+
.profiler-queries table {
|
|
50
|
+
border-collapse: collapse;
|
|
51
|
+
border-spacing: 0; }
|
|
52
|
+
.mp-snapshots a,
|
|
53
|
+
.mp-snapshots a:hover,
|
|
54
|
+
.profiler-result a,
|
|
55
|
+
.profiler-result a:hover,
|
|
56
|
+
.profiler-queries a,
|
|
57
|
+
.profiler-queries a:hover {
|
|
58
|
+
cursor: pointer;
|
|
59
|
+
color: #0077cc; }
|
|
60
|
+
.mp-snapshots a,
|
|
61
|
+
.profiler-result a,
|
|
62
|
+
.profiler-queries a {
|
|
63
|
+
text-decoration: none; }
|
|
64
|
+
.mp-snapshots a:hover,
|
|
65
|
+
.profiler-result a:hover,
|
|
66
|
+
.profiler-queries a:hover {
|
|
67
|
+
text-decoration: underline; }
|
|
68
|
+
.mp-snapshots .custom-fields-title,
|
|
69
|
+
.profiler-result .custom-fields-title,
|
|
70
|
+
.profiler-queries .custom-fields-title {
|
|
71
|
+
color: #555;
|
|
72
|
+
font-family: Helvetica, Arial, sans-serif;
|
|
73
|
+
font-size: 14px; }
|
|
74
|
+
.mp-snapshots .ta-left,
|
|
75
|
+
.profiler-result .ta-left,
|
|
76
|
+
.profiler-queries .ta-left {
|
|
77
|
+
text-align: left; }
|
|
78
|
+
.mp-snapshots .ta-right,
|
|
79
|
+
.profiler-result .ta-right,
|
|
80
|
+
.profiler-queries .ta-right {
|
|
81
|
+
text-align: right; }
|
|
82
|
+
|
|
83
|
+
.profiler-result {
|
|
84
|
+
font-family: Helvetica, Arial, sans-serif; }
|
|
85
|
+
.profiler-result .profiler-toggle-duration-with-children {
|
|
86
|
+
float: right; }
|
|
87
|
+
.profiler-result .profiler-snapshots-page-link {
|
|
88
|
+
float: left; }
|
|
89
|
+
.profiler-result table.profiler-client-timings {
|
|
90
|
+
margin-top: 10px; }
|
|
91
|
+
.profiler-result .profiler-label {
|
|
92
|
+
color: #555;
|
|
93
|
+
overflow: hidden;
|
|
94
|
+
text-overflow: ellipsis; }
|
|
95
|
+
.profiler-result .profiler-unit {
|
|
96
|
+
color: #767676; }
|
|
97
|
+
.profiler-result .profiler-trivial {
|
|
98
|
+
display: none; }
|
|
99
|
+
.profiler-result .profiler-trivial td,
|
|
100
|
+
.profiler-result .profiler-trivial td * {
|
|
101
|
+
color: #767676 !important; }
|
|
102
|
+
.profiler-result pre,
|
|
103
|
+
.profiler-result code,
|
|
104
|
+
.profiler-result .profiler-number,
|
|
105
|
+
.profiler-result .profiler-unit {
|
|
106
|
+
font-family: Consolas, monospace, serif; }
|
|
107
|
+
.profiler-result .profiler-number {
|
|
108
|
+
color: #111;
|
|
109
|
+
display: inline-block; }
|
|
110
|
+
.profiler-result .profiler-info {
|
|
111
|
+
text-align: right; }
|
|
112
|
+
.profiler-result .profiler-info .profiler-name {
|
|
113
|
+
float: left; }
|
|
114
|
+
.profiler-result .profiler-info .profiler-server-time {
|
|
115
|
+
white-space: nowrap; }
|
|
116
|
+
.profiler-result .profiler-info .profiler-number {
|
|
117
|
+
display: block; }
|
|
118
|
+
.profiler-result .profiler-timings th {
|
|
119
|
+
background-color: #fff;
|
|
120
|
+
color: #767676;
|
|
121
|
+
text-align: right; }
|
|
122
|
+
.profiler-result .profiler-timings th,
|
|
123
|
+
.profiler-result .profiler-timings td {
|
|
124
|
+
white-space: nowrap; }
|
|
125
|
+
.profiler-result .profiler-timings .profiler-duration-with-children {
|
|
126
|
+
display: none; }
|
|
127
|
+
.profiler-result .profiler-timings .profiler-duration {
|
|
128
|
+
color: #111;
|
|
129
|
+
text-align: right; }
|
|
130
|
+
.profiler-result .profiler-timings .profiler-indent {
|
|
131
|
+
letter-spacing: 4px; }
|
|
132
|
+
.profiler-result .profiler-timings .profiler-queries-show .profiler-number,
|
|
133
|
+
.profiler-result .profiler-timings .profiler-queries-show .profiler-unit {
|
|
134
|
+
color: #0077cc; }
|
|
135
|
+
.profiler-result .profiler-timings .profiler-queries-duration {
|
|
136
|
+
padding-left: 6px; }
|
|
137
|
+
.profiler-result .profiler-timings .profiler-percent-in-sql {
|
|
138
|
+
white-space: nowrap; }
|
|
139
|
+
.profiler-result .profiler-timings tfoot tr td:last-child {
|
|
140
|
+
text-align: right; }
|
|
141
|
+
.profiler-result .profiler-timings-summary {
|
|
142
|
+
display: flex;
|
|
143
|
+
justify-content: space-between;
|
|
144
|
+
padding-top: 10px; }
|
|
145
|
+
.profiler-result .profiler-timings-summary a {
|
|
146
|
+
font-size: 95%;
|
|
147
|
+
display: inline-block;
|
|
148
|
+
margin-left: 12px; }
|
|
149
|
+
.profiler-result .profiler-timings-summary a:first-child {
|
|
150
|
+
float: left;
|
|
151
|
+
margin-left: 0px; }
|
|
152
|
+
.profiler-result .profiler-timings-summary a.profiler-custom-link {
|
|
153
|
+
float: left; }
|
|
154
|
+
.profiler-result .profiler-queries {
|
|
155
|
+
font-family: Helvetica, Arial, sans-serif; }
|
|
156
|
+
.profiler-result .profiler-queries .profiler-stack-trace {
|
|
157
|
+
margin-bottom: 15px; }
|
|
158
|
+
.profiler-result .profiler-queries tbody tr {
|
|
159
|
+
border-bottom: 1px solid #f1f1f1; }
|
|
160
|
+
.profiler-result .profiler-queries tr {
|
|
161
|
+
background-color: #fff; }
|
|
162
|
+
.profiler-result .profiler-queries tr.higlight-animate {
|
|
163
|
+
animation: highlight-in 3s; }
|
|
164
|
+
.profiler-result .profiler-queries tr.slow {
|
|
165
|
+
background-color: #fee; }
|
|
166
|
+
.profiler-result .profiler-queries tr.very-slow {
|
|
167
|
+
background-color: #fdd; }
|
|
168
|
+
.profiler-result .profiler-queries tr.very-very-slow {
|
|
169
|
+
background-color: #fcc; }
|
|
170
|
+
.profiler-result .profiler-queries tr.cached {
|
|
171
|
+
background-color: #f2f0ef; }
|
|
172
|
+
.profiler-result .profiler-queries span.cached {
|
|
173
|
+
color: #818589; }
|
|
174
|
+
.profiler-result .profiler-queries span.cached + pre {
|
|
175
|
+
display: inline; }
|
|
176
|
+
.profiler-result .profiler-queries pre {
|
|
177
|
+
font-family: Consolas, monospace, serif;
|
|
178
|
+
white-space: pre-wrap; }
|
|
179
|
+
.profiler-result .profiler-queries th {
|
|
180
|
+
background-color: #fff;
|
|
181
|
+
border-bottom: 1px solid #555;
|
|
182
|
+
font-weight: bold;
|
|
183
|
+
padding: 15px;
|
|
184
|
+
white-space: nowrap; }
|
|
185
|
+
.profiler-result .profiler-queries td {
|
|
186
|
+
padding: 15px;
|
|
187
|
+
text-align: left; }
|
|
188
|
+
.profiler-result .profiler-queries td:last-child {
|
|
189
|
+
padding-right: 25px; }
|
|
190
|
+
.profiler-result .profiler-queries .profiler-since-start,
|
|
191
|
+
.profiler-result .profiler-queries .profiler-duration {
|
|
192
|
+
text-align: right; }
|
|
193
|
+
.profiler-result .profiler-queries .profiler-info div {
|
|
194
|
+
text-align: right;
|
|
195
|
+
margin-bottom: 5px; }
|
|
196
|
+
.profiler-result .profiler-queries .profiler-gap-info,
|
|
197
|
+
.profiler-result .profiler-queries .profiler-gap-info td {
|
|
198
|
+
background-color: #ccc; }
|
|
199
|
+
.profiler-result .profiler-queries .profiler-gap-info .profiler-unit {
|
|
200
|
+
color: #777; }
|
|
201
|
+
.profiler-result .profiler-queries .profiler-gap-info .profiler-info {
|
|
202
|
+
text-align: right; }
|
|
203
|
+
.profiler-result .profiler-queries .profiler-gap-info.profiler-trivial-gaps {
|
|
204
|
+
display: none; }
|
|
205
|
+
.profiler-result .profiler-queries .profiler-trivial-gap-container {
|
|
206
|
+
text-align: center; }
|
|
207
|
+
.profiler-result .profiler-queries .str {
|
|
208
|
+
color: maroon; }
|
|
209
|
+
.profiler-result .profiler-queries .kwd {
|
|
210
|
+
color: #00008b; }
|
|
211
|
+
.profiler-result .profiler-queries .com {
|
|
212
|
+
color: gray; }
|
|
213
|
+
.profiler-result .profiler-queries .typ {
|
|
214
|
+
color: #2b91af; }
|
|
215
|
+
.profiler-result .profiler-queries .lit {
|
|
216
|
+
color: maroon; }
|
|
217
|
+
.profiler-result .profiler-queries .pun {
|
|
218
|
+
color: #000; }
|
|
219
|
+
.profiler-result .profiler-queries .pln {
|
|
220
|
+
color: #000; }
|
|
221
|
+
.profiler-result .profiler-queries .tag {
|
|
222
|
+
color: maroon; }
|
|
223
|
+
.profiler-result .profiler-queries .atn {
|
|
224
|
+
color: red; }
|
|
225
|
+
.profiler-result .profiler-queries .atv {
|
|
226
|
+
color: blue; }
|
|
227
|
+
.profiler-result .profiler-queries .dec {
|
|
228
|
+
color: purple; }
|
|
229
|
+
.profiler-result .profiler-warning,
|
|
230
|
+
.profiler-result .profiler-warning *,
|
|
231
|
+
.profiler-result .profiler-warning .profiler-queries-show,
|
|
232
|
+
.profiler-result .profiler-warning .profiler-queries-show .profiler-unit {
|
|
233
|
+
color: #f00; }
|
|
234
|
+
.profiler-result .profiler-warning:hover,
|
|
235
|
+
.profiler-result .profiler-warning *:hover,
|
|
236
|
+
.profiler-result .profiler-warning .profiler-queries-show:hover,
|
|
237
|
+
.profiler-result .profiler-warning .profiler-queries-show .profiler-unit:hover {
|
|
238
|
+
color: #f00; }
|
|
239
|
+
.profiler-result .profiler-nuclear {
|
|
240
|
+
color: #f00;
|
|
241
|
+
font-weight: bold;
|
|
242
|
+
padding-right: 2px; }
|
|
243
|
+
.profiler-result .profiler-nuclear:hover {
|
|
244
|
+
color: #f00; }
|
|
245
|
+
|
|
246
|
+
.profiler-results {
|
|
247
|
+
z-index: 2147483643;
|
|
248
|
+
position: fixed; }
|
|
249
|
+
.profiler-results.profiler-left .profiler-button {
|
|
250
|
+
text-align: left; }
|
|
251
|
+
.profiler-results.profiler-right .profiler-button {
|
|
252
|
+
text-align: right; }
|
|
253
|
+
.profiler-results .profiler-button > .profiler-duration-milliseconds {
|
|
254
|
+
min-width: 70px; }
|
|
255
|
+
.profiler-results .profiler-button > .profiler-sql-count {
|
|
256
|
+
min-width: 55px; }
|
|
257
|
+
.profiler-results .profiler-button > .profiler-name {
|
|
258
|
+
min-width: 190px;
|
|
259
|
+
margin-left: 3px; }
|
|
260
|
+
.profiler-results .profiler-button > .profiler-number {
|
|
261
|
+
text-align: right; }
|
|
262
|
+
.profiler-results.profiler-top {
|
|
263
|
+
top: 0px; }
|
|
264
|
+
.profiler-results.profiler-top.profiler-left {
|
|
265
|
+
left: 0px; }
|
|
266
|
+
.profiler-results.profiler-top.profiler-left.profiler-no-controls .profiler-totals, .profiler-results.profiler-top.profiler-left.profiler-no-controls .profiler-result:last-child .profiler-button,
|
|
267
|
+
.profiler-results.profiler-top.profiler-left .profiler-controls {
|
|
268
|
+
border-bottom-right-radius: 10px; }
|
|
269
|
+
.profiler-results.profiler-top.profiler-left .profiler-button,
|
|
270
|
+
.profiler-results.profiler-top.profiler-left .profiler-controls {
|
|
271
|
+
border-right: 1px solid #888; }
|
|
272
|
+
.profiler-results.profiler-top.profiler-right {
|
|
273
|
+
right: 0px; }
|
|
274
|
+
.profiler-results.profiler-top.profiler-right.profiler-no-controls .profiler-totals, .profiler-results.profiler-top.profiler-right.profiler-no-controls .profiler-result:last-child .profiler-button,
|
|
275
|
+
.profiler-results.profiler-top.profiler-right .profiler-controls {
|
|
276
|
+
border-bottom-left-radius: 10px; }
|
|
277
|
+
.profiler-results.profiler-top.profiler-right .profiler-button,
|
|
278
|
+
.profiler-results.profiler-top.profiler-right .profiler-controls {
|
|
279
|
+
border-left: 1px solid #888; }
|
|
280
|
+
.profiler-results.profiler-bottom {
|
|
281
|
+
bottom: 0px; }
|
|
282
|
+
.profiler-results.profiler-bottom.profiler-left {
|
|
283
|
+
left: 0px; }
|
|
284
|
+
.profiler-results.profiler-bottom.profiler-left.profiler-no-controls .profiler-totals, .profiler-results.profiler-bottom.profiler-left.profiler-no-controls .profiler-result:first-child .profiler-button,
|
|
285
|
+
.profiler-results.profiler-bottom.profiler-left .profiler-controls {
|
|
286
|
+
border-top-right-radius: 10px; }
|
|
287
|
+
.profiler-results.profiler-bottom.profiler-left .profiler-button,
|
|
288
|
+
.profiler-results.profiler-bottom.profiler-left .profiler-controls {
|
|
289
|
+
border-right: 1px solid #888; }
|
|
290
|
+
.profiler-results.profiler-bottom.profiler-right {
|
|
291
|
+
right: 0px; }
|
|
292
|
+
.profiler-results.profiler-bottom.profiler-right.profiler-no-controls .profiler-totals, .profiler-results.profiler-bottom.profiler-right.profiler-no-controls .profiler-result:first-child .profiler-button,
|
|
293
|
+
.profiler-results.profiler-bottom.profiler-right .profiler-controls {
|
|
294
|
+
border-top-left-radius: 10px; }
|
|
295
|
+
.profiler-results.profiler-bottom.profiler-right .profiler-button,
|
|
296
|
+
.profiler-results.profiler-bottom.profiler-right .profiler-controls {
|
|
297
|
+
border-left: 1px solid #888; }
|
|
298
|
+
.profiler-results .profiler-button,
|
|
299
|
+
.profiler-results .profiler-controls {
|
|
300
|
+
display: none;
|
|
301
|
+
z-index: 2147483640;
|
|
302
|
+
border-bottom: 1px solid #888;
|
|
303
|
+
background-color: #fff;
|
|
304
|
+
padding: 4px 7px;
|
|
305
|
+
text-align: right;
|
|
306
|
+
cursor: pointer; }
|
|
307
|
+
.profiler-results .profiler-button.profiler-button-active,
|
|
308
|
+
.profiler-results .profiler-controls.profiler-button-active {
|
|
309
|
+
background-color: maroon; }
|
|
310
|
+
.profiler-results .profiler-button.profiler-button-active .profiler-number,
|
|
311
|
+
.profiler-results .profiler-button.profiler-button-active .profiler-nuclear,
|
|
312
|
+
.profiler-results .profiler-button.profiler-button-active .profiler-name,
|
|
313
|
+
.profiler-results .profiler-controls.profiler-button-active .profiler-number,
|
|
314
|
+
.profiler-results .profiler-controls.profiler-button-active .profiler-nuclear,
|
|
315
|
+
.profiler-results .profiler-controls.profiler-button-active .profiler-name {
|
|
316
|
+
color: #fff;
|
|
317
|
+
font-weight: bold; }
|
|
318
|
+
.profiler-results .profiler-button.profiler-button-active .profiler-unit,
|
|
319
|
+
.profiler-results .profiler-controls.profiler-button-active .profiler-unit {
|
|
320
|
+
color: #fff;
|
|
321
|
+
font-weight: normal; }
|
|
322
|
+
.profiler-results .profiler-totals .profiler-reqs {
|
|
323
|
+
font-family: Consolas, monospace, serif;
|
|
324
|
+
font-size: 10px;
|
|
325
|
+
margin-left: 6px; }
|
|
326
|
+
.profiler-results .profiler-totals .profiler-reqs:before {
|
|
327
|
+
font-family: Consolas, monospace, serif;
|
|
328
|
+
content: "×";
|
|
329
|
+
margin-right: 1px; }
|
|
330
|
+
.profiler-results .profiler-controls {
|
|
331
|
+
display: block;
|
|
332
|
+
font-size: 12px;
|
|
333
|
+
font-family: Consolas, monospace, serif;
|
|
334
|
+
cursor: default;
|
|
335
|
+
text-align: center; }
|
|
336
|
+
.profiler-results .profiler-controls span {
|
|
337
|
+
border-right: 1px solid #767676;
|
|
338
|
+
padding-right: 5px;
|
|
339
|
+
margin-right: 5px;
|
|
340
|
+
cursor: pointer; }
|
|
341
|
+
.profiler-results .profiler-controls span:last-child {
|
|
342
|
+
border-right: none; }
|
|
343
|
+
.profiler-results .profiler-popup {
|
|
344
|
+
display: none;
|
|
345
|
+
z-index: 2147483641;
|
|
346
|
+
position: absolute;
|
|
347
|
+
background-color: #fff;
|
|
348
|
+
border: 1px solid #aaa;
|
|
349
|
+
padding: 5px 10px;
|
|
350
|
+
text-align: left;
|
|
351
|
+
line-height: 18px;
|
|
352
|
+
overflow: auto;
|
|
353
|
+
max-width: 800px;
|
|
354
|
+
box-shadow: 0px 1px 15px #555; }
|
|
355
|
+
.profiler-results .profiler-popup .profiler-info {
|
|
356
|
+
margin-bottom: 3px;
|
|
357
|
+
padding-bottom: 2px;
|
|
358
|
+
border-bottom: 1px solid #ddd;
|
|
359
|
+
display: flex;
|
|
360
|
+
width: inherit; }
|
|
361
|
+
.profiler-results .profiler-popup .profiler-info .profiler-name {
|
|
362
|
+
overflow: hidden;
|
|
363
|
+
text-overflow: ellipsis;
|
|
364
|
+
text-align: left;
|
|
365
|
+
white-space: nowrap;
|
|
366
|
+
font-size: 110%;
|
|
367
|
+
font-weight: bold;
|
|
368
|
+
padding-right: 10px; }
|
|
369
|
+
.profiler-results .profiler-popup .profiler-info .profiler-name .profiler-overall-duration {
|
|
370
|
+
display: none; }
|
|
371
|
+
.profiler-results .profiler-popup .profiler-info .profiler-server-time {
|
|
372
|
+
font-size: 95%; }
|
|
373
|
+
.profiler-results .profiler-popup .profiler-timings th,
|
|
374
|
+
.profiler-results .profiler-popup .profiler-timings td {
|
|
375
|
+
padding-left: 6px;
|
|
376
|
+
padding-right: 6px; }
|
|
377
|
+
.profiler-results .profiler-popup .profiler-timings th {
|
|
378
|
+
font-size: 95%;
|
|
379
|
+
padding-bottom: 3px; }
|
|
380
|
+
.profiler-results .profiler-popup .profiler-timings .profiler-label {
|
|
381
|
+
max-width: 275px; }
|
|
382
|
+
.profiler-results .profiler-queries {
|
|
383
|
+
display: none;
|
|
384
|
+
z-index: 2147483643;
|
|
385
|
+
position: absolute;
|
|
386
|
+
overflow-y: auto;
|
|
387
|
+
overflow-x: auto;
|
|
388
|
+
background-color: #fff; }
|
|
389
|
+
.profiler-results .profiler-queries th {
|
|
390
|
+
font-size: 17px; }
|
|
391
|
+
.profiler-results.profiler-min .profiler-result {
|
|
392
|
+
display: none; }
|
|
393
|
+
.profiler-results.profiler-min .profiler-controls span {
|
|
394
|
+
display: none; }
|
|
395
|
+
.profiler-results.profiler-min .profiler-controls .profiler-min-max {
|
|
396
|
+
border-right: none;
|
|
397
|
+
padding: 0px;
|
|
398
|
+
margin: 0px; }
|
|
399
|
+
.profiler-results .profiler-more-actions {
|
|
400
|
+
float: left; }
|
|
401
|
+
@media print {
|
|
402
|
+
.profiler-results {
|
|
403
|
+
display: none; } }
|
|
404
|
+
.profiler-queries-bg {
|
|
405
|
+
z-index: 2147483642;
|
|
406
|
+
display: none;
|
|
407
|
+
background: #000;
|
|
408
|
+
opacity: 0.7;
|
|
409
|
+
position: absolute;
|
|
410
|
+
top: 0px;
|
|
411
|
+
left: 0px;
|
|
412
|
+
min-width: 100%; }
|
|
413
|
+
|
|
414
|
+
.profiler-result-full .profiler-result {
|
|
415
|
+
width: 950px;
|
|
416
|
+
margin: 30px auto; }
|
|
417
|
+
.profiler-result-full .profiler-result .profiler-button {
|
|
418
|
+
display: none; }
|
|
419
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-info {
|
|
420
|
+
font-size: 25px;
|
|
421
|
+
border-bottom: 1px solid #767676;
|
|
422
|
+
padding-bottom: 3px;
|
|
423
|
+
margin-bottom: 25px; }
|
|
424
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-info .profiler-overall-duration {
|
|
425
|
+
padding-right: 20px;
|
|
426
|
+
font-size: 80%;
|
|
427
|
+
color: #888; }
|
|
428
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings td,
|
|
429
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings th {
|
|
430
|
+
padding-left: 8px;
|
|
431
|
+
padding-right: 8px; }
|
|
432
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings th {
|
|
433
|
+
padding-bottom: 7px; }
|
|
434
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings td {
|
|
435
|
+
font-size: 14px;
|
|
436
|
+
padding-bottom: 4px; }
|
|
437
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings td:first-child {
|
|
438
|
+
padding-left: 10px; }
|
|
439
|
+
.profiler-result-full .profiler-result .profiler-popup .profiler-timings .profiler-label {
|
|
440
|
+
max-width: 550px; }
|
|
441
|
+
.profiler-result-full .profiler-result .profiler-queries {
|
|
442
|
+
margin: 25px 0; }
|
|
443
|
+
.profiler-result-full .profiler-result .profiler-queries table {
|
|
444
|
+
width: 100%; }
|
|
445
|
+
.profiler-result-full .profiler-result .profiler-queries th {
|
|
446
|
+
font-size: 16px;
|
|
447
|
+
color: #555;
|
|
448
|
+
line-height: 20px; }
|
|
449
|
+
.profiler-result-full .profiler-result .profiler-queries td {
|
|
450
|
+
padding: 15px 10px;
|
|
451
|
+
text-align: left; }
|
|
452
|
+
.profiler-result-full .profiler-result .profiler-queries .profiler-info div {
|
|
453
|
+
text-align: right;
|
|
454
|
+
margin-bottom: 5px; }
|
|
455
|
+
|
|
456
|
+
@keyframes highlight-in {
|
|
457
|
+
0% {
|
|
458
|
+
background: #ffffbb; }
|
|
459
|
+
100% {
|
|
460
|
+
background: #fff; } }
|
|
461
|
+
|
|
462
|
+
.mp-snapshots {
|
|
463
|
+
font-family: Helvetica, Arial, sans-serif;
|
|
464
|
+
font-size: 16px; }
|
|
465
|
+
.mp-snapshots .snapshots-table thead {
|
|
466
|
+
background: #6a737c;
|
|
467
|
+
color: #ffffff; }
|
|
468
|
+
.mp-snapshots .snapshots-table th, .mp-snapshots .snapshots-table td {
|
|
469
|
+
padding: 5px 10px;
|
|
470
|
+
box-sizing: border-box; }
|
|
471
|
+
.mp-snapshots .snapshots-table th:not(.request-group), .mp-snapshots .snapshots-table td:not(.request-group) {
|
|
472
|
+
text-align: center; }
|
|
473
|
+
.mp-snapshots .snapshots-table th {
|
|
474
|
+
border-right: 1px solid #ffffff; }
|