igv-rails 1.0.1.1 → 1.0.9.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/igv/rails/version.rb +1 -1
- data/vendor/assets/javascripts/igv.js +1944 -968
- data/vendor/assets/stylesheets/igv.css +88 -1
- metadata +2 -2
@@ -285,6 +285,23 @@ div[id="igvEncodeModal"] {
|
|
285
285
|
|
286
286
|
}
|
287
287
|
|
288
|
+
.igv-alert-dialog-text {
|
289
|
+
|
290
|
+
padding-top: 8px;
|
291
|
+
padding-left: 8px;
|
292
|
+
|
293
|
+
word-wrap: break-word;
|
294
|
+
|
295
|
+
text-align: center;
|
296
|
+
|
297
|
+
font-family: 'PT Sans', sans-serif;
|
298
|
+
font-size: 14px;
|
299
|
+
font-weight: 200;
|
300
|
+
|
301
|
+
color: #575757;
|
302
|
+
|
303
|
+
}
|
304
|
+
|
288
305
|
.igv-user-input-label {
|
289
306
|
|
290
307
|
padding-top: 8px;
|
@@ -732,6 +749,7 @@ div.ui-dialog fieldset {
|
|
732
749
|
|
733
750
|
position: relative;
|
734
751
|
float: right;
|
752
|
+
margin-left: 40px;
|
735
753
|
}
|
736
754
|
|
737
755
|
.igv-toggle-track-labels {
|
@@ -739,7 +757,7 @@ div.ui-dialog fieldset {
|
|
739
757
|
position: relative;
|
740
758
|
float: right;
|
741
759
|
|
742
|
-
margin-right:
|
760
|
+
margin-right: 5px;
|
743
761
|
|
744
762
|
padding-left: 8px;
|
745
763
|
padding-right: 8px;
|
@@ -1054,6 +1072,11 @@ div.ui-dialog fieldset {
|
|
1054
1072
|
height:200px;
|
1055
1073
|
}
|
1056
1074
|
|
1075
|
+
.igv-karyo-hide {
|
1076
|
+
height: 0;
|
1077
|
+
overflow: hidden;
|
1078
|
+
}
|
1079
|
+
|
1057
1080
|
.igv-karyo-content-div {
|
1058
1081
|
left:0;
|
1059
1082
|
top:0;
|
@@ -1390,6 +1413,70 @@ div.ui-dialog fieldset {
|
|
1390
1413
|
height:100%;
|
1391
1414
|
}
|
1392
1415
|
|
1416
|
+
.igv-center-guide {
|
1417
|
+
|
1418
|
+
position: absolute;
|
1419
|
+
top: 0;
|
1420
|
+
bottom: 0;
|
1421
|
+
left: 50%;
|
1422
|
+
width: 8px;
|
1423
|
+
|
1424
|
+
z-index: 8;
|
1425
|
+
|
1426
|
+
display: none;
|
1427
|
+
|
1428
|
+
user-select: none;
|
1429
|
+
-moz-user-select: none;
|
1430
|
+
-webkit-user-select: none;
|
1431
|
+
|
1432
|
+
border-left-style: dashed;
|
1433
|
+
border-left-width: thin;
|
1434
|
+
border-right-style: dashed;
|
1435
|
+
border-right-width: thin;
|
1436
|
+
|
1437
|
+
}
|
1438
|
+
|
1439
|
+
.igv-center-guide-wide {
|
1440
|
+
background-color: rgba(0,0,0,0);
|
1441
|
+
border-left-color: rgba(127, 127, 127, 0.51);
|
1442
|
+
border-right-color: rgba(127, 127, 127, 0.51);
|
1443
|
+
}
|
1444
|
+
|
1445
|
+
.igv-center-guide-thin {
|
1446
|
+
|
1447
|
+
left: 50%;
|
1448
|
+
width: 1px;
|
1449
|
+
|
1450
|
+
background-color: rgba(0,0,0,0);
|
1451
|
+
border-left-color: rgba(127, 127, 127, 0.51);
|
1452
|
+
border-right-color: rgba(0,0,0,0);
|
1453
|
+
|
1454
|
+
/*background-color: rgba(127, 127, 127, 0.51);*/
|
1455
|
+
/*border-left-color: rgba(0,0,0,0);*/
|
1456
|
+
/*border-right-color: rgba(0,0,0,0);*/
|
1457
|
+
}
|
1458
|
+
|
1459
|
+
.igv-cursor-tracking-guide {
|
1460
|
+
|
1461
|
+
position: absolute;
|
1462
|
+
top: 0;
|
1463
|
+
bottom: 0;
|
1464
|
+
left: 50%;
|
1465
|
+
width: 1px;
|
1466
|
+
|
1467
|
+
z-index: 1;
|
1468
|
+
|
1469
|
+
border-left-style: dotted;
|
1470
|
+
border-left-width: thin;
|
1471
|
+
border-left-color: rgba(127, 127, 127, 0.76);
|
1472
|
+
|
1473
|
+
display: none;
|
1474
|
+
|
1475
|
+
user-select: none;
|
1476
|
+
-moz-user-select: none;
|
1477
|
+
-webkit-user-select: none;
|
1478
|
+
}
|
1479
|
+
|
1393
1480
|
.igv-content-canvas {
|
1394
1481
|
position: absolute;
|
1395
1482
|
width: 100%;
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: igv-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.9.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- William Van Etten, PhD
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|