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.
Files changed (86) hide show
  1. checksums.yaml +7 -0
  2. data/mini-sharp-hub.gemspec +12 -0
  3. data/rack-mini-profiler-4.0.1/CHANGELOG.md +424 -0
  4. data/rack-mini-profiler-4.0.1/README.md +542 -0
  5. data/rack-mini-profiler-4.0.1/lib/enable_rails_patches.rb +5 -0
  6. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/USAGE +9 -0
  7. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/install_generator.rb +13 -0
  8. data/rack-mini-profiler-4.0.1/lib/generators/rack_mini_profiler/templates/rack_mini_profiler.rb +8 -0
  9. data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/USAGE +2 -0
  10. data/rack-mini-profiler-4.0.1/lib/generators/rack_profiler/install_generator.rb +16 -0
  11. data/rack-mini-profiler-4.0.1/lib/html/dot.1.1.2.min.js +2 -0
  12. data/rack-mini-profiler-4.0.1/lib/html/includes.css +474 -0
  13. data/rack-mini-profiler-4.0.1/lib/html/includes.js +1520 -0
  14. data/rack-mini-profiler-4.0.1/lib/html/includes.scss +698 -0
  15. data/rack-mini-profiler-4.0.1/lib/html/includes.tmpl +333 -0
  16. data/rack-mini-profiler-4.0.1/lib/html/pretty-print.js +810 -0
  17. data/rack-mini-profiler-4.0.1/lib/html/profile_handler.js +1 -0
  18. data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.css +3 -0
  19. data/rack-mini-profiler-4.0.1/lib/html/rack-mini-profiler.js +2 -0
  20. data/rack-mini-profiler-4.0.1/lib/html/share.html +10 -0
  21. data/rack-mini-profiler-4.0.1/lib/html/speedscope/LICENSE +21 -0
  22. data/rack-mini-profiler-4.0.1/lib/html/speedscope/README.md +3 -0
  23. data/rack-mini-profiler-4.0.1/lib/html/speedscope/demangle-cpp.1768f4cc.js +4 -0
  24. data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-16x16.f74b3187.png +0 -0
  25. data/rack-mini-profiler-4.0.1/lib/html/speedscope/favicon-32x32.bc503437.png +0 -0
  26. data/rack-mini-profiler-4.0.1/lib/html/speedscope/file-format-schema.json +324 -0
  27. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-regular.css +8 -0
  28. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff +0 -0
  29. data/rack-mini-profiler-4.0.1/lib/html/speedscope/fonts/source-code-pro-v13-regular.woff2 +0 -0
  30. data/rack-mini-profiler-4.0.1/lib/html/speedscope/import.8ae8aa3d.js +123 -0
  31. data/rack-mini-profiler-4.0.1/lib/html/speedscope/index.html +2 -0
  32. data/rack-mini-profiler-4.0.1/lib/html/speedscope/release.txt +3 -0
  33. data/rack-mini-profiler-4.0.1/lib/html/speedscope/reset.8c46b7a1.css +2 -0
  34. data/rack-mini-profiler-4.0.1/lib/html/speedscope/source-map.438fa06b.js +24 -0
  35. data/rack-mini-profiler-4.0.1/lib/html/speedscope/speedscope.f27db165.js +193 -0
  36. data/rack-mini-profiler-4.0.1/lib/html/vendor.js +848 -0
  37. data/rack-mini-profiler-4.0.1/lib/mini_profiler/actions.rb +157 -0
  38. data/rack-mini-profiler-4.0.1/lib/mini_profiler/asset_version.rb +6 -0
  39. data/rack-mini-profiler-4.0.1/lib/mini_profiler/client_settings.rb +127 -0
  40. data/rack-mini-profiler-4.0.1/lib/mini_profiler/config.rb +146 -0
  41. data/rack-mini-profiler-4.0.1/lib/mini_profiler/context.rb +14 -0
  42. data/rack-mini-profiler-4.0.1/lib/mini_profiler/gc_profiler.rb +158 -0
  43. data/rack-mini-profiler-4.0.1/lib/mini_profiler/profiling_methods.rb +167 -0
  44. data/rack-mini-profiler-4.0.1/lib/mini_profiler/snapshots_transporter.rb +111 -0
  45. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/abstract_store.rb +97 -0
  46. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/file_store.rb +179 -0
  47. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memcache_store.rb +105 -0
  48. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/memory_store.rb +233 -0
  49. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage/redis_store.rb +353 -0
  50. data/rack-mini-profiler-4.0.1/lib/mini_profiler/storage.rb +7 -0
  51. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/base.rb +39 -0
  52. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/client.rb +90 -0
  53. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/custom.rb +25 -0
  54. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/page.rb +146 -0
  55. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/request.rb +186 -0
  56. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct/sql.rb +89 -0
  57. data/rack-mini-profiler-4.0.1/lib/mini_profiler/timer_struct.rb +8 -0
  58. data/rack-mini-profiler-4.0.1/lib/mini_profiler/version.rb +8 -0
  59. data/rack-mini-profiler-4.0.1/lib/mini_profiler/views.rb +198 -0
  60. data/rack-mini-profiler-4.0.1/lib/mini_profiler.rb +670 -0
  61. data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie.rb +234 -0
  62. data/rack-mini-profiler-4.0.1/lib/mini_profiler_rails/railtie_methods.rb +61 -0
  63. data/rack-mini-profiler-4.0.1/lib/patches/db/activerecord.rb +44 -0
  64. data/rack-mini-profiler-4.0.1/lib/patches/db/mongo.rb +18 -0
  65. data/rack-mini-profiler-4.0.1/lib/patches/db/moped.rb +14 -0
  66. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/alias_method.rb +30 -0
  67. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2/prepend.rb +34 -0
  68. data/rack-mini-profiler-4.0.1/lib/patches/db/mysql2.rb +7 -0
  69. data/rack-mini-profiler-4.0.1/lib/patches/db/neo4j.rb +16 -0
  70. data/rack-mini-profiler-4.0.1/lib/patches/db/nobrainer.rb +31 -0
  71. data/rack-mini-profiler-4.0.1/lib/patches/db/oracle_enhanced.rb +70 -0
  72. data/rack-mini-profiler-4.0.1/lib/patches/db/pg/alias_method.rb +121 -0
  73. data/rack-mini-profiler-4.0.1/lib/patches/db/pg/prepend.rb +115 -0
  74. data/rack-mini-profiler-4.0.1/lib/patches/db/pg.rb +7 -0
  75. data/rack-mini-profiler-4.0.1/lib/patches/db/plucky.rb +49 -0
  76. data/rack-mini-profiler-4.0.1/lib/patches/db/riak.rb +105 -0
  77. data/rack-mini-profiler-4.0.1/lib/patches/db/rsolr.rb +26 -0
  78. data/rack-mini-profiler-4.0.1/lib/patches/db/sequel.rb +12 -0
  79. data/rack-mini-profiler-4.0.1/lib/patches/net_patches.rb +27 -0
  80. data/rack-mini-profiler-4.0.1/lib/patches/sql_patches.rb +74 -0
  81. data/rack-mini-profiler-4.0.1/lib/prepend_mysql2_patch.rb +5 -0
  82. data/rack-mini-profiler-4.0.1/lib/prepend_net_http_patch.rb +5 -0
  83. data/rack-mini-profiler-4.0.1/lib/prepend_pg_patch.rb +5 -0
  84. data/rack-mini-profiler-4.0.1/lib/rack-mini-profiler.rb +13 -0
  85. data/rack-mini-profiler-4.0.1/rack-mini-profiler.gemspec +49 -0
  86. metadata +125 -0
