higlass 1.12.2 → 1.12.4
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.
- package/app/scripts/BedLikeTrack.js +1 -1
- package/app/scripts/CenterTrack.jsx +1 -4
- package/app/scripts/ConfigViewMenu.jsx +2 -1
- package/app/scripts/HeatmapTiledPixiTrack.js +5 -3
- package/app/scripts/HorizontalGeneAnnotationsTrack.js +2 -1
- package/app/scripts/HorizontalTiledPlot.jsx +1 -4
- package/app/scripts/SeriesListMenu.jsx +2 -1
- package/app/scripts/TiledPixiTrack.js +1 -1
- package/app/scripts/TrackRenderer.jsx +6 -7
- package/app/scripts/VerticalTiledPlot.jsx +1 -4
- package/app/scripts/configs/README.md +3 -0
- package/app/scripts/configs/available-track-types.js +1 -1
- package/app/scripts/configs/datatype-to-track-type.js +1 -1
- package/app/scripts/configs/index.js +4 -3
- package/app/scripts/configs/positions-by-datatype.js +1 -1
- package/app/scripts/configs/tracks-info-by-type.js +1 -1
- package/app/scripts/{DataFetcher.js → data-fetchers/DataFetcher.js} +4 -5
- package/app/scripts/data-fetchers/README.md +3 -0
- package/app/scripts/data-fetchers/index.js +3 -0
- package/app/scripts/data-fetchers/local-tile-fetcher.js +1 -1
- package/app/scripts/hglib.jsx +3 -2
- package/app/scripts/hocs/with-modal.jsx +1 -1
- package/app/scripts/hocs/with-pub-sub.jsx +1 -1
- package/app/scripts/hocs/with-theme.jsx +1 -1
- package/app/scripts/{configs/options-info.js → options-info.js} +6 -2
- package/app/scripts/plugins/README.md +3 -0
- package/app/scripts/{configs → plugins}/available-for-plugins.js +21 -11
- package/app/scripts/{data-fetchers → plugins}/get-data-fetcher.js +7 -4
- package/app/scripts/plugins/index.js +2 -0
- package/app/scripts/services/README.md +1 -0
- package/app/scripts/services/element-resize-listener.js +1 -1
- package/app/scripts/services/index.js +1 -0
- package/app/scripts/services/tile-proxy.js +1 -1
- package/app/scripts/{worker.js → services/worker.js} +6 -4
- package/app/scripts/test-helpers/README.md +3 -0
- package/app/scripts/test-helpers/index.js +9 -0
- package/app/scripts/{utils → test-helpers}/test-helpers.jsx +1 -7
- package/app/scripts/{utils/track-utils.js → track-utils.js} +1 -1
- package/app/scripts/utils/DenseDataExtrema1D.js +1 -1
- package/app/scripts/utils/DenseDataExtrema2D.js +1 -1
- package/app/scripts/utils/README.md +3 -0
- package/app/scripts/utils/color-to-hex.js +1 -1
- package/app/scripts/utils/data-to-genomic-loci.js +1 -1
- package/app/scripts/utils/genome-loci-to-pixels.js +1 -1
- package/app/scripts/utils/get-element-dim.js +1 -1
- package/app/scripts/utils/index.js +8 -2
- package/app/scripts/{configs → utils}/is-track-range-selectable.js +1 -1
- package/app/scripts/utils/load-chrom-infos.js +1 -1
- package/app/scripts/utils/obj-vals.js +1 -1
- package/app/scripts/utils/show-mouse-position.js +1 -1
- package/dist/hglib.css +435 -435
- package/dist/hglib.js +25683 -25748
- package/dist/hglib.min.js +158 -158
- package/package.json +3 -3
- /package/app/scripts/{factories → utils}/LruCache.js +0 -0
package/dist/hglib.css
CHANGED
|
@@ -68,218 +68,7 @@
|
|
|
68
68
|
display: inline-block;
|
|
69
69
|
margin-right: 10px;
|
|
70
70
|
vertical-align: middle;
|
|
71
|
-
}.
|
|
72
|
-
display: flex;
|
|
73
|
-
align-items: center;
|
|
74
|
-
box-sizing: border-box;
|
|
75
|
-
padding: 0.5em 0.5em;
|
|
76
|
-
color: #000;
|
|
77
|
-
font-size: 1em;
|
|
78
|
-
line-height: 1em;
|
|
79
|
-
border: 0;
|
|
80
|
-
border-radius: 2.5px;
|
|
81
|
-
background: #fff;
|
|
82
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
83
|
-
transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
84
|
-
-webkit-appearance: none;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
._button_1wnjn_1:hover {
|
|
88
|
-
background: #f2f2f2;
|
|
89
|
-
box-shadow: 0 0 0 1px #cccccc;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
._button_1wnjn_1:focus {
|
|
93
|
-
box-shadow: 0 0 0 2px #0089ff;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
._button_1wnjn_1:active {
|
|
97
|
-
transform: scale(0.9);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
._button_1wnjn_1:hover, ._button_1wnjn_1:focus, ._button_1wnjn_1:active {
|
|
101
|
-
cursor: pointer;
|
|
102
|
-
outline: none;
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
._button-shortcut_1wnjn_35 {
|
|
106
|
-
padding: 0.1em 5px;
|
|
107
|
-
color: #999;
|
|
108
|
-
font-size: 0.8em;
|
|
109
|
-
transition: color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
110
|
-
}._cross_2ke8w_1 {
|
|
111
|
-
position: relative;
|
|
112
|
-
width: 1em;
|
|
113
|
-
height: 1em;
|
|
114
|
-
}
|
|
115
|
-
|
|
116
|
-
._cross_2ke8w_1:before, ._cross_2ke8w_1:after {
|
|
117
|
-
content: "";
|
|
118
|
-
display: block;
|
|
119
|
-
position: absolute;
|
|
120
|
-
top: 50%;
|
|
121
|
-
left: 0;
|
|
122
|
-
width: 1em;
|
|
123
|
-
height: 1px;
|
|
124
|
-
background: black;
|
|
125
|
-
transform-origin: center;
|
|
126
|
-
}
|
|
127
|
-
|
|
128
|
-
._cross_2ke8w_1:before {
|
|
129
|
-
-webkit-transform: translate(0, -50%) rotate(45deg);
|
|
130
|
-
-moz-transform: translate(0, -50%) rotate(45deg);
|
|
131
|
-
transform: translate(0, -50%) rotate(45deg);
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
._cross_2ke8w_1:after {
|
|
135
|
-
-webkit-transform: translate(0, -50%) rotate(-45deg);
|
|
136
|
-
-moz-transform: translate(0, -50%) rotate(-45deg);
|
|
137
|
-
transform: translate(0, -50%) rotate(-45deg);
|
|
138
|
-
}._modal-background_zzhoe_1 {
|
|
139
|
-
position: absolute;
|
|
140
|
-
z-index: 1000;
|
|
141
|
-
top: 0;
|
|
142
|
-
right: 0;
|
|
143
|
-
bottom: 0;
|
|
144
|
-
left: 0;
|
|
145
|
-
background: rgba(0, 0, 0, 0.666);
|
|
146
|
-
animation: _fade-in_zzhoe_1 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
|
|
147
|
-
transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
._modal-hide_zzhoe_13 {
|
|
151
|
-
opacity: 0;
|
|
152
|
-
}
|
|
153
|
-
|
|
154
|
-
._modal-wrap_zzhoe_17 {
|
|
155
|
-
position: absolute;
|
|
156
|
-
top: 20px;
|
|
157
|
-
right: 20px;
|
|
158
|
-
bottom: 20px;
|
|
159
|
-
left: 20px;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
._modal-window_zzhoe_25 {
|
|
163
|
-
position: relative;
|
|
164
|
-
width: 100%;
|
|
165
|
-
max-width: 640px;
|
|
166
|
-
max-height: 100%;
|
|
167
|
-
margin-left: auto;
|
|
168
|
-
margin-right: auto;
|
|
169
|
-
color: #000;
|
|
170
|
-
border-radius: 5px;
|
|
171
|
-
background: #fff;
|
|
172
|
-
animation: _fade-scale-in_zzhoe_1 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
._modal-window-max-height_zzhoe_38 {
|
|
176
|
-
height: 100%;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
._modal-content_zzhoe_42 {
|
|
180
|
-
padding: 10px;
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
@keyframes _fade-in_zzhoe_1 {
|
|
184
|
-
from {
|
|
185
|
-
opacity: 0;
|
|
186
|
-
}
|
|
187
|
-
to {
|
|
188
|
-
opacity: 1;
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
@keyframes _fade-scale-in_zzhoe_1 {
|
|
193
|
-
from {
|
|
194
|
-
opacity: 0;
|
|
195
|
-
transform: scale(0.5);
|
|
196
|
-
}
|
|
197
|
-
to {
|
|
198
|
-
opacity: 1;
|
|
199
|
-
transform: scale(1);
|
|
200
|
-
}
|
|
201
|
-
}._dialog-header_wp50s_1 {
|
|
202
|
-
position: relative;
|
|
203
|
-
z-index: 2;
|
|
204
|
-
display: flex;
|
|
205
|
-
justify-content: space-between;
|
|
206
|
-
margin: 0 -10px 10px -10px;
|
|
207
|
-
padding: 0 10px 10px 10px;
|
|
208
|
-
border-bottom: 1px solid #cccccc;
|
|
209
|
-
}
|
|
210
|
-
._dialog-header_wp50s_1 h3 {
|
|
211
|
-
margin: 0;
|
|
212
|
-
padding: 0;
|
|
213
|
-
font-size: 20px;
|
|
214
|
-
line-height: 1em;
|
|
215
|
-
}
|
|
216
|
-
._dialog-header_wp50s_1 button {
|
|
217
|
-
font-size: 10px;
|
|
218
|
-
}
|
|
219
|
-
._dialog-main-max-height_wp50s_20 {
|
|
220
|
-
position: absolute;
|
|
221
|
-
z-index: 1;
|
|
222
|
-
top: 40px;
|
|
223
|
-
right: 0;
|
|
224
|
-
bottom: 50px;
|
|
225
|
-
left: 0;
|
|
226
|
-
padding: 10px;
|
|
227
|
-
overflow: auto;
|
|
228
|
-
}
|
|
229
|
-
._dialog-footer_wp50s_31, ._dialog-footer-max-height_wp50s_31 {
|
|
230
|
-
display: flex;
|
|
231
|
-
justify-content: space-between;
|
|
232
|
-
margin: 10px -10px 0 -10px;
|
|
233
|
-
padding: 10px 10px 0 10px;
|
|
234
|
-
border-top: 1px solid #cccccc;
|
|
235
|
-
}
|
|
236
|
-
._dialog-footer_wp50s_31 button, ._dialog-footer-max-height_wp50s_31 button {
|
|
237
|
-
font-size: 14px;
|
|
238
|
-
}
|
|
239
|
-
._dialog-footer-max-height_wp50s_31 {
|
|
240
|
-
position: absolute;
|
|
241
|
-
z-index: 2;
|
|
242
|
-
left: 10px;
|
|
243
|
-
right: 10px;
|
|
244
|
-
bottom: 10px;
|
|
245
|
-
}/*
|
|
246
|
-
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
|
|
247
|
-
*/
|
|
248
|
-
|
|
249
|
-
table.table-track-options {
|
|
250
|
-
border-collapse: collapse;
|
|
251
|
-
margin-left: auto;
|
|
252
|
-
margin-right: auto;
|
|
253
|
-
}
|
|
254
|
-
|
|
255
|
-
td.td-track-options {
|
|
256
|
-
border: 1px solid #fff;
|
|
257
|
-
outline: none;
|
|
258
|
-
padding: 3px;
|
|
259
|
-
position: relative;
|
|
260
|
-
font-family: 'Roboto', sans-serif;
|
|
261
|
-
font-size: 14px;
|
|
262
|
-
color: #666;
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.cell-label {
|
|
266
|
-
position: absolute;
|
|
267
|
-
left: 0px;
|
|
268
|
-
top: 0px;
|
|
269
|
-
margin-left: 5px;
|
|
270
|
-
color: #777;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.modal-dialog {
|
|
274
|
-
position: relative;
|
|
275
|
-
display: table;
|
|
276
|
-
overflow-y: auto;
|
|
277
|
-
overflow-x: auto;
|
|
278
|
-
width: auto;
|
|
279
|
-
min-width: 300px;
|
|
280
|
-
margin: auto;
|
|
281
|
-
}
|
|
282
|
-
._multitrack-header_1yz7l_1,
|
|
71
|
+
}._multitrack-header_1yz7l_1,
|
|
283
72
|
._multitrack-header-focus_1yz7l_2,
|
|
284
73
|
._multitrack-header-squeazed_1yz7l_3 {
|
|
285
74
|
position: relative;
|
|
@@ -433,234 +222,27 @@ td.td-track-options {
|
|
|
433
222
|
width: 20px 5;
|
|
434
223
|
padding-left: 3px;
|
|
435
224
|
padding-right: 3px;
|
|
436
|
-
}.
|
|
437
|
-
.
|
|
438
|
-
border-right: black solid;
|
|
439
|
-
border-top: black solid;
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
._top-left-handle_cizw2_7,
|
|
443
|
-
._bottom-left-handle_cizw2_8 {
|
|
444
|
-
border-left: black solid;
|
|
445
|
-
border-top: black solid;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
._top-draggable-handle_cizw2_13,
|
|
449
|
-
._bottom-draggable-handle_cizw2_14,
|
|
450
|
-
._left-draggable-handle_cizw2_15,
|
|
451
|
-
._right-draggable-handle_cizw2_16 {
|
|
225
|
+
}._track-control_w7hx2_1,
|
|
226
|
+
._track-control-vertical_w7hx2_2 {
|
|
452
227
|
position: absolute;
|
|
228
|
+
z-index: 1;
|
|
229
|
+
display: flex;
|
|
230
|
+
background: rgba(255, 255, 255, 0.75);
|
|
231
|
+
right: 2px;
|
|
232
|
+
top: 2px;
|
|
233
|
+
border-radius: 2.5px;
|
|
234
|
+
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 3px 0 rgba(0, 0, 0, 0.1);
|
|
453
235
|
opacity: 0;
|
|
454
|
-
transition:
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
._draggable-div_cizw2_22 {
|
|
458
|
-
background-color: transparent;
|
|
459
|
-
box-sizing: border-box;
|
|
236
|
+
transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
460
237
|
}
|
|
461
238
|
|
|
462
|
-
.
|
|
463
|
-
.
|
|
464
|
-
|
|
465
|
-
height: 4px;
|
|
466
|
-
border-top: 1px solid black;
|
|
467
|
-
border-bottom: 1px solid black;
|
|
239
|
+
._track-control-dark_w7hx2_15,
|
|
240
|
+
._track-control-dark_w7hx2_15 ._track-control-active_w7hx2_16 {
|
|
241
|
+
background: rgba(40, 40, 40, 0.85);
|
|
468
242
|
}
|
|
469
243
|
|
|
470
|
-
.
|
|
471
|
-
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
._bottom-draggable-handle-grabber_cizw2_28 {
|
|
475
|
-
margin: 4px 7px 4px 7px;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
._left-draggable-handle-grabber_cizw2_43,
|
|
479
|
-
._right-draggable-handle-grabber_cizw2_44 {
|
|
480
|
-
width: 4px;
|
|
481
|
-
height: 10px;
|
|
482
|
-
border-left: 1px solid black;
|
|
483
|
-
border-right: 1px solid black;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
._left-draggable-handle-grabber_cizw2_43 {
|
|
487
|
-
margin: 7px 4px 7px 4px;
|
|
488
|
-
}
|
|
489
|
-
|
|
490
|
-
._right-draggable-handle-grabber_cizw2_44 {
|
|
491
|
-
margin: 7px 4px 7px 4px;
|
|
492
|
-
}
|
|
493
|
-
|
|
494
|
-
._draggable-div_cizw2_22:hover ._top-draggable-handle_cizw2_13,
|
|
495
|
-
._draggable-div_cizw2_22:hover ._bottom-draggable-handle_cizw2_14,
|
|
496
|
-
._draggable-div_cizw2_22:hover ._left-draggable-handle_cizw2_15,
|
|
497
|
-
._draggable-div_cizw2_22:hover ._right-draggable-handle_cizw2_16 {
|
|
498
|
-
opacity: 0.5;
|
|
499
|
-
background: rgba(255, 255, 255, 0.75);
|
|
500
|
-
box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.75);
|
|
501
|
-
border-radius: 3px;
|
|
502
|
-
}
|
|
503
|
-
|
|
504
|
-
._top-draggable-handle_cizw2_13:hover, ._top-draggable-handle_cizw2_13:active,
|
|
505
|
-
._bottom-draggable-handle_cizw2_14:hover, ._bottom-draggable-handle_cizw2_14:active,
|
|
506
|
-
._left-draggable-handle_cizw2_15:hover, ._left-draggable-handle_cizw2_15:active,
|
|
507
|
-
._right-draggable-handle_cizw2_16:hover, ._right-draggable-handle_cizw2_16:active {
|
|
508
|
-
opacity: 1 !important;
|
|
509
|
-
transform: scale(2);
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
._top-draggable-handle_cizw2_13:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
513
|
-
._top-draggable-handle_cizw2_13:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
514
|
-
._top-draggable-handle_cizw2_13:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
515
|
-
._top-draggable-handle_cizw2_13:hover ._right-draggable-handle-grabber_cizw2_44, ._top-draggable-handle_cizw2_13:active ._top-draggable-handle-grabber_cizw2_27,
|
|
516
|
-
._top-draggable-handle_cizw2_13:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
517
|
-
._top-draggable-handle_cizw2_13:active ._left-draggable-handle-grabber_cizw2_43,
|
|
518
|
-
._top-draggable-handle_cizw2_13:active ._right-draggable-handle-grabber_cizw2_44,
|
|
519
|
-
._bottom-draggable-handle_cizw2_14:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
520
|
-
._bottom-draggable-handle_cizw2_14:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
521
|
-
._bottom-draggable-handle_cizw2_14:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
522
|
-
._bottom-draggable-handle_cizw2_14:hover ._right-draggable-handle-grabber_cizw2_44, ._bottom-draggable-handle_cizw2_14:active ._top-draggable-handle-grabber_cizw2_27,
|
|
523
|
-
._bottom-draggable-handle_cizw2_14:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
524
|
-
._bottom-draggable-handle_cizw2_14:active ._left-draggable-handle-grabber_cizw2_43,
|
|
525
|
-
._bottom-draggable-handle_cizw2_14:active ._right-draggable-handle-grabber_cizw2_44,
|
|
526
|
-
._left-draggable-handle_cizw2_15:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
527
|
-
._left-draggable-handle_cizw2_15:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
528
|
-
._left-draggable-handle_cizw2_15:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
529
|
-
._left-draggable-handle_cizw2_15:hover ._right-draggable-handle-grabber_cizw2_44, ._left-draggable-handle_cizw2_15:active ._top-draggable-handle-grabber_cizw2_27,
|
|
530
|
-
._left-draggable-handle_cizw2_15:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
531
|
-
._left-draggable-handle_cizw2_15:active ._left-draggable-handle-grabber_cizw2_43,
|
|
532
|
-
._left-draggable-handle_cizw2_15:active ._right-draggable-handle-grabber_cizw2_44,
|
|
533
|
-
._right-draggable-handle_cizw2_16:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
534
|
-
._right-draggable-handle_cizw2_16:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
535
|
-
._right-draggable-handle_cizw2_16:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
536
|
-
._right-draggable-handle_cizw2_16:hover ._right-draggable-handle-grabber_cizw2_44, ._right-draggable-handle_cizw2_16:active ._top-draggable-handle-grabber_cizw2_27,
|
|
537
|
-
._right-draggable-handle_cizw2_16:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
538
|
-
._right-draggable-handle_cizw2_16:active ._left-draggable-handle-grabber_cizw2_43,
|
|
539
|
-
._right-draggable-handle_cizw2_16:active ._right-draggable-handle-grabber_cizw2_44 {
|
|
540
|
-
box-shadow: 0 0 3px 1px #0089ff;
|
|
541
|
-
background: #0089ff;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
._top-draggable-handle_cizw2_13,
|
|
545
|
-
._bottom-draggable-handle_cizw2_14 {
|
|
546
|
-
height: 12px;
|
|
547
|
-
cursor: row-resize;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
._left-draggable-handle_cizw2_15,
|
|
551
|
-
._right-draggable-handle_cizw2_16 {
|
|
552
|
-
width: 12px;
|
|
553
|
-
cursor: col-resize;
|
|
554
|
-
}._horizontal-tiled-plot_1bqkg_1 {
|
|
555
|
-
position: relative;
|
|
556
|
-
}._tiled-plot_1y7td_1 {
|
|
557
|
-
position: relative;
|
|
558
|
-
flex: 1;
|
|
559
|
-
overflow: hidden;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
._horizontalList_1y7td_7 {
|
|
563
|
-
display: flex;
|
|
564
|
-
width: 600px;
|
|
565
|
-
height: 300px;
|
|
566
|
-
white-space: nowrap;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
|
-
._list_1y7td_14 {
|
|
570
|
-
width: 400px;
|
|
571
|
-
height: 600px;
|
|
572
|
-
overflow: hidden;
|
|
573
|
-
-webkit-overflow-scrolling: touch;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
._stylizedList_1y7td_21 {
|
|
577
|
-
position: relative;
|
|
578
|
-
z-index: 0;
|
|
579
|
-
background-color: #f3f3f3;
|
|
580
|
-
outline: none;
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
._stylizedItem_1y7td_28 {
|
|
584
|
-
position: relative;
|
|
585
|
-
display: flex;
|
|
586
|
-
align-items: center;
|
|
587
|
-
width: 100%;
|
|
588
|
-
background-color: transparent;
|
|
589
|
-
user-select: none;
|
|
590
|
-
color: #333;
|
|
591
|
-
font-weight: 400;
|
|
592
|
-
}
|
|
593
|
-
|
|
594
|
-
._stylizedHelper_1y7td_39 {
|
|
595
|
-
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2), 0 -5px 5px -5px rgba(0, 0, 0, 0.2);
|
|
596
|
-
background-color: rgba(255, 255, 255, 0.8);
|
|
597
|
-
cursor: row-resize;
|
|
598
|
-
}
|
|
599
|
-
._stylizedHelper_1y7td_39._horizontalItem_1y7td_44 {
|
|
600
|
-
cursor: col-resize;
|
|
601
|
-
}
|
|
602
|
-
|
|
603
|
-
._horizontalItem_1y7td_44 {
|
|
604
|
-
display: flex;
|
|
605
|
-
flex-shrink: 0;
|
|
606
|
-
align-items: center;
|
|
607
|
-
justify-content: center;
|
|
608
|
-
}
|
|
609
|
-
|
|
610
|
-
._resizable-track_1y7td_55 {
|
|
611
|
-
width: 100%;
|
|
612
|
-
height: 100%;
|
|
613
|
-
}
|
|
614
|
-
|
|
615
|
-
path._domain_1y7td_60 {
|
|
616
|
-
stroke-width: 0px;
|
|
617
|
-
}._track-range-selection_5bcsr_1 {
|
|
618
|
-
position: absolute;
|
|
619
|
-
z-index: -1;
|
|
620
|
-
opacity: 0;
|
|
621
|
-
transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
622
|
-
}
|
|
623
|
-
|
|
624
|
-
._track-range-selection-active_5bcsr_8 {
|
|
625
|
-
z-index: 1;
|
|
626
|
-
opacity: 1;
|
|
627
|
-
}
|
|
628
|
-
|
|
629
|
-
._track-range-selection-active-primary_5bcsr_14 {
|
|
630
|
-
}
|
|
631
|
-
|
|
632
|
-
._track-range-selection-active-secondary_5bcsr_18 {
|
|
633
|
-
}
|
|
634
|
-
|
|
635
|
-
._track-range-selection-group-inactive_5bcsr_22 {
|
|
636
|
-
display: none;
|
|
637
|
-
}
|
|
638
|
-
|
|
639
|
-
._track-range-selection-group-brush-selection_5bcsr_26 {
|
|
640
|
-
outline: 2px solid rgba(0, 0, 0, 0.33);
|
|
641
|
-
fill: black;
|
|
642
|
-
fill-opacity: 0.1;
|
|
643
|
-
}._track-control_w7hx2_1,
|
|
644
|
-
._track-control-vertical_w7hx2_2 {
|
|
645
|
-
position: absolute;
|
|
646
|
-
z-index: 1;
|
|
647
|
-
display: flex;
|
|
648
|
-
background: rgba(255, 255, 255, 0.75);
|
|
649
|
-
right: 2px;
|
|
650
|
-
top: 2px;
|
|
651
|
-
border-radius: 2.5px;
|
|
652
|
-
box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 0 3px 0 rgba(0, 0, 0, 0.1);
|
|
653
|
-
opacity: 0;
|
|
654
|
-
transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
655
|
-
}
|
|
656
|
-
|
|
657
|
-
._track-control-dark_w7hx2_15,
|
|
658
|
-
._track-control-dark_w7hx2_15 ._track-control-active_w7hx2_16 {
|
|
659
|
-
background: rgba(40, 40, 40, 0.85);
|
|
660
|
-
}
|
|
661
|
-
|
|
662
|
-
._track-control-vertical_w7hx2_2 {
|
|
663
|
-
flex-direction: column-reverse;
|
|
244
|
+
._track-control-vertical_w7hx2_2 {
|
|
245
|
+
flex-direction: column-reverse;
|
|
664
246
|
}
|
|
665
247
|
|
|
666
248
|
._track-control-left_w7hx2_24 {
|
|
@@ -738,6 +320,32 @@ path._domain_1y7td_60 {
|
|
|
738
320
|
._center-track-container_fiu64_6 {
|
|
739
321
|
position: absolute;
|
|
740
322
|
z-index: 1;
|
|
323
|
+
}._track-range-selection_5bcsr_1 {
|
|
324
|
+
position: absolute;
|
|
325
|
+
z-index: -1;
|
|
326
|
+
opacity: 0;
|
|
327
|
+
transition: opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
._track-range-selection-active_5bcsr_8 {
|
|
331
|
+
z-index: 1;
|
|
332
|
+
opacity: 1;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
._track-range-selection-active-primary_5bcsr_14 {
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
._track-range-selection-active-secondary_5bcsr_18 {
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
._track-range-selection-group-inactive_5bcsr_22 {
|
|
342
|
+
display: none;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
._track-range-selection-group-brush-selection_5bcsr_26 {
|
|
346
|
+
outline: 2px solid rgba(0, 0, 0, 0.33);
|
|
347
|
+
fill: black;
|
|
348
|
+
fill-opacity: 0.1;
|
|
741
349
|
}._drag-listening-div-active_19gkt_1 {
|
|
742
350
|
z-index: 10;
|
|
743
351
|
box-shadow: inset 0 0 3px 0 red;
|
|
@@ -761,7 +369,399 @@ path._domain_1y7td_60 {
|
|
|
761
369
|
._gallery-sub-track_fbxxi_18,
|
|
762
370
|
._gallery-invisible-track_fbxxi_19 {
|
|
763
371
|
position: absolute;
|
|
764
|
-
}.
|
|
372
|
+
}._tiled-plot_1y7td_1 {
|
|
373
|
+
position: relative;
|
|
374
|
+
flex: 1;
|
|
375
|
+
overflow: hidden;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
._horizontalList_1y7td_7 {
|
|
379
|
+
display: flex;
|
|
380
|
+
width: 600px;
|
|
381
|
+
height: 300px;
|
|
382
|
+
white-space: nowrap;
|
|
383
|
+
}
|
|
384
|
+
|
|
385
|
+
._list_1y7td_14 {
|
|
386
|
+
width: 400px;
|
|
387
|
+
height: 600px;
|
|
388
|
+
overflow: hidden;
|
|
389
|
+
-webkit-overflow-scrolling: touch;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
._stylizedList_1y7td_21 {
|
|
393
|
+
position: relative;
|
|
394
|
+
z-index: 0;
|
|
395
|
+
background-color: #f3f3f3;
|
|
396
|
+
outline: none;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
._stylizedItem_1y7td_28 {
|
|
400
|
+
position: relative;
|
|
401
|
+
display: flex;
|
|
402
|
+
align-items: center;
|
|
403
|
+
width: 100%;
|
|
404
|
+
background-color: transparent;
|
|
405
|
+
user-select: none;
|
|
406
|
+
color: #333;
|
|
407
|
+
font-weight: 400;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
._stylizedHelper_1y7td_39 {
|
|
411
|
+
box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.2), 0 -5px 5px -5px rgba(0, 0, 0, 0.2);
|
|
412
|
+
background-color: rgba(255, 255, 255, 0.8);
|
|
413
|
+
cursor: row-resize;
|
|
414
|
+
}
|
|
415
|
+
._stylizedHelper_1y7td_39._horizontalItem_1y7td_44 {
|
|
416
|
+
cursor: col-resize;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
._horizontalItem_1y7td_44 {
|
|
420
|
+
display: flex;
|
|
421
|
+
flex-shrink: 0;
|
|
422
|
+
align-items: center;
|
|
423
|
+
justify-content: center;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
._resizable-track_1y7td_55 {
|
|
427
|
+
width: 100%;
|
|
428
|
+
height: 100%;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
path._domain_1y7td_60 {
|
|
432
|
+
stroke-width: 0px;
|
|
433
|
+
}._top-right-handle_cizw2_1,
|
|
434
|
+
._bottom-right-handle_cizw2_2 {
|
|
435
|
+
border-right: black solid;
|
|
436
|
+
border-top: black solid;
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
._top-left-handle_cizw2_7,
|
|
440
|
+
._bottom-left-handle_cizw2_8 {
|
|
441
|
+
border-left: black solid;
|
|
442
|
+
border-top: black solid;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
._top-draggable-handle_cizw2_13,
|
|
446
|
+
._bottom-draggable-handle_cizw2_14,
|
|
447
|
+
._left-draggable-handle_cizw2_15,
|
|
448
|
+
._right-draggable-handle_cizw2_16 {
|
|
449
|
+
position: absolute;
|
|
450
|
+
opacity: 0;
|
|
451
|
+
transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
452
|
+
}
|
|
453
|
+
|
|
454
|
+
._draggable-div_cizw2_22 {
|
|
455
|
+
background-color: transparent;
|
|
456
|
+
box-sizing: border-box;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
._top-draggable-handle-grabber_cizw2_27,
|
|
460
|
+
._bottom-draggable-handle-grabber_cizw2_28 {
|
|
461
|
+
width: 10px;
|
|
462
|
+
height: 4px;
|
|
463
|
+
border-top: 1px solid black;
|
|
464
|
+
border-bottom: 1px solid black;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
._top-draggable-handle-grabber_cizw2_27 {
|
|
468
|
+
margin: 4px 7px 4px 7px;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
._bottom-draggable-handle-grabber_cizw2_28 {
|
|
472
|
+
margin: 4px 7px 4px 7px;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
._left-draggable-handle-grabber_cizw2_43,
|
|
476
|
+
._right-draggable-handle-grabber_cizw2_44 {
|
|
477
|
+
width: 4px;
|
|
478
|
+
height: 10px;
|
|
479
|
+
border-left: 1px solid black;
|
|
480
|
+
border-right: 1px solid black;
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
._left-draggable-handle-grabber_cizw2_43 {
|
|
484
|
+
margin: 7px 4px 7px 4px;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
._right-draggable-handle-grabber_cizw2_44 {
|
|
488
|
+
margin: 7px 4px 7px 4px;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
._draggable-div_cizw2_22:hover ._top-draggable-handle_cizw2_13,
|
|
492
|
+
._draggable-div_cizw2_22:hover ._bottom-draggable-handle_cizw2_14,
|
|
493
|
+
._draggable-div_cizw2_22:hover ._left-draggable-handle_cizw2_15,
|
|
494
|
+
._draggable-div_cizw2_22:hover ._right-draggable-handle_cizw2_16 {
|
|
495
|
+
opacity: 0.5;
|
|
496
|
+
background: rgba(255, 255, 255, 0.75);
|
|
497
|
+
box-shadow: 0 0 3px 1px rgba(255, 255, 255, 0.75);
|
|
498
|
+
border-radius: 3px;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
._top-draggable-handle_cizw2_13:hover, ._top-draggable-handle_cizw2_13:active,
|
|
502
|
+
._bottom-draggable-handle_cizw2_14:hover, ._bottom-draggable-handle_cizw2_14:active,
|
|
503
|
+
._left-draggable-handle_cizw2_15:hover, ._left-draggable-handle_cizw2_15:active,
|
|
504
|
+
._right-draggable-handle_cizw2_16:hover, ._right-draggable-handle_cizw2_16:active {
|
|
505
|
+
opacity: 1 !important;
|
|
506
|
+
transform: scale(2);
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
._top-draggable-handle_cizw2_13:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
510
|
+
._top-draggable-handle_cizw2_13:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
511
|
+
._top-draggable-handle_cizw2_13:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
512
|
+
._top-draggable-handle_cizw2_13:hover ._right-draggable-handle-grabber_cizw2_44, ._top-draggable-handle_cizw2_13:active ._top-draggable-handle-grabber_cizw2_27,
|
|
513
|
+
._top-draggable-handle_cizw2_13:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
514
|
+
._top-draggable-handle_cizw2_13:active ._left-draggable-handle-grabber_cizw2_43,
|
|
515
|
+
._top-draggable-handle_cizw2_13:active ._right-draggable-handle-grabber_cizw2_44,
|
|
516
|
+
._bottom-draggable-handle_cizw2_14:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
517
|
+
._bottom-draggable-handle_cizw2_14:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
518
|
+
._bottom-draggable-handle_cizw2_14:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
519
|
+
._bottom-draggable-handle_cizw2_14:hover ._right-draggable-handle-grabber_cizw2_44, ._bottom-draggable-handle_cizw2_14:active ._top-draggable-handle-grabber_cizw2_27,
|
|
520
|
+
._bottom-draggable-handle_cizw2_14:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
521
|
+
._bottom-draggable-handle_cizw2_14:active ._left-draggable-handle-grabber_cizw2_43,
|
|
522
|
+
._bottom-draggable-handle_cizw2_14:active ._right-draggable-handle-grabber_cizw2_44,
|
|
523
|
+
._left-draggable-handle_cizw2_15:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
524
|
+
._left-draggable-handle_cizw2_15:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
525
|
+
._left-draggable-handle_cizw2_15:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
526
|
+
._left-draggable-handle_cizw2_15:hover ._right-draggable-handle-grabber_cizw2_44, ._left-draggable-handle_cizw2_15:active ._top-draggable-handle-grabber_cizw2_27,
|
|
527
|
+
._left-draggable-handle_cizw2_15:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
528
|
+
._left-draggable-handle_cizw2_15:active ._left-draggable-handle-grabber_cizw2_43,
|
|
529
|
+
._left-draggable-handle_cizw2_15:active ._right-draggable-handle-grabber_cizw2_44,
|
|
530
|
+
._right-draggable-handle_cizw2_16:hover ._top-draggable-handle-grabber_cizw2_27,
|
|
531
|
+
._right-draggable-handle_cizw2_16:hover ._bottom-draggable-handle-grabber_cizw2_28,
|
|
532
|
+
._right-draggable-handle_cizw2_16:hover ._left-draggable-handle-grabber_cizw2_43,
|
|
533
|
+
._right-draggable-handle_cizw2_16:hover ._right-draggable-handle-grabber_cizw2_44, ._right-draggable-handle_cizw2_16:active ._top-draggable-handle-grabber_cizw2_27,
|
|
534
|
+
._right-draggable-handle_cizw2_16:active ._bottom-draggable-handle-grabber_cizw2_28,
|
|
535
|
+
._right-draggable-handle_cizw2_16:active ._left-draggable-handle-grabber_cizw2_43,
|
|
536
|
+
._right-draggable-handle_cizw2_16:active ._right-draggable-handle-grabber_cizw2_44 {
|
|
537
|
+
box-shadow: 0 0 3px 1px #0089ff;
|
|
538
|
+
background: #0089ff;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
._top-draggable-handle_cizw2_13,
|
|
542
|
+
._bottom-draggable-handle_cizw2_14 {
|
|
543
|
+
height: 12px;
|
|
544
|
+
cursor: row-resize;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
._left-draggable-handle_cizw2_15,
|
|
548
|
+
._right-draggable-handle_cizw2_16 {
|
|
549
|
+
width: 12px;
|
|
550
|
+
cursor: col-resize;
|
|
551
|
+
}._horizontal-tiled-plot_1bqkg_1 {
|
|
552
|
+
position: relative;
|
|
553
|
+
}._button_1wnjn_1 {
|
|
554
|
+
display: flex;
|
|
555
|
+
align-items: center;
|
|
556
|
+
box-sizing: border-box;
|
|
557
|
+
padding: 0.5em 0.5em;
|
|
558
|
+
color: #000;
|
|
559
|
+
font-size: 1em;
|
|
560
|
+
line-height: 1em;
|
|
561
|
+
border: 0;
|
|
562
|
+
border-radius: 2.5px;
|
|
563
|
+
background: #fff;
|
|
564
|
+
box-shadow: 0 0 0 1px #cccccc;
|
|
565
|
+
transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.15s cubic-bezier(0.25, 0.1, 0.25, 1), background 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
566
|
+
-webkit-appearance: none;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
._button_1wnjn_1:hover {
|
|
570
|
+
background: #f2f2f2;
|
|
571
|
+
box-shadow: 0 0 0 1px #cccccc;
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
._button_1wnjn_1:focus {
|
|
575
|
+
box-shadow: 0 0 0 2px #0089ff;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
._button_1wnjn_1:active {
|
|
579
|
+
transform: scale(0.9);
|
|
580
|
+
}
|
|
581
|
+
|
|
582
|
+
._button_1wnjn_1:hover, ._button_1wnjn_1:focus, ._button_1wnjn_1:active {
|
|
583
|
+
cursor: pointer;
|
|
584
|
+
outline: none;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
._button-shortcut_1wnjn_35 {
|
|
588
|
+
padding: 0.1em 5px;
|
|
589
|
+
color: #999;
|
|
590
|
+
font-size: 0.8em;
|
|
591
|
+
transition: color 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
592
|
+
}._cross_2ke8w_1 {
|
|
593
|
+
position: relative;
|
|
594
|
+
width: 1em;
|
|
595
|
+
height: 1em;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
._cross_2ke8w_1:before, ._cross_2ke8w_1:after {
|
|
599
|
+
content: "";
|
|
600
|
+
display: block;
|
|
601
|
+
position: absolute;
|
|
602
|
+
top: 50%;
|
|
603
|
+
left: 0;
|
|
604
|
+
width: 1em;
|
|
605
|
+
height: 1px;
|
|
606
|
+
background: black;
|
|
607
|
+
transform-origin: center;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
._cross_2ke8w_1:before {
|
|
611
|
+
-webkit-transform: translate(0, -50%) rotate(45deg);
|
|
612
|
+
-moz-transform: translate(0, -50%) rotate(45deg);
|
|
613
|
+
transform: translate(0, -50%) rotate(45deg);
|
|
614
|
+
}
|
|
615
|
+
|
|
616
|
+
._cross_2ke8w_1:after {
|
|
617
|
+
-webkit-transform: translate(0, -50%) rotate(-45deg);
|
|
618
|
+
-moz-transform: translate(0, -50%) rotate(-45deg);
|
|
619
|
+
transform: translate(0, -50%) rotate(-45deg);
|
|
620
|
+
}._modal-background_zzhoe_1 {
|
|
621
|
+
position: absolute;
|
|
622
|
+
z-index: 1000;
|
|
623
|
+
top: 0;
|
|
624
|
+
right: 0;
|
|
625
|
+
bottom: 0;
|
|
626
|
+
left: 0;
|
|
627
|
+
background: rgba(0, 0, 0, 0.666);
|
|
628
|
+
animation: _fade-in_zzhoe_1 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
|
|
629
|
+
transition: opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
._modal-hide_zzhoe_13 {
|
|
633
|
+
opacity: 0;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
._modal-wrap_zzhoe_17 {
|
|
637
|
+
position: absolute;
|
|
638
|
+
top: 20px;
|
|
639
|
+
right: 20px;
|
|
640
|
+
bottom: 20px;
|
|
641
|
+
left: 20px;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
._modal-window_zzhoe_25 {
|
|
645
|
+
position: relative;
|
|
646
|
+
width: 100%;
|
|
647
|
+
max-width: 640px;
|
|
648
|
+
max-height: 100%;
|
|
649
|
+
margin-left: auto;
|
|
650
|
+
margin-right: auto;
|
|
651
|
+
color: #000;
|
|
652
|
+
border-radius: 5px;
|
|
653
|
+
background: #fff;
|
|
654
|
+
animation: _fade-scale-in_zzhoe_1 0.2s cubic-bezier(0.25, 0.1, 0.25, 1) 1;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
._modal-window-max-height_zzhoe_38 {
|
|
658
|
+
height: 100%;
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
._modal-content_zzhoe_42 {
|
|
662
|
+
padding: 10px;
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
@keyframes _fade-in_zzhoe_1 {
|
|
666
|
+
from {
|
|
667
|
+
opacity: 0;
|
|
668
|
+
}
|
|
669
|
+
to {
|
|
670
|
+
opacity: 1;
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
@keyframes _fade-scale-in_zzhoe_1 {
|
|
675
|
+
from {
|
|
676
|
+
opacity: 0;
|
|
677
|
+
transform: scale(0.5);
|
|
678
|
+
}
|
|
679
|
+
to {
|
|
680
|
+
opacity: 1;
|
|
681
|
+
transform: scale(1);
|
|
682
|
+
}
|
|
683
|
+
}._dialog-header_wp50s_1 {
|
|
684
|
+
position: relative;
|
|
685
|
+
z-index: 2;
|
|
686
|
+
display: flex;
|
|
687
|
+
justify-content: space-between;
|
|
688
|
+
margin: 0 -10px 10px -10px;
|
|
689
|
+
padding: 0 10px 10px 10px;
|
|
690
|
+
border-bottom: 1px solid #cccccc;
|
|
691
|
+
}
|
|
692
|
+
._dialog-header_wp50s_1 h3 {
|
|
693
|
+
margin: 0;
|
|
694
|
+
padding: 0;
|
|
695
|
+
font-size: 20px;
|
|
696
|
+
line-height: 1em;
|
|
697
|
+
}
|
|
698
|
+
._dialog-header_wp50s_1 button {
|
|
699
|
+
font-size: 10px;
|
|
700
|
+
}
|
|
701
|
+
._dialog-main-max-height_wp50s_20 {
|
|
702
|
+
position: absolute;
|
|
703
|
+
z-index: 1;
|
|
704
|
+
top: 40px;
|
|
705
|
+
right: 0;
|
|
706
|
+
bottom: 50px;
|
|
707
|
+
left: 0;
|
|
708
|
+
padding: 10px;
|
|
709
|
+
overflow: auto;
|
|
710
|
+
}
|
|
711
|
+
._dialog-footer_wp50s_31, ._dialog-footer-max-height_wp50s_31 {
|
|
712
|
+
display: flex;
|
|
713
|
+
justify-content: space-between;
|
|
714
|
+
margin: 10px -10px 0 -10px;
|
|
715
|
+
padding: 10px 10px 0 10px;
|
|
716
|
+
border-top: 1px solid #cccccc;
|
|
717
|
+
}
|
|
718
|
+
._dialog-footer_wp50s_31 button, ._dialog-footer-max-height_wp50s_31 button {
|
|
719
|
+
font-size: 14px;
|
|
720
|
+
}
|
|
721
|
+
._dialog-footer-max-height_wp50s_31 {
|
|
722
|
+
position: absolute;
|
|
723
|
+
z-index: 2;
|
|
724
|
+
left: 10px;
|
|
725
|
+
right: 10px;
|
|
726
|
+
bottom: 10px;
|
|
727
|
+
}/*
|
|
728
|
+
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700');
|
|
729
|
+
*/
|
|
730
|
+
|
|
731
|
+
table.table-track-options {
|
|
732
|
+
border-collapse: collapse;
|
|
733
|
+
margin-left: auto;
|
|
734
|
+
margin-right: auto;
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
td.td-track-options {
|
|
738
|
+
border: 1px solid #fff;
|
|
739
|
+
outline: none;
|
|
740
|
+
padding: 3px;
|
|
741
|
+
position: relative;
|
|
742
|
+
font-family: 'Roboto', sans-serif;
|
|
743
|
+
font-size: 14px;
|
|
744
|
+
color: #666;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.cell-label {
|
|
748
|
+
position: absolute;
|
|
749
|
+
left: 0px;
|
|
750
|
+
top: 0px;
|
|
751
|
+
margin-left: 5px;
|
|
752
|
+
color: #777;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.modal-dialog {
|
|
756
|
+
position: relative;
|
|
757
|
+
display: table;
|
|
758
|
+
overflow-y: auto;
|
|
759
|
+
overflow-x: auto;
|
|
760
|
+
width: auto;
|
|
761
|
+
min-width: 300px;
|
|
762
|
+
margin: auto;
|
|
763
|
+
}
|
|
764
|
+
._track-renderer_11dwb_1 {
|
|
765
765
|
position: relative;
|
|
766
766
|
}
|
|
767
767
|
|