gramene-search 1.2.96 → 1.3.0
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/.parcel-cache/4987902b3f9787cc-BundleGraph-0 +0 -0
- package/.parcel-cache/70f1f7555dda250d-AssetGraph-0 +0 -0
- package/.parcel-cache/7b8e4611c0f03524-AssetGraph-0 +0 -0
- package/.parcel-cache/data.mdb +0 -0
- package/.parcel-cache/lock.mdb +0 -0
- package/.parcel-cache/requestGraph-369948a06d23ec44-0 +0 -0
- package/.parcel-cache/requestGraph-nodes-0-369948a06d23ec44-0 +0 -0
- package/.parcel-cache/snapshot-369948a06d23ec44.txt +2 -0
- package/dist/{Study.5f95cb67.js → Study.b2ce28e8.js} +8 -13
- package/dist/Study.b2ce28e8.js.map +1 -0
- package/dist/index.css +497 -499
- package/dist/index.css.map +1 -1
- package/dist/index.js +195 -116
- package/dist/index.js.map +1 -1
- package/package.json +15 -12
- package/src/bundles/api.js +8 -3
- package/src/bundles/docs.js +29 -9
- package/src/components/results/GeneList.js +8 -0
- package/src/components/results/TaxDist.js +1 -1
- package/src/components/results/details/VEP.js +41 -0
- package/src/demo.js +2 -2
- package/.parcel-cache/2126881b633272fa.txt +0 -2
- package/.parcel-cache/425346ba6a54d932 +0 -0
- package/.parcel-cache/878e3ffbad677982 +0 -0
- package/.parcel-cache/a6c49560dea3583b +0 -0
- package/.parcel-cache/cdecf11601322051 +0 -0
- package/dist/Study.5f95cb67.js.map +0 -1
- /package/.parcel-cache/{d0cf33e56249e85e → 02ca82bff80c02eb} +0 -0
- /package/.parcel-cache/{c1a4b49732d01b5e → 1cb2c17a689c678c} +0 -0
- /package/.parcel-cache/{0a4e5d85d8af33c6 → 4096d45442aa8ed9} +0 -0
- /package/.parcel-cache/{1facab678e104f31 → 6e0d647eb7a7035b} +0 -0
- /package/.parcel-cache/{328ec6b13f704f14 → a9d9b54b885e4239} +0 -0
package/dist/index.css
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
.gramene-sidebar {
|
|
2
|
-
width: 250px;
|
|
3
2
|
background-color: #557b74;
|
|
3
|
+
width: 250px;
|
|
4
4
|
padding-bottom: 8px;
|
|
5
5
|
padding-left: 8px;
|
|
6
6
|
padding-right: 8px;
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
.sorghumbase-sidebar {
|
|
11
|
-
width: 250px;
|
|
12
11
|
background-color: #a03e34;
|
|
12
|
+
width: 250px;
|
|
13
13
|
padding-bottom: 8px;
|
|
14
14
|
padding-left: 8px;
|
|
15
15
|
padding-right: 8px;
|
|
@@ -73,12 +73,12 @@
|
|
|
73
73
|
}
|
|
74
74
|
|
|
75
75
|
.gramene-view-header {
|
|
76
|
-
width: 100%;
|
|
77
76
|
color: #a03e34;
|
|
78
77
|
background-color: #fff3a96e;
|
|
79
78
|
border-top: solid #557b74;
|
|
80
79
|
flex-wrap: nowrap;
|
|
81
80
|
justify-content: space-evenly;
|
|
81
|
+
width: 100%;
|
|
82
82
|
font-size: larger;
|
|
83
83
|
font-weight: bold;
|
|
84
84
|
display: flex;
|
|
@@ -148,443 +148,264 @@
|
|
|
148
148
|
border-color: #6c757d;
|
|
149
149
|
}
|
|
150
150
|
|
|
151
|
-
.
|
|
152
|
-
|
|
151
|
+
.visible-detail {
|
|
152
|
+
border: 1px solid #557b74;
|
|
153
|
+
padding: 6px 12px;
|
|
153
154
|
}
|
|
154
155
|
|
|
155
|
-
.
|
|
156
|
-
|
|
156
|
+
.detail {
|
|
157
|
+
margin-left: auto;
|
|
158
|
+
margin-right: auto;
|
|
159
|
+
padding-left: 15px;
|
|
160
|
+
padding-right: 15px;
|
|
157
161
|
}
|
|
158
162
|
|
|
159
|
-
.
|
|
160
|
-
|
|
161
|
-
|
|
163
|
+
.table {
|
|
164
|
+
width: 100%;
|
|
165
|
+
max-width: 100%;
|
|
162
166
|
}
|
|
163
167
|
|
|
164
|
-
.
|
|
165
|
-
|
|
168
|
+
.xrefs {
|
|
169
|
+
border-collapse: collapse;
|
|
170
|
+
border-spacing: 0;
|
|
171
|
+
table-layout: fixed;
|
|
172
|
+
border-color: gray;
|
|
166
173
|
}
|
|
167
174
|
|
|
168
|
-
.
|
|
169
|
-
|
|
175
|
+
.xref-name-col {
|
|
176
|
+
width: 20%;
|
|
170
177
|
}
|
|
171
178
|
|
|
172
|
-
.
|
|
173
|
-
|
|
174
|
-
stroke: #557b74;
|
|
175
|
-
stroke-opacity: 0;
|
|
176
|
-
stroke-width: .5px;
|
|
177
|
-
-webkit-user-select: none;
|
|
178
|
-
user-select: none;
|
|
179
|
-
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
180
|
-
font-size: 12px;
|
|
179
|
+
.xref-value-col, .xref-80-col {
|
|
180
|
+
width: 80%;
|
|
181
181
|
}
|
|
182
182
|
|
|
183
|
-
.
|
|
184
|
-
|
|
183
|
+
.xref-70-col {
|
|
184
|
+
width: 70%;
|
|
185
185
|
}
|
|
186
186
|
|
|
187
|
-
.
|
|
188
|
-
|
|
187
|
+
.xref-10-col {
|
|
188
|
+
width: 10%;
|
|
189
189
|
}
|
|
190
190
|
|
|
191
|
-
.
|
|
192
|
-
|
|
191
|
+
.xref-id-list {
|
|
192
|
+
padding-left: 0;
|
|
193
|
+
list-style: none;
|
|
193
194
|
}
|
|
194
195
|
|
|
195
|
-
.
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
fill: #f6f6f6;
|
|
196
|
+
.result-gene {
|
|
197
|
+
border: 5px solid #fff;
|
|
198
|
+
padding: .2em;
|
|
199
199
|
}
|
|
200
200
|
|
|
201
|
-
.
|
|
202
|
-
|
|
201
|
+
.result-gene:hover {
|
|
202
|
+
border-color: #faebd7;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
-
.
|
|
206
|
-
|
|
205
|
+
.gene-id {
|
|
206
|
+
color: #000;
|
|
207
207
|
}
|
|
208
208
|
|
|
209
|
-
.
|
|
210
|
-
|
|
211
|
-
|
|
209
|
+
.gene-name {
|
|
210
|
+
color: #557b74;
|
|
211
|
+
margin-bottom: 0;
|
|
212
212
|
}
|
|
213
213
|
|
|
214
|
-
.
|
|
215
|
-
|
|
214
|
+
.gene-description {
|
|
215
|
+
margin-bottom: 0;
|
|
216
216
|
}
|
|
217
217
|
|
|
218
|
-
.
|
|
219
|
-
|
|
220
|
-
|
|
218
|
+
.gene-species {
|
|
219
|
+
white-space: nowrap;
|
|
220
|
+
font-size: small;
|
|
221
|
+
font-style: italic;
|
|
222
|
+
font-weight: bold;
|
|
221
223
|
}
|
|
222
224
|
|
|
223
|
-
.
|
|
224
|
-
|
|
225
|
-
stroke-width: 0;
|
|
226
|
-
shape-rendering: crispedges;
|
|
227
|
-
transition: none;
|
|
225
|
+
.gene-synonyms {
|
|
226
|
+
font-size: small;
|
|
228
227
|
}
|
|
229
228
|
|
|
230
|
-
.
|
|
231
|
-
|
|
229
|
+
.gene-extras {
|
|
230
|
+
float: right;
|
|
231
|
+
border: 1px dashed #00f;
|
|
232
232
|
}
|
|
233
233
|
|
|
234
|
-
.
|
|
235
|
-
|
|
234
|
+
.gene-panlink {
|
|
235
|
+
float: right;
|
|
236
236
|
}
|
|
237
237
|
|
|
238
|
-
.
|
|
239
|
-
|
|
240
|
-
|
|
238
|
+
.gene-panlink img {
|
|
239
|
+
vertical-align: top;
|
|
240
|
+
width: auto;
|
|
241
|
+
height: 60px;
|
|
241
242
|
}
|
|
242
243
|
|
|
243
|
-
.
|
|
244
|
-
|
|
245
|
-
|
|
244
|
+
.gene-detail-tabs {
|
|
245
|
+
white-space: nowrap;
|
|
246
|
+
flex-wrap: wrap;
|
|
247
|
+
width: 80em;
|
|
248
|
+
display: flex;
|
|
246
249
|
}
|
|
247
250
|
|
|
248
|
-
.
|
|
249
|
-
|
|
251
|
+
.gene-detail-tab-closed {
|
|
252
|
+
color: #006400;
|
|
253
|
+
cursor: pointer;
|
|
250
254
|
}
|
|
251
255
|
|
|
252
|
-
.
|
|
253
|
-
|
|
256
|
+
.gene-detail-tab-disabled {
|
|
257
|
+
color: #d3d3d3;
|
|
258
|
+
cursor: not-allowed;
|
|
254
259
|
}
|
|
255
260
|
|
|
256
|
-
.
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
padding: 2ch;
|
|
261
|
-
line-height: .925em;
|
|
262
|
-
position: relative;
|
|
261
|
+
.gene-detail-tab-empty {
|
|
262
|
+
color: #006400;
|
|
263
|
+
cursor: pointer;
|
|
264
|
+
font-style: oblique;
|
|
263
265
|
}
|
|
264
266
|
|
|
265
|
-
.
|
|
266
|
-
|
|
267
|
-
align-items: center;
|
|
268
|
-
display: flex;
|
|
267
|
+
.gene-detail-tab-empty:before {
|
|
268
|
+
content: "Add ";
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
-
.
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
271
|
+
.gene-detail-tab-expanded {
|
|
272
|
+
color: #fff;
|
|
273
|
+
cursor: pointer;
|
|
274
|
+
background-color: #557b74;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
|
-
.
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
margin: 0;
|
|
277
|
+
.result-gene-summary {
|
|
278
|
+
flex-flow: row;
|
|
279
|
+
justify-content: flex-start;
|
|
280
|
+
display: flex;
|
|
282
281
|
}
|
|
283
282
|
|
|
284
|
-
|
|
285
|
-
white-space:
|
|
286
|
-
|
|
283
|
+
.result-gene-summary .species-name {
|
|
284
|
+
white-space: nowrap;
|
|
285
|
+
font-style: italic;
|
|
287
286
|
}
|
|
288
287
|
|
|
289
|
-
.
|
|
290
|
-
|
|
288
|
+
.result-gene-title-body {
|
|
289
|
+
flex: auto;
|
|
290
|
+
width: 1036px;
|
|
291
291
|
}
|
|
292
292
|
|
|
293
|
-
.
|
|
294
|
-
|
|
293
|
+
.model-ortholog, .closest-ortholog, .gene-summary-tair {
|
|
294
|
+
cursor: pointer;
|
|
295
|
+
border: 1px solid #ff8c00;
|
|
296
|
+
flex: auto;
|
|
297
|
+
width: 500px;
|
|
298
|
+
margin-top: 10px;
|
|
299
|
+
margin-left: 1rem;
|
|
300
|
+
padding: 0 1rem;
|
|
301
|
+
font-size: smaller;
|
|
295
302
|
}
|
|
296
303
|
|
|
297
|
-
.
|
|
298
|
-
|
|
304
|
+
.model-ortholog {
|
|
305
|
+
border: 1px dotted #ff8c00;
|
|
299
306
|
}
|
|
300
307
|
|
|
301
|
-
.
|
|
302
|
-
|
|
308
|
+
.closest-ortholog {
|
|
309
|
+
border: 1px dotted #006400;
|
|
303
310
|
}
|
|
304
311
|
|
|
305
|
-
.
|
|
306
|
-
|
|
312
|
+
.gene-summary-tair {
|
|
313
|
+
border: 1px dotted #00008b;
|
|
307
314
|
}
|
|
308
315
|
|
|
309
|
-
.
|
|
310
|
-
|
|
316
|
+
.gene-summary-tair .rest {
|
|
317
|
+
display: none;
|
|
311
318
|
}
|
|
312
319
|
|
|
313
|
-
.
|
|
314
|
-
|
|
320
|
+
.gene-summary-tair:hover .rest, .gene-summary-tair:focus .rest {
|
|
321
|
+
display: inline;
|
|
315
322
|
}
|
|
316
323
|
|
|
317
|
-
.
|
|
318
|
-
|
|
324
|
+
.gene-summary-tair:hover .ellipsis, .gene-summary-tair:focus .ellipsis {
|
|
325
|
+
display: none;
|
|
319
326
|
}
|
|
320
327
|
|
|
321
|
-
.
|
|
322
|
-
|
|
328
|
+
.closest-ortholog:before, .model-ortholog:before, .gene-summary-tair:before {
|
|
329
|
+
float: right;
|
|
330
|
+
background: #fff;
|
|
331
|
+
border: 1px dotted;
|
|
332
|
+
margin-top: -12px;
|
|
333
|
+
margin-right: 6px;
|
|
334
|
+
padding: 0 1rem;
|
|
335
|
+
position: relative;
|
|
323
336
|
}
|
|
324
337
|
|
|
325
|
-
.
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
background: linear-gradient(to bottom right, #aaccaf 0% 50%, #cfe1d2 50% 100%);
|
|
338
|
+
.model-ortholog:before {
|
|
339
|
+
content: "Model Species Homolog";
|
|
340
|
+
color: orange;
|
|
329
341
|
}
|
|
330
342
|
|
|
331
|
-
.
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
background: linear-gradient(to bottom right, #a7b4d3 0% 50%, #d0d8e6 50% 100%);
|
|
343
|
+
.closest-ortholog:before {
|
|
344
|
+
content: "Closest Annotated Homolog";
|
|
345
|
+
color: #006400;
|
|
335
346
|
}
|
|
336
347
|
|
|
337
|
-
.
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
background: linear-gradient(to bottom right, #c5a3bf 0% 50%, #dcc9d9 50% 100%);
|
|
348
|
+
.gene-summary-tair:before {
|
|
349
|
+
content: "TAIR Curated Description";
|
|
350
|
+
color: #00008b;
|
|
341
351
|
}
|
|
342
352
|
|
|
343
|
-
.
|
|
344
|
-
|
|
353
|
+
.rep-identity {
|
|
354
|
+
float: right;
|
|
355
|
+
padding-top: 5px;
|
|
356
|
+
padding-right: 10px;
|
|
357
|
+
font-style: italic;
|
|
345
358
|
}
|
|
346
359
|
|
|
347
|
-
.
|
|
348
|
-
|
|
349
|
-
color: #555;
|
|
350
|
-
background: none;
|
|
351
|
-
border: none;
|
|
352
|
-
font-family: monospace;
|
|
353
|
-
font-size: 11pt;
|
|
354
|
-
position: absolute;
|
|
355
|
-
top: 9px;
|
|
356
|
-
right: 40px;
|
|
360
|
+
.rep-identity:after {
|
|
361
|
+
content: "% identity";
|
|
357
362
|
}
|
|
358
363
|
|
|
359
|
-
.
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
font-size: 1.5rem;
|
|
365
|
-
position: absolute;
|
|
366
|
-
top: 3px;
|
|
367
|
-
right: -5px;
|
|
364
|
+
.eFP:before {
|
|
365
|
+
content: url("BAR-logo.fb7d0f73.png");
|
|
366
|
+
padding-right: 5px;
|
|
367
|
+
position: relative;
|
|
368
|
+
top: 5px;
|
|
368
369
|
}
|
|
369
370
|
|
|
370
|
-
.
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
padding:
|
|
375
|
-
font-size:
|
|
371
|
+
.eFP:after {
|
|
372
|
+
content: "New!";
|
|
373
|
+
color: red;
|
|
374
|
+
vertical-align: super;
|
|
375
|
+
padding-left: 2px;
|
|
376
|
+
font-size: x-small;
|
|
376
377
|
font-style: italic;
|
|
377
378
|
font-weight: bold;
|
|
378
|
-
|
|
379
|
-
top: 0;
|
|
380
|
-
right: 0;
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
.tree-view-node {
|
|
384
|
-
margin-left: 10px;
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
.tree-view-node-collapse-toggle.collapse-spacer {
|
|
388
|
-
width: 14px;
|
|
389
|
-
display: inline-block;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
.tree-view-node-collapse-toggle {
|
|
393
|
-
width: 14px;
|
|
394
|
-
margin-right: 3px;
|
|
395
|
-
}
|
|
396
|
-
|
|
397
|
-
.tree-view-node-label {
|
|
398
|
-
border: 1px solid #fff;
|
|
399
|
-
margin-left: 3px;
|
|
400
|
-
padding: 1px;
|
|
401
|
-
font-size: smaller;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
.tree-view-node-label.selected {
|
|
405
|
-
background-color: gray;
|
|
406
|
-
border: 1px solid #003f81;
|
|
407
|
-
border-radius: 3px;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.rstm-toggle-icon {
|
|
411
|
-
display: inline-block;
|
|
412
|
-
}
|
|
413
|
-
|
|
414
|
-
.rstm-toggle-icon-symbol {
|
|
415
|
-
width: 2rem;
|
|
416
|
-
height: 2rem;
|
|
417
|
-
text-align: center;
|
|
418
|
-
line-height: 2rem;
|
|
419
|
-
}
|
|
420
|
-
|
|
421
|
-
.rstm-tree-item-group {
|
|
422
|
-
text-align: left;
|
|
423
|
-
width: 100%;
|
|
424
|
-
border-top: 1px solid #ccc;
|
|
425
|
-
padding-left: 0;
|
|
426
|
-
list-style-type: none;
|
|
379
|
+
line-height: normal;
|
|
427
380
|
}
|
|
428
381
|
|
|
429
|
-
.
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
box-shadow: none;
|
|
433
|
-
z-index: unset;
|
|
434
|
-
background: none;
|
|
435
|
-
border-bottom: 1px solid #ccc;
|
|
436
|
-
padding: .75rem 1rem;
|
|
382
|
+
.gxa:before {
|
|
383
|
+
content: url("expression-atlas-logo.87d25571.png");
|
|
384
|
+
padding-right: 5px;
|
|
437
385
|
position: relative;
|
|
386
|
+
top: 5px;
|
|
438
387
|
}
|
|
439
388
|
|
|
440
|
-
.
|
|
441
|
-
|
|
442
|
-
background: #179ed3;
|
|
443
|
-
border-bottom: none;
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
.rstm-tree-item--focused {
|
|
447
|
-
z-index: 999;
|
|
448
|
-
box-shadow: 0 0 5px #222;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.rstm-search {
|
|
389
|
+
.gene-search-pic-sugg {
|
|
390
|
+
background: url("suggestions.7b2830b6.png") 0 0 / contain no-repeat;
|
|
452
391
|
width: 100%;
|
|
453
|
-
|
|
454
|
-
padding: 1rem 1.5rem;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
.display-mode .btn-toolbar {
|
|
458
|
-
padding-left: 10px;
|
|
459
|
-
position: absolute;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
.tooltip-inner {
|
|
463
|
-
max-width: 400px;
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.genetree-vis .node, .genetree-vis .edge {
|
|
467
|
-
cursor: pointer;
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
.genetree-vis .tree-wrapper * {
|
|
471
|
-
transition: all 20ms ease-in-out;
|
|
472
|
-
}
|
|
473
|
-
|
|
474
|
-
.genetree-vis .tree-wrapper .clade {
|
|
475
|
-
transition: transform 20ms ease-in-out;
|
|
476
|
-
}
|
|
477
|
-
|
|
478
|
-
.genetree-vis .tree-wrapper .clade .edge-rect {
|
|
479
|
-
transition: scaleY 20ms ease-in-out, scaleX 20ms ease-in-out, transform 20ms ease-in-out;
|
|
480
|
-
}
|
|
481
|
-
|
|
482
|
-
.genetree-vis .interaction-helper {
|
|
483
|
-
opacity: 0;
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
.genetree-vis .node circle {
|
|
487
|
-
stroke: #777;
|
|
488
|
-
fill: #fff;
|
|
489
|
-
}
|
|
490
|
-
|
|
491
|
-
.genetree-vis .speciation rect {
|
|
492
|
-
fill: navy;
|
|
493
|
-
}
|
|
494
|
-
|
|
495
|
-
.genetree-vis .duplication rect {
|
|
496
|
-
fill: #cd0000;
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
.genetree-vis .node:hover .internal, .genetree-vis .edge:hover .internal, .genetree-vis .node:hover .gene circle, .genetree-vis .edge:hover .gene circle, .genetree-vis .node:hover ~ .clade .node rect, .genetree-vis .edge:hover ~ .clade .node rect, .genetree-vis .node:hover + .node rect, .genetree-vis .edge:hover + .node rect {
|
|
500
|
-
transform: scale(2);
|
|
501
|
-
}
|
|
502
|
-
|
|
503
|
-
.genetree-vis .node:hover ~ .clade .interaction-rect, .genetree-vis .edge:hover ~ .clade .interaction-rect {
|
|
504
|
-
opacity: 1;
|
|
505
|
-
fill-opacity: 1;
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
.genetree-vis .node:hover ~ .clade circle, .genetree-vis .edge:hover ~ .clade circle, .genetree-vis .node:hover + .node circle, .genetree-vis .edge:hover + .node circle, .genetree-vis .node:hover .collapsed path, .genetree-vis .edge:hover .collapsed path, .genetree-vis .node:hover ~ .clade .collapsed path, .genetree-vis .edge:hover ~ .clade .collapsed path, .genetree-vis .node:hover + .node .collapsed path, .genetree-vis .edge:hover + .node .collapsed path {
|
|
509
|
-
stroke-width: 2px;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.genetree-vis .node:hover ~ .clade text, .genetree-vis .edge:hover ~ .clade text, .genetree-vis .node:hover text, .genetree-vis .edge:hover text {
|
|
513
|
-
font-weight: bolder;
|
|
514
|
-
}
|
|
515
|
-
|
|
516
|
-
.genetree-vis .node .gene.ortholog_one2one circle, .genetree-vis .node .gene.ortholog_one2many circle, .genetree-vis .node .gene.ortholog_many2many circle {
|
|
517
|
-
stroke: orange;
|
|
518
|
-
}
|
|
519
|
-
|
|
520
|
-
.genetree-vis .node .gene.within_species_paralog circle {
|
|
521
|
-
stroke: green;
|
|
522
|
-
}
|
|
523
|
-
|
|
524
|
-
.genetree-vis .node .gene.self circle {
|
|
525
|
-
stroke: red;
|
|
526
|
-
fill: red;
|
|
527
|
-
}
|
|
528
|
-
|
|
529
|
-
.genetree-vis .node .gene.self text {
|
|
530
|
-
font-weight: bolder;
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
.genetree-vis .node .gene.representative circle {
|
|
534
|
-
stroke: orange;
|
|
535
|
-
fill: orange;
|
|
536
|
-
}
|
|
537
|
-
|
|
538
|
-
.genetree-vis .node text {
|
|
539
|
-
fill-opacity: 1;
|
|
540
|
-
text-anchor: start;
|
|
541
|
-
font-size: 11px;
|
|
542
|
-
}
|
|
543
|
-
|
|
544
|
-
.genetree-vis .collapsed path {
|
|
545
|
-
stroke-width: 1px;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
.genetree-vis .domains rect {
|
|
549
|
-
cursor: pointer;
|
|
550
|
-
stroke-opacity: 0;
|
|
551
|
-
}
|
|
552
|
-
|
|
553
|
-
.genetree-vis .domains rect:hover {
|
|
554
|
-
cursor: pointer;
|
|
555
|
-
stroke-opacity: 1;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.popover-title .tooltip-title-button {
|
|
559
|
-
margin-top: -4px !important;
|
|
560
|
-
margin-right: 4px !important;
|
|
561
|
-
}
|
|
562
|
-
|
|
563
|
-
.msa-slider {
|
|
564
|
-
margin-bottom: -10px;
|
|
565
|
-
padding-top: 10px;
|
|
566
|
-
padding-bottom: 0;
|
|
567
|
-
position: relative;
|
|
392
|
+
height: 200px;
|
|
568
393
|
}
|
|
569
394
|
|
|
570
|
-
.
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
border: 4px solid #7c8383;
|
|
575
|
-
border-radius: 8px;
|
|
576
|
-
font-family: sans-serif;
|
|
577
|
-
font-size: 1px;
|
|
395
|
+
.gene-search-pic-results {
|
|
396
|
+
background: url("results.e437a98f.png") 0 0 / contain no-repeat;
|
|
397
|
+
width: 100%;
|
|
398
|
+
height: 200px;
|
|
578
399
|
}
|
|
579
400
|
|
|
580
|
-
.
|
|
401
|
+
.gene-search-pic-genetree {
|
|
402
|
+
background: url("genetree.145467e3.png") 0 0 / contain no-repeat;
|
|
581
403
|
width: 100%;
|
|
582
|
-
height:
|
|
404
|
+
height: 200px;
|
|
583
405
|
}
|
|
584
406
|
|
|
585
407
|
.MSAlignments-wrapper {
|
|
586
|
-
overflow
|
|
587
|
-
overflow-y: hidden;
|
|
408
|
+
overflow: scroll hidden;
|
|
588
409
|
}
|
|
589
410
|
|
|
590
411
|
.clustal {
|
|
@@ -785,8 +606,8 @@ code.fasta {
|
|
|
785
606
|
|
|
786
607
|
.hydrophobicity {
|
|
787
608
|
white-space: nowrap;
|
|
788
|
-
height: 18px;
|
|
789
609
|
color: #fcff89;
|
|
610
|
+
height: 18px;
|
|
790
611
|
font-family: monospace;
|
|
791
612
|
font-size: 12px;
|
|
792
613
|
}
|
|
@@ -1267,260 +1088,437 @@ code.fasta {
|
|
|
1267
1088
|
color: #fcff89;
|
|
1268
1089
|
}
|
|
1269
1090
|
|
|
1270
|
-
.
|
|
1271
|
-
|
|
1272
|
-
|
|
1091
|
+
.display-mode .btn-toolbar {
|
|
1092
|
+
padding-left: 10px;
|
|
1093
|
+
position: absolute;
|
|
1273
1094
|
}
|
|
1274
1095
|
|
|
1275
|
-
.
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
padding-left: 15px;
|
|
1279
|
-
padding-right: 15px;
|
|
1280
|
-
}
|
|
1096
|
+
.tooltip-inner {
|
|
1097
|
+
max-width: 400px;
|
|
1098
|
+
}
|
|
1281
1099
|
|
|
1282
|
-
.
|
|
1283
|
-
|
|
1284
|
-
max-width: 100%;
|
|
1100
|
+
.genetree-vis .node, .genetree-vis .edge {
|
|
1101
|
+
cursor: pointer;
|
|
1285
1102
|
}
|
|
1286
1103
|
|
|
1287
|
-
.
|
|
1288
|
-
|
|
1289
|
-
border-spacing: 0;
|
|
1290
|
-
table-layout: fixed;
|
|
1291
|
-
border-color: gray;
|
|
1104
|
+
.genetree-vis .tree-wrapper * {
|
|
1105
|
+
transition: all 20ms ease-in-out;
|
|
1292
1106
|
}
|
|
1293
1107
|
|
|
1294
|
-
.
|
|
1295
|
-
|
|
1108
|
+
.genetree-vis .tree-wrapper .clade {
|
|
1109
|
+
transition: transform 20ms ease-in-out;
|
|
1296
1110
|
}
|
|
1297
1111
|
|
|
1298
|
-
.
|
|
1299
|
-
|
|
1112
|
+
.genetree-vis .tree-wrapper .clade .edge-rect {
|
|
1113
|
+
transition: scaleY 20ms ease-in-out, scaleX 20ms ease-in-out, transform 20ms ease-in-out;
|
|
1300
1114
|
}
|
|
1301
1115
|
|
|
1302
|
-
.
|
|
1303
|
-
|
|
1116
|
+
.genetree-vis .interaction-helper {
|
|
1117
|
+
opacity: 0;
|
|
1304
1118
|
}
|
|
1305
1119
|
|
|
1306
|
-
.
|
|
1307
|
-
|
|
1120
|
+
.genetree-vis .node circle {
|
|
1121
|
+
stroke: #777;
|
|
1122
|
+
fill: #fff;
|
|
1308
1123
|
}
|
|
1309
1124
|
|
|
1310
|
-
.
|
|
1311
|
-
|
|
1312
|
-
list-style: none;
|
|
1125
|
+
.genetree-vis .speciation rect {
|
|
1126
|
+
fill: navy;
|
|
1313
1127
|
}
|
|
1314
1128
|
|
|
1315
|
-
.
|
|
1316
|
-
|
|
1317
|
-
padding: .2em;
|
|
1129
|
+
.genetree-vis .duplication rect {
|
|
1130
|
+
fill: #cd0000;
|
|
1318
1131
|
}
|
|
1319
1132
|
|
|
1320
|
-
.
|
|
1321
|
-
|
|
1133
|
+
.genetree-vis .node:hover .internal, .genetree-vis .edge:hover .internal, .genetree-vis .node:hover .gene circle, .genetree-vis .edge:hover .gene circle, .genetree-vis .node:hover ~ .clade .node rect, .genetree-vis .edge:hover ~ .clade .node rect, .genetree-vis .node:hover + .node rect, .genetree-vis .edge:hover + .node rect {
|
|
1134
|
+
transform: scale(2);
|
|
1322
1135
|
}
|
|
1323
1136
|
|
|
1324
|
-
.
|
|
1325
|
-
|
|
1137
|
+
.genetree-vis .node:hover ~ .clade .interaction-rect, .genetree-vis .edge:hover ~ .clade .interaction-rect {
|
|
1138
|
+
opacity: 1;
|
|
1139
|
+
fill-opacity: 1;
|
|
1326
1140
|
}
|
|
1327
1141
|
|
|
1328
|
-
.
|
|
1329
|
-
|
|
1330
|
-
margin-bottom: 0;
|
|
1142
|
+
.genetree-vis .node:hover ~ .clade circle, .genetree-vis .edge:hover ~ .clade circle, .genetree-vis .node:hover + .node circle, .genetree-vis .edge:hover + .node circle, .genetree-vis .node:hover .collapsed path, .genetree-vis .edge:hover .collapsed path, .genetree-vis .node:hover ~ .clade .collapsed path, .genetree-vis .edge:hover ~ .clade .collapsed path, .genetree-vis .node:hover + .node .collapsed path, .genetree-vis .edge:hover + .node .collapsed path {
|
|
1143
|
+
stroke-width: 2px;
|
|
1331
1144
|
}
|
|
1332
1145
|
|
|
1333
|
-
.
|
|
1334
|
-
|
|
1146
|
+
.genetree-vis .node:hover ~ .clade text, .genetree-vis .edge:hover ~ .clade text, .genetree-vis .node:hover text, .genetree-vis .edge:hover text {
|
|
1147
|
+
font-weight: bolder;
|
|
1335
1148
|
}
|
|
1336
1149
|
|
|
1337
|
-
.gene-
|
|
1338
|
-
|
|
1339
|
-
font-size: small;
|
|
1340
|
-
font-style: italic;
|
|
1341
|
-
font-weight: bold;
|
|
1150
|
+
.genetree-vis .node .gene.ortholog_one2one circle, .genetree-vis .node .gene.ortholog_one2many circle, .genetree-vis .node .gene.ortholog_many2many circle {
|
|
1151
|
+
stroke: orange;
|
|
1342
1152
|
}
|
|
1343
1153
|
|
|
1344
|
-
.
|
|
1345
|
-
|
|
1154
|
+
.genetree-vis .node .gene.within_species_paralog circle {
|
|
1155
|
+
stroke: green;
|
|
1346
1156
|
}
|
|
1347
1157
|
|
|
1348
|
-
.
|
|
1349
|
-
|
|
1350
|
-
|
|
1158
|
+
.genetree-vis .node .gene.self circle {
|
|
1159
|
+
stroke: red;
|
|
1160
|
+
fill: red;
|
|
1351
1161
|
}
|
|
1352
1162
|
|
|
1353
|
-
.
|
|
1354
|
-
|
|
1163
|
+
.genetree-vis .node .gene.self text {
|
|
1164
|
+
font-weight: bolder;
|
|
1355
1165
|
}
|
|
1356
1166
|
|
|
1357
|
-
.
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
vertical-align: top;
|
|
1167
|
+
.genetree-vis .node .gene.representative circle {
|
|
1168
|
+
stroke: orange;
|
|
1169
|
+
fill: orange;
|
|
1361
1170
|
}
|
|
1362
1171
|
|
|
1363
|
-
.
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
display: flex;
|
|
1172
|
+
.genetree-vis .node text {
|
|
1173
|
+
fill-opacity: 1;
|
|
1174
|
+
text-anchor: start;
|
|
1175
|
+
font-size: 11px;
|
|
1368
1176
|
}
|
|
1369
1177
|
|
|
1370
|
-
.
|
|
1371
|
-
|
|
1372
|
-
cursor: pointer;
|
|
1178
|
+
.genetree-vis .collapsed path {
|
|
1179
|
+
stroke-width: 1px;
|
|
1373
1180
|
}
|
|
1374
1181
|
|
|
1375
|
-
.
|
|
1376
|
-
|
|
1377
|
-
|
|
1182
|
+
.genetree-vis .domains rect {
|
|
1183
|
+
cursor: pointer;
|
|
1184
|
+
stroke-opacity: 0;
|
|
1378
1185
|
}
|
|
1379
1186
|
|
|
1380
|
-
.
|
|
1381
|
-
color: #006400;
|
|
1187
|
+
.genetree-vis .domains rect:hover {
|
|
1382
1188
|
cursor: pointer;
|
|
1383
|
-
|
|
1189
|
+
stroke-opacity: 1;
|
|
1384
1190
|
}
|
|
1385
1191
|
|
|
1386
|
-
.
|
|
1387
|
-
|
|
1192
|
+
.popover-title .tooltip-title-button {
|
|
1193
|
+
margin-top: -4px !important;
|
|
1194
|
+
margin-right: 4px !important;
|
|
1388
1195
|
}
|
|
1389
1196
|
|
|
1390
|
-
.
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1197
|
+
.msa-slider {
|
|
1198
|
+
margin-bottom: -10px;
|
|
1199
|
+
padding-top: 10px;
|
|
1200
|
+
padding-bottom: 0;
|
|
1201
|
+
position: relative;
|
|
1394
1202
|
}
|
|
1395
1203
|
|
|
1396
|
-
.
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1204
|
+
.resize-drag {
|
|
1205
|
+
color: red;
|
|
1206
|
+
box-sizing: border-box;
|
|
1207
|
+
background: none;
|
|
1208
|
+
border: 4px solid #7c8383;
|
|
1209
|
+
border-radius: 8px;
|
|
1210
|
+
font-family: sans-serif;
|
|
1211
|
+
font-size: 1px;
|
|
1400
1212
|
}
|
|
1401
1213
|
|
|
1402
|
-
.
|
|
1403
|
-
|
|
1404
|
-
|
|
1214
|
+
.resize-container {
|
|
1215
|
+
width: 100%;
|
|
1216
|
+
height: 100%;
|
|
1405
1217
|
}
|
|
1406
1218
|
|
|
1407
|
-
.
|
|
1408
|
-
|
|
1409
|
-
flex: auto;
|
|
1219
|
+
.rstm-toggle-icon {
|
|
1220
|
+
display: inline-block;
|
|
1410
1221
|
}
|
|
1411
1222
|
|
|
1412
|
-
.
|
|
1223
|
+
.rstm-toggle-icon-symbol {
|
|
1224
|
+
text-align: center;
|
|
1225
|
+
width: 2rem;
|
|
1226
|
+
height: 2rem;
|
|
1227
|
+
line-height: 2rem;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
.rstm-tree-item-group {
|
|
1231
|
+
text-align: left;
|
|
1232
|
+
border-top: 1px solid #ccc;
|
|
1233
|
+
width: 100%;
|
|
1234
|
+
padding-left: 0;
|
|
1235
|
+
list-style-type: none;
|
|
1236
|
+
}
|
|
1237
|
+
|
|
1238
|
+
.rstm-tree-item {
|
|
1413
1239
|
cursor: pointer;
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
padding:
|
|
1420
|
-
|
|
1240
|
+
color: #333;
|
|
1241
|
+
box-shadow: none;
|
|
1242
|
+
z-index: unset;
|
|
1243
|
+
background: none;
|
|
1244
|
+
border-bottom: 1px solid #ccc;
|
|
1245
|
+
padding: .75rem 1rem;
|
|
1246
|
+
position: relative;
|
|
1421
1247
|
}
|
|
1422
1248
|
|
|
1423
|
-
.
|
|
1424
|
-
|
|
1249
|
+
.rstm-tree-item--active {
|
|
1250
|
+
color: #fff;
|
|
1251
|
+
background: #179ed3;
|
|
1252
|
+
border-bottom: none;
|
|
1425
1253
|
}
|
|
1426
1254
|
|
|
1427
|
-
.
|
|
1428
|
-
|
|
1255
|
+
.rstm-tree-item--focused {
|
|
1256
|
+
z-index: 999;
|
|
1257
|
+
box-shadow: 0 0 5px #222;
|
|
1429
1258
|
}
|
|
1430
1259
|
|
|
1431
|
-
.
|
|
1432
|
-
border:
|
|
1260
|
+
.rstm-search {
|
|
1261
|
+
border: none;
|
|
1262
|
+
width: 100%;
|
|
1263
|
+
padding: 1rem 1.5rem;
|
|
1433
1264
|
}
|
|
1434
1265
|
|
|
1435
|
-
.
|
|
1436
|
-
|
|
1266
|
+
.tree-view-node {
|
|
1267
|
+
margin-left: 10px;
|
|
1437
1268
|
}
|
|
1438
1269
|
|
|
1439
|
-
.
|
|
1440
|
-
|
|
1270
|
+
.tree-view-node-collapse-toggle.collapse-spacer {
|
|
1271
|
+
width: 14px;
|
|
1272
|
+
display: inline-block;
|
|
1441
1273
|
}
|
|
1442
1274
|
|
|
1443
|
-
.
|
|
1444
|
-
|
|
1275
|
+
.tree-view-node-collapse-toggle {
|
|
1276
|
+
width: 14px;
|
|
1277
|
+
margin-right: 3px;
|
|
1445
1278
|
}
|
|
1446
1279
|
|
|
1447
|
-
.
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1280
|
+
.tree-view-node-label {
|
|
1281
|
+
border: 1px solid #fff;
|
|
1282
|
+
margin-left: 3px;
|
|
1283
|
+
padding: 1px;
|
|
1284
|
+
font-size: smaller;
|
|
1285
|
+
}
|
|
1286
|
+
|
|
1287
|
+
.tree-view-node-label.selected {
|
|
1288
|
+
background-color: gray;
|
|
1289
|
+
border: 1px solid #003f81;
|
|
1290
|
+
border-radius: 3px;
|
|
1291
|
+
}
|
|
1292
|
+
|
|
1293
|
+
.fasta-container {
|
|
1294
|
+
background-color: #fcfffd;
|
|
1295
|
+
border-style: dashed;
|
|
1296
|
+
border-color: #557b74;
|
|
1297
|
+
padding: 2ch;
|
|
1298
|
+
line-height: .925em;
|
|
1454
1299
|
position: relative;
|
|
1455
1300
|
}
|
|
1456
1301
|
|
|
1457
|
-
.
|
|
1458
|
-
|
|
1459
|
-
|
|
1302
|
+
.styled-span {
|
|
1303
|
+
text-align: center;
|
|
1304
|
+
align-items: center;
|
|
1305
|
+
display: flex;
|
|
1460
1306
|
}
|
|
1461
1307
|
|
|
1462
|
-
.
|
|
1463
|
-
|
|
1464
|
-
|
|
1308
|
+
.vertical-line {
|
|
1309
|
+
background-color: #000;
|
|
1310
|
+
flex-grow: 1;
|
|
1311
|
+
height: 20px;
|
|
1465
1312
|
}
|
|
1466
1313
|
|
|
1467
|
-
.
|
|
1468
|
-
|
|
1469
|
-
|
|
1314
|
+
.horizontal-line {
|
|
1315
|
+
background-color: #000;
|
|
1316
|
+
width: 57px;
|
|
1317
|
+
height: 3px;
|
|
1318
|
+
margin: 0;
|
|
1470
1319
|
}
|
|
1471
1320
|
|
|
1472
|
-
.
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
padding-right: 10px;
|
|
1476
|
-
font-style: italic;
|
|
1321
|
+
code.fasta {
|
|
1322
|
+
white-space: pre-wrap;
|
|
1323
|
+
color: #595959;
|
|
1477
1324
|
}
|
|
1478
1325
|
|
|
1479
|
-
.
|
|
1480
|
-
|
|
1326
|
+
.header {
|
|
1327
|
+
color: #000;
|
|
1481
1328
|
}
|
|
1482
1329
|
|
|
1483
|
-
.
|
|
1484
|
-
|
|
1485
|
-
padding-right: 5px;
|
|
1486
|
-
position: relative;
|
|
1487
|
-
top: 5px;
|
|
1330
|
+
.upstream, .downstream {
|
|
1331
|
+
color: #80a0a0;
|
|
1488
1332
|
}
|
|
1489
1333
|
|
|
1490
|
-
.
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1334
|
+
.intron {
|
|
1335
|
+
color: #aaa;
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1338
|
+
.utr5 {
|
|
1339
|
+
background-color: #aaccaf;
|
|
1340
|
+
}
|
|
1341
|
+
|
|
1342
|
+
.utr5-other {
|
|
1343
|
+
background-color: #cfe1d2;
|
|
1344
|
+
}
|
|
1345
|
+
|
|
1346
|
+
.cds {
|
|
1347
|
+
background-color: #a7b4d3;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
.cds-other {
|
|
1351
|
+
background-color: #d0d8e6;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
.utr3 {
|
|
1355
|
+
background-color: #c5a3bf;
|
|
1356
|
+
}
|
|
1357
|
+
|
|
1358
|
+
.utr3-other {
|
|
1359
|
+
background-color: #dcc9d9;
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
.square-utr5 {
|
|
1363
|
+
background: linear-gradient(to bottom right, #aaccaf 0% 50%, #cfe1d2 50% 100%);
|
|
1364
|
+
width: 20px;
|
|
1365
|
+
height: 20px;
|
|
1366
|
+
}
|
|
1367
|
+
|
|
1368
|
+
.square-cds {
|
|
1369
|
+
background: linear-gradient(to bottom right, #a7b4d3 0% 50%, #d0d8e6 50% 100%);
|
|
1370
|
+
width: 20px;
|
|
1371
|
+
height: 20px;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
.square-utr3 {
|
|
1375
|
+
background: linear-gradient(to bottom right, #c5a3bf 0% 50%, #dcc9d9 50% 100%);
|
|
1376
|
+
width: 20px;
|
|
1377
|
+
height: 20px;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1380
|
+
.reverse-slide {
|
|
1381
|
+
direction: rtl;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
.fasta-key {
|
|
1385
|
+
cursor: default;
|
|
1386
|
+
color: #555;
|
|
1387
|
+
background: none;
|
|
1388
|
+
border: none;
|
|
1389
|
+
font-family: monospace;
|
|
1390
|
+
font-size: 11pt;
|
|
1391
|
+
position: absolute;
|
|
1392
|
+
top: 9px;
|
|
1393
|
+
right: 40px;
|
|
1394
|
+
}
|
|
1395
|
+
|
|
1396
|
+
.copy-button {
|
|
1397
|
+
cursor: pointer;
|
|
1398
|
+
color: #555;
|
|
1399
|
+
background: none;
|
|
1400
|
+
border: none;
|
|
1401
|
+
font-size: 1.5rem;
|
|
1402
|
+
position: absolute;
|
|
1403
|
+
top: 3px;
|
|
1404
|
+
right: -5px;
|
|
1405
|
+
}
|
|
1406
|
+
|
|
1407
|
+
.notification {
|
|
1408
|
+
color: #fff;
|
|
1409
|
+
z-index: 999;
|
|
1410
|
+
background-color: #050505;
|
|
1411
|
+
padding: 5px;
|
|
1412
|
+
font-size: smaller;
|
|
1496
1413
|
font-style: italic;
|
|
1497
1414
|
font-weight: bold;
|
|
1498
|
-
|
|
1415
|
+
position: absolute;
|
|
1416
|
+
top: 0;
|
|
1417
|
+
right: 0;
|
|
1499
1418
|
}
|
|
1500
1419
|
|
|
1501
|
-
.
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
position: relative;
|
|
1505
|
-
top: 5px;
|
|
1420
|
+
.taxogenomic-vis .gramene-search-vis {
|
|
1421
|
+
-webkit-user-select: none;
|
|
1422
|
+
cursor: pointer;
|
|
1506
1423
|
}
|
|
1507
1424
|
|
|
1508
|
-
.
|
|
1509
|
-
|
|
1510
|
-
height: 200px;
|
|
1511
|
-
background: url("suggestions.7b2830b6.png") 0 0 / contain no-repeat;
|
|
1425
|
+
.taxogenomic-vis .gramene-search-vis canvas {
|
|
1426
|
+
position: absolute;
|
|
1512
1427
|
}
|
|
1513
1428
|
|
|
1514
|
-
.
|
|
1515
|
-
|
|
1516
|
-
height: 200px;
|
|
1517
|
-
background: url("results.e437a98f.png") 0 0 / contain no-repeat;
|
|
1429
|
+
.taxogenomic-vis .gramene-search-vis > * {
|
|
1430
|
+
display: inline;
|
|
1518
1431
|
}
|
|
1519
1432
|
|
|
1520
|
-
.
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1433
|
+
.taxogenomic-vis .gramene-search-vis text {
|
|
1434
|
+
fill: gray;
|
|
1435
|
+
stroke: #557b74;
|
|
1436
|
+
stroke-opacity: 0;
|
|
1437
|
+
stroke-width: .5px;
|
|
1438
|
+
-webkit-user-select: none;
|
|
1439
|
+
user-select: none;
|
|
1440
|
+
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
1441
|
+
font-size: 12px;
|
|
1442
|
+
}
|
|
1443
|
+
|
|
1444
|
+
.taxogenomic-vis .gramene-search-vis text::selection {
|
|
1445
|
+
background: none;
|
|
1446
|
+
}
|
|
1447
|
+
|
|
1448
|
+
.taxogenomic-vis .gramene-search-vis .taxonomy * {
|
|
1449
|
+
transition: fill .2s ease-in-out, stroke-opacity .2s ease-in-out;
|
|
1450
|
+
}
|
|
1451
|
+
|
|
1452
|
+
.taxogenomic-vis .gramene-search-vis .clade .results-count {
|
|
1453
|
+
font-size: 10px;
|
|
1454
|
+
}
|
|
1455
|
+
|
|
1456
|
+
.taxogenomic-vis .gramene-search-vis .clade .node circle {
|
|
1457
|
+
stroke: #557b74;
|
|
1458
|
+
stroke-width: 1px;
|
|
1459
|
+
fill: #f6f6f6;
|
|
1460
|
+
}
|
|
1461
|
+
|
|
1462
|
+
.taxogenomic-vis .gramene-search-vis .clade .edge rect {
|
|
1463
|
+
fill: #ccc;
|
|
1464
|
+
}
|
|
1465
|
+
|
|
1466
|
+
.taxogenomic-vis .gramene-search-vis .clade .clade.highlight > .node > circle, .taxogenomic-vis .gramene-search-vis .clade .clade.highlight > .edge > rect {
|
|
1467
|
+
fill: #f0b866;
|
|
1468
|
+
}
|
|
1469
|
+
|
|
1470
|
+
.taxogenomic-vis .gramene-search-vis .clade .clade.highlight > .node-label text {
|
|
1471
|
+
fill: #557b74;
|
|
1472
|
+
stroke-opacity: 1;
|
|
1473
|
+
}
|
|
1474
|
+
|
|
1475
|
+
.taxogenomic-vis .gramene-search-vis .clade .node:hover > circle, .taxogenomic-vis .gramene-search-vis .clade .edge:hover > circle, .taxogenomic-vis .gramene-search-vis .clade .node:hover > rect, .taxogenomic-vis .gramene-search-vis .clade .edge:hover > rect, .taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .node > circle, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .node > circle, .taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .clade .edge > rect, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .clade .edge > rect, .taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .clade .node > circle, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .clade .node > circle {
|
|
1476
|
+
fill: #f0b866;
|
|
1477
|
+
}
|
|
1478
|
+
|
|
1479
|
+
.taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .node-label text, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .node-label text, .taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .clade text, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .clade text, .taxogenomic-vis .gramene-search-vis .clade .node-label:hover text {
|
|
1480
|
+
fill: #557b74;
|
|
1481
|
+
stroke-opacity: 1;
|
|
1482
|
+
}
|
|
1483
|
+
|
|
1484
|
+
.taxogenomic-vis .gramene-search-vis .clade .bin, .taxogenomic-vis .gramene-search-vis .clade .full-region {
|
|
1485
|
+
stroke: #557b74;
|
|
1486
|
+
stroke-width: 0;
|
|
1487
|
+
shape-rendering: crispedges;
|
|
1488
|
+
transition: none;
|
|
1489
|
+
}
|
|
1490
|
+
|
|
1491
|
+
.taxogenomic-vis .gramene-search-vis .clade .bin.selected {
|
|
1492
|
+
fill: #ea8e75;
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
.taxogenomic-vis .gramene-search-vis .clade .bin:hover {
|
|
1496
|
+
fill: #557b74;
|
|
1497
|
+
}
|
|
1498
|
+
|
|
1499
|
+
.taxogenomic-vis .gramene-search-vis .clade .full-region.selected {
|
|
1500
|
+
stroke-width: 1px;
|
|
1501
|
+
stroke: #ea8e75;
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
.taxogenomic-vis .gramene-search-vis .clade .full-region:hover {
|
|
1505
|
+
stroke-width: 1px;
|
|
1506
|
+
stroke: #557b74;
|
|
1524
1507
|
}
|
|
1525
1508
|
|
|
1509
|
+
.taxogenomic-vis .gramene-search-vis .clade .species-background {
|
|
1510
|
+
fill: none;
|
|
1511
|
+
}
|
|
1512
|
+
|
|
1513
|
+
.taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .species-background, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .species-background, .taxogenomic-vis .gramene-search-vis .clade .node:hover ~ .clade .species-background, .taxogenomic-vis .gramene-search-vis .clade .edge:hover ~ .clade .species-background, .taxogenomic-vis .gramene-search-vis .clade .clade.highlight > .species-background {
|
|
1514
|
+
fill: #f9e3c3;
|
|
1515
|
+
}
|
|
1516
|
+
|
|
1517
|
+
.accordion-button {
|
|
1518
|
+
padding: .4rem !important;
|
|
1519
|
+
}
|
|
1520
|
+
|
|
1521
|
+
.accordion-button:hover {
|
|
1522
|
+
background-color: #dbe8f3;
|
|
1523
|
+
}
|
|
1526
1524
|
/*# sourceMappingURL=index.css.map */
|