@@ -0,0 +1,698 @@
1
+ @mixin box-shadow($dx, $dy, $radius, $color) {
2
+ box-shadow: $dx $dy $radius $color;
3
+ }
4
+
5
+ $anchorColor: #0077cc;
6
+ $buttonBorderColor: #888;
7
+ $numberColor: #111;
8
+ $textColor: #555;
9
+ $mutedColor: #767676;
10
+ $normalFonts: Helvetica, Arial, sans-serif;
11
+ $codeFonts: Consolas, monospace, serif;
12
+ $zindex: 2147483640; // near 32bit max 2147483647
13
+
14
+ // do some resets
15
+ .mp-snapshots,
16
+ .profiler-result,
17
+ .profiler-queries {
18
+ color: $textColor;
19
+ line-height: 1;
20
+ font-size: 12px;
21
+
22
+ pre,
23
+ code,
24
+ label,
25
+ table,
26
+ tbody,
27
+ thead,
28
+ tfoot,
29
+ tr,
30
+ th,
31
+ td {
32
+ margin: 0;
33
+ padding: 0;
34
+ border: 0;
35
+ font-size: 100%;
36
+ font: inherit;
37
+ vertical-align: baseline;
38
+ background-color: transparent;
39
+ overflow: visible;
40
+ max-height: none;
41
+ }
42
+ table {
43
+ border-collapse: collapse;
44
+ border-spacing: 0;
45
+ }
46
+ a,
47
+ a:hover {
48
+ cursor: pointer;
49
+ color: $anchorColor;
50
+ }
51
+ a {
52
+ text-decoration: none;
53
+ &:hover {
54
+ text-decoration: underline;
55
+ }
56
+ }
57
+ .custom-fields-title {
58
+ color: $textColor;
59
+ font-family: $normalFonts;
60
+ font-size: 14px;
61
+ }
62
+ .ta-left { text-align: left; }
63
+ .ta-right { text-align: right; }
64
+ }
65
+
66
+ // styles shared between popup view and full view
67
+ .profiler-result {
68
+ .profiler-toggle-duration-with-children {
69
+ float: right;
70
+ }
71
+ .profiler-snapshots-page-link {
72
+ float: left;
73
+ }
74
+ table.profiler-client-timings {
75
+ margin-top: 10px;
76
+ }
77
+ font-family: $normalFonts;
78
+
79
+ .profiler-label {
80
+ color: $textColor;
81
+ overflow: hidden;
82
+ text-overflow: ellipsis;
83
+ }
84
+
85
+ .profiler-unit {
86
+ color: $mutedColor;
87
+ }
88
+
89
+ .profiler-trivial {
90
+ display: none;
91
+ td,
92
+ td * {
93
+ color: $mutedColor !important;
94
+ }
95
+ }
96
+
97
+ pre,
98
+ code,
99
+ .profiler-number,
100
+ .profiler-unit {
101
+ font-family: $codeFonts;
102
+ }
103
+
104
+ .profiler-number {
105
+ color: $numberColor;
106
+ display: inline-block;
107
+ }
108
+
109
+ .profiler-info {
110
+ text-align: right;
111
+ .profiler-name {
112
+ float: left;
113
+ }
114
+ .profiler-server-time {
115
+ white-space: nowrap;
116
+ }
117
+ .profiler-number {
118
+ display: block;
119
+ }
120
+ }
121
+
122
+ .profiler-timings {
123
+ th {
124
+ background-color: #fff;
125
+ color: $mutedColor;
126
+ text-align: right;
127
+ }
128
+ th,
129
+ td {
130
+ white-space: nowrap;
131
+ }
132
+ .profiler-duration-with-children {
133
+ display: none;
134
+ }
135
+ .profiler-duration {
136
+ color: $numberColor;
137
+ text-align: right;
138
+ }
139
+ .profiler-indent {
140
+ letter-spacing: 4px;
141
+ }
142
+ .profiler-queries-show {
143
+ .profiler-number,
144
+ .profiler-unit {
145
+ color: $anchorColor;
146
+ }
147
+ }
148
+ .profiler-queries-duration {
149
+ padding-left: 6px;
150
+ }
151
+ .profiler-percent-in-sql {
152
+ white-space: nowrap;
153
+ }
154
+ tfoot tr td:last-child {
155
+ text-align: right;
156
+ }
157
+ }
158
+
159
+ .profiler-timings-summary {
160
+ display: flex;
161
+ justify-content: space-between;
162
+ padding-top: 10px;
163
+
164
+ a {
165
+ font-size: 95%;
166
+ display: inline-block;
167
+ margin-left: 12px;
168
+
169
+ &:first-child {
170
+ float: left;
171
+ margin-left: 0px;
172
+ }
173
+ &.profiler-custom-link {
174
+ float: left;
175
+ }
176
+ }
177
+ }
178
+
179
+ .profiler-queries {
180
+ font-family: $normalFonts;
181
+
182
+ .profiler-stack-trace {
183
+ margin-bottom: 15px;
184
+ }
185
+
186
+ tbody tr {
187
+ border-bottom: 1px solid #f1f1f1;
188
+ }
189
+
190
+ tr {
191
+ background-color: #fff;
192
+ &.higlight-animate {
193
+ animation: highlight-in 3s;
194
+ }
195
+ }
196
+
197
+ tr.slow {
198
+ background-color: #fee;
199
+ }
200
+
201
+ tr.very-slow {
202
+ background-color: #fdd;
203
+ }
204
+
205
+ tr.very-very-slow {
206
+ background-color: #fcc;
207
+ }
208
+
209
+ tr.cached {
210
+ background-color: #f2f0ef;
211
+ }
212
+
213
+ span.cached {
214
+ color: #818589;
215
+ }
216
+
217
+ span.cached + pre {
218
+ display: inline;
219
+ }
220
+
221
+ pre {
222
+ font-family: $codeFonts;
223
+ white-space: pre-wrap;
224
+ }
225
+
226
+ th {
227
+ background-color: #fff;
228
+ border-bottom: 1px solid $textColor;
229
+ font-weight: bold;
230
+ padding: 15px;
231
+ white-space: nowrap;
232
+ }
233
+
234
+ td {
235
+ padding: 15px;
236
+ text-align: left;
237
+
238
+ &:last-child {
239
+ padding-right: 25px; // compensate for scrollbars
240
+ }
241
+ }
242
+
243
+ .profiler-since-start,
244
+ .profiler-duration {
245
+ text-align: right;
246
+ }
247
+
248
+ .profiler-info div {
249
+ text-align: right;
250
+ margin-bottom: 5px;
251
+ }
252
+
253
+ .profiler-gap-info,
254
+ .profiler-gap-info td {
255
+ background-color: #ccc;
256
+ }
257
+ .profiler-gap-info {
258
+ .profiler-unit {
259
+ color: #777;
260
+ }
261
+ .profiler-info {
262
+ text-align: right;
263
+ }
264
+ &.profiler-trivial-gaps {
265
+ display: none;
266
+ }
267
+ }
268
+
269
+ .profiler-trivial-gap-container {
270
+ text-align: center;
271
+ }
272
+
273
+ // prettify colors
274
+ .str {
275
+ color: maroon;
276
+ }
277
+ .kwd {
278
+ color: #00008b;
279
+ }
280
+ .com {
281
+ color: gray;
282
+ }
283
+ .typ {
284
+ color: #2b91af;
285
+ }
286
+ .lit {
287
+ color: maroon;
288
+ }
289
+ .pun {
290
+ color: #000;
291
+ }
292
+ .pln {
293
+ color: #000;
294
+ }
295
+ .tag {
296
+ color: maroon;
297
+ }
298
+ .atn {
299
+ color: red;
300
+ }
301
+ .atv {
302
+ color: blue;
303
+ }
304
+ .dec {
305
+ color: purple;
306
+ }
307
+ }
308
+
309
+ .profiler-warning,
310
+ .profiler-warning *,
311
+ .profiler-warning .profiler-queries-show,
312
+ .profiler-warning .profiler-queries-show .profiler-unit {
313
+ // i'm no good at css
314
+ color: #f00;
315
+ &:hover {
316
+ color: #f00;
317
+ }
318
+ }
319
+
320
+ .profiler-nuclear {
321
+ color: #f00;
322
+ &:hover {
323
+ color: #f00;
324
+ }
325
+ font-weight: bold;
326
+ padding-right: 2px;
327
+ }
328
+ }
329
+
330
+ // ajaxed-in results will be appended to this
331
+ .profiler-results {
332
+ z-index: $zindex + 3;
333
+ position: fixed;
334
+
335
+ $radius: 10px;
336
+
337
+ &.profiler-left {
338
+ .profiler-button {
339
+ text-align: left;
340
+ }
341
+ }
342
+
343
+ &.profiler-right {
344
+ .profiler-button {
345
+ text-align: right;
346
+ }
347
+ }
348
+
349
+ .profiler-button {
350
+ > .profiler-duration-milliseconds {
351
+ min-width: 70px;
352
+ }
353
+ > .profiler-sql-count {
354
+ min-width: 55px;
355
+ }
356
+ > .profiler-name {
357
+ min-width: 190px;
358
+ margin-left: 3px;
359
+ }
360
+ > .profiler-number {
361
+ text-align: right;
362
+ }
363
+ }
364
+
365
+ &.profiler-top {
366
+ top: 0px;
367
+
368
+ &.profiler-left {
369
+ left: 0px;
370
+
371
+ &.profiler-no-controls .profiler-totals,
372
+ &.profiler-no-controls .profiler-result:last-child .profiler-button,
373
+ .profiler-controls {
374
+ border-bottom-right-radius: $radius;
375
+ }
376
+
377
+ .profiler-button,
378
+ .profiler-controls {
379
+ border-right: 1px solid $buttonBorderColor;
380
+ }
381
+ }
382
+
383
+ &.profiler-right {
384
+ right: 0px;
385
+
386
+ &.profiler-no-controls .profiler-totals,
387
+ &.profiler-no-controls .profiler-result:last-child .profiler-button,
388
+ .profiler-controls {
389
+ border-bottom-left-radius: $radius;
390
+ }
391
+
392
+ .profiler-button,
393
+ .profiler-controls {
394
+ border-left: 1px solid $buttonBorderColor;
395
+ }
396
+ }
397
+ }
398
+
399
+ &.profiler-bottom {
400
+ bottom: 0px;
401
+
402
+ &.profiler-left {
403
+ left: 0px;
404
+
405
+ &.profiler-no-controls .profiler-totals,
406
+ &.profiler-no-controls .profiler-result:first-child .profiler-button,
407
+ .profiler-controls {
408
+ border-top-right-radius: $radius;
409
+ }
410
+
411
+ .profiler-button,
412
+ .profiler-controls {
413
+ border-right: 1px solid $buttonBorderColor;
414
+ }
415
+ }
416
+
417
+ &.profiler-right {
418
+ right: 0px;
419
+
420
+ &.profiler-no-controls .profiler-totals,
421
+ &.profiler-no-controls .profiler-result:first-child .profiler-button,
422
+ .profiler-controls {
423
+ border-top-left-radius: $radius;
424
+ }
425
+
426
+ .profiler-button,
427
+ .profiler-controls {
428
+ border-left: 1px solid $buttonBorderColor;
429
+ }
430
+ }
431
+ }
432
+
433
+ .profiler-button,
434
+ .profiler-controls {
435
+ display: none;
436
+ z-index: $zindex;
437
+ border-bottom: 1px solid $buttonBorderColor;
438
+ background-color: #fff;
439
+ padding: 4px 7px;
440
+ text-align: right;
441
+ cursor: pointer;
442
+
443
+ &.profiler-button-active {
444
+ background-color: maroon;
445
+
446
+ .profiler-number,
447
+ .profiler-nuclear,
448
+ .profiler-name {
449
+ color: #fff;
450
+ font-weight: bold;
451
+ }
452
+ .profiler-unit {
453
+ color: #fff;
454
+ font-weight: normal;
455
+ }
456
+ }
457
+ }
458
+
459
+ .profiler-totals {
460
+ .profiler-reqs {
461
+ font-family: $codeFonts;
462
+ font-size: 10px;
463
+ margin-left: 6px;
464
+ &:before {
465
+ font-family: $codeFonts;
466
+ content: "×";
467
+ margin-right: 1px;
468
+ }
469
+ }
470
+ }
471
+
472
+ .profiler-controls {
473
+ display: block;
474
+ font-size: 12px;
475
+ font-family: $codeFonts;
476
+ cursor: default;
477
+ text-align: center;
478
+
479
+ span {
480
+ border-right: 1px solid $mutedColor;
481
+ padding-right: 5px;
482
+ margin-right: 5px;
483
+ cursor: pointer;
484
+ }
485
+
486
+ span:last-child {
487
+ border-right: none;
488
+ }
489
+ }
490
+
491
+ .profiler-popup {
492
+ display: none;
493
+ z-index: $zindex + 1;
494
+ position: absolute;
495
+ background-color: #fff;
496
+ border: 1px solid #aaa;
497
+ padding: 5px 10px;
498
+ text-align: left;
499
+ line-height: 18px;
500
+ overflow: auto;
501
+ max-width: 800px;
502
+
503
+ @include box-shadow(0px, 1px, 15px, $textColor);
504
+
505
+ .profiler-info {
506
+ margin-bottom: 3px;
507
+ padding-bottom: 2px;
508
+ border-bottom: 1px solid #ddd;
509
+ display: flex;
510
+ width: inherit;
511
+
512
+ .profiler-name {
513
+ overflow: hidden;
514
+ text-overflow: ellipsis;
515
+ text-align: left;
516
+ white-space: nowrap;
517
+ font-size: 110%;
518
+ font-weight: bold;
519
+ padding-right: 10px;
520
+
521
+ .profiler-overall-duration {
522
+ display: none;
523
+ }
524
+ }
525
+
526
+ .profiler-server-time {
527
+ font-size: 95%;
528
+ }
529
+ }
530
+
531
+ .profiler-timings {
532
+ th,
533
+ td {
534
+ padding-left: 6px;
535
+ padding-right: 6px;
536
+ }
537
+
538
+ th {
539
+ font-size: 95%;
540
+ padding-bottom: 3px;
541
+ }
542
+
543
+ .profiler-label {
544
+ max-width: 275px;
545
+ }
546
+ }
547
+ }
548
+
549
+ .profiler-queries {
550
+ display: none;
551
+ z-index: $zindex + 3;
552
+ position: absolute;
553
+ overflow-y: auto;
554
+ overflow-x: auto;
555
+ background-color: #fff;
556
+
557
+ th {
558
+ font-size: 17px;
559
+ }
560
+ }
561
+
562
+ &.profiler-min .profiler-result {
563
+ display: none;
564
+ }
565
+
566
+ &.profiler-min .profiler-controls span {
567
+ display: none;
568
+ }
569
+
570
+ &.profiler-min .profiler-controls .profiler-min-max {
571
+ border-right: none;
572
+ padding: 0px;
573
+ margin: 0px;
574
+ }
575
+
576
+ .profiler-more-actions {
577
+ float: left;
578
+ }
579
+
580
+ @media print {
581
+ display: none;
582
+ }
583
+ }
584
+
585
+ // popup results' queries will be displayed in front of this
586
+ .profiler-queries-bg {
587
+ z-index: $zindex + 2;
588
+ display: none;
589
+ background: #000;
590
+ opacity: 0.7;
591
+ position: absolute;
592
+ top: 0px;
593
+ left: 0px;
594
+ min-width: 100%;
595
+ }
596
+
597
+ // used when viewing a shared, full page result
598
+ .profiler-result-full {
599
+ .profiler-result {
600
+ width: 950px;
601
+ margin: 30px auto;
602
+
603
+ .profiler-button {
604
+ display: none;
605
+ }
606
+
607
+ .profiler-popup {
608
+ .profiler-info {
609
+ font-size: 25px;
610
+ border-bottom: 1px solid $mutedColor;
611
+ padding-bottom: 3px;
612
+ margin-bottom: 25px;
613
+
614
+ .profiler-overall-duration {
615
+ padding-right: 20px;
616
+ font-size: 80%;
617
+ color: #888;
618
+ }
619
+ }
620
+
621
+ .profiler-timings {
622
+ td,
623
+ th {
624
+ padding-left: 8px;
625
+ padding-right: 8px;
626
+ }
627
+ th {
628
+ padding-bottom: 7px;
629
+ }
630
+ td {
631
+ font-size: 14px;
632
+ padding-bottom: 4px;
633
+
634
+ &:first-child {
635
+ padding-left: 10px;
636
+ }
637
+ }
638
+
639
+ .profiler-label {
640
+ max-width: 550px;
641
+ }
642
+ }
643
+ }
644
+
645
+ .profiler-queries {
646
+ margin: 25px 0;
647
+ table {
648
+ width: 100%;
649
+ }
650
+ th {
651
+ font-size: 16px;
652
+ color: $textColor;
653
+ line-height: 20px;
654
+ }
655
+
656
+ td {
657
+ padding: 15px 10px;
658
+ text-align: left;
659
+ }
660
+
661
+ .profiler-info div {
662
+ text-align: right;
663
+ margin-bottom: 5px;
664
+ }
665
+ }
666
+ }
667
+ }
668
+
669
+ @keyframes highlight-in {
670
+ 0% {
671
+ background: #ffffbb;
672
+ }
673
+ 100% {
674
+ background: #fff;
675
+ }
676
+ }
677
+
678
+ .mp-snapshots {
679
+ font-family: $normalFonts;
680
+ font-size: 16px;
681
+
682
+ .snapshots-table {
683
+ thead {
684
+ background: #6a737c;
685
+ color: #ffffff;
686
+ }
687
+ th, td {
688
+ padding: 5px 10px;
689
+ box-sizing: border-box;
690
+ &:not(.request-group) {
691
+ text-align: center;
692
+ }
693
+ }
694
+ th {
695
+ border-right: 1px solid #ffffff;
696
+ }
697
+ }
698
+ }