igv-rails 0.9.3.2 → 1.0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/lib/igv/rails/version.rb +1 -1
- data/vendor/assets/javascripts/igv.js +24343 -13
- data/vendor/assets/stylesheets/igv.css +285 -121
- metadata +2 -2
@@ -1,3 +1,30 @@
|
|
1
|
+
#color-by-tag {
|
2
|
+
color: #444;
|
3
|
+
}
|
4
|
+
|
5
|
+
#color-by-tag:hover,
|
6
|
+
#color-by-tag:focus,
|
7
|
+
#color-by-tag:active {
|
8
|
+
|
9
|
+
cursor: pointer;
|
10
|
+
|
11
|
+
padding-left: 2px;
|
12
|
+
padding-right: 2px;
|
13
|
+
|
14
|
+
color: #ffffff;
|
15
|
+
|
16
|
+
border-color: #444;
|
17
|
+
border-radius: 2px;
|
18
|
+
border-style: solid;
|
19
|
+
border-width: thin;
|
20
|
+
|
21
|
+
background-color: #7f7f7f;
|
22
|
+
|
23
|
+
}
|
24
|
+
|
25
|
+
.igv-dialog-label-centered {
|
26
|
+
text-align: center;
|
27
|
+
}
|
1
28
|
|
2
29
|
/* prevent unwanted translucent blue overlay when user selects anywhere in ENCODE table */
|
3
30
|
div[id="igvEncodeModal"] {
|
@@ -38,6 +65,28 @@ div[id="igvEncodeModal"] {
|
|
38
65
|
background-color: white;
|
39
66
|
}
|
40
67
|
|
68
|
+
.igv-grid-container-alert-dialog {
|
69
|
+
|
70
|
+
position: absolute;
|
71
|
+
left: 0;
|
72
|
+
right: 0;
|
73
|
+
top: 45%;
|
74
|
+
|
75
|
+
margin-left: auto;
|
76
|
+
margin-right: auto;
|
77
|
+
/*max-width: 740px;*/
|
78
|
+
max-width: 300px;
|
79
|
+
|
80
|
+
border-color: rgb(127, 127, 127);
|
81
|
+
border-radius: 4px;
|
82
|
+
border-style: solid;
|
83
|
+
border-width: thin;
|
84
|
+
|
85
|
+
z-index: 1999;
|
86
|
+
|
87
|
+
background-color: white;
|
88
|
+
}
|
89
|
+
|
41
90
|
.igv-grid-container-colorpicker {
|
42
91
|
|
43
92
|
position: absolute;
|
@@ -308,6 +357,38 @@ div[id="igvEncodeModal"] {
|
|
308
357
|
|
309
358
|
}
|
310
359
|
|
360
|
+
/* ok button */
|
361
|
+
.igv-col-filler-ok-button {
|
362
|
+
|
363
|
+
margin-left: 8px;
|
364
|
+
padding-left: 1px;
|
365
|
+
padding-top: 5px;
|
366
|
+
width: 90%;
|
367
|
+
height: 90%;
|
368
|
+
|
369
|
+
border-color: rgb(255, 255, 255);
|
370
|
+
border-style: solid;
|
371
|
+
border-width: thin;
|
372
|
+
border-radius: 4px;
|
373
|
+
|
374
|
+
color: white;
|
375
|
+
text-align: center;
|
376
|
+
vertical-align: middle;
|
377
|
+
|
378
|
+
font-family: 'PT Sans', sans-serif;
|
379
|
+
font-size: medium;
|
380
|
+
font-weight: 200;
|
381
|
+
|
382
|
+
background-color: #5ea4e0;
|
383
|
+
}
|
384
|
+
|
385
|
+
.igv-col-filler-ok-button:hover,
|
386
|
+
.igv-col-filler-ok-button:focus,
|
387
|
+
.igv-col-filler-ok-button:active {
|
388
|
+
background-color: #5079a8;
|
389
|
+
}
|
390
|
+
|
391
|
+
/* cancel button */
|
311
392
|
.igv-col-filler-cancel-button {
|
312
393
|
|
313
394
|
margin-left: 8px;
|
@@ -509,12 +590,22 @@ div.ui-dialog fieldset {
|
|
509
590
|
top: 0;
|
510
591
|
left: 0;
|
511
592
|
|
593
|
+
padding-top: 2px;
|
594
|
+
padding-bottom: 2px;
|
595
|
+
padding-left: 4px;
|
596
|
+
padding-right: 4px;
|
597
|
+
|
512
598
|
height: 24px;
|
513
599
|
width: auto;
|
514
600
|
|
515
|
-
|
516
|
-
|
517
|
-
|
601
|
+
box-sizing: content-box;
|
602
|
+
|
603
|
+
border-style: solid;
|
604
|
+
border-width: thin;
|
605
|
+
border-radius: 4px;
|
606
|
+
border-color: #dfdfdf;
|
607
|
+
|
608
|
+
background-color: #f3f3f3;
|
518
609
|
}
|
519
610
|
|
520
611
|
.igv-logo-nonav {
|
@@ -540,6 +631,7 @@ div.ui-dialog fieldset {
|
|
540
631
|
|
541
632
|
float: left;
|
542
633
|
|
634
|
+
margin-left: 4px;
|
543
635
|
margin-right: 8px;
|
544
636
|
|
545
637
|
position: relative;
|
@@ -574,16 +666,16 @@ div.ui-dialog fieldset {
|
|
574
666
|
|
575
667
|
position: relative;
|
576
668
|
|
577
|
-
height:
|
669
|
+
height: 20px;
|
578
670
|
width: 80%;
|
579
671
|
padding-left: 8px;
|
580
672
|
|
581
673
|
outline: none;
|
582
674
|
|
583
675
|
border-style: solid;
|
584
|
-
border-radius:
|
676
|
+
border-radius: 3px;
|
585
677
|
border-width: thin;
|
586
|
-
border-color: rgb(
|
678
|
+
border-color: rgb(223, 223, 223);
|
587
679
|
|
588
680
|
font-family: 'Open Sans', sans-serif;
|
589
681
|
font-size: small;
|
@@ -642,37 +734,42 @@ div.ui-dialog fieldset {
|
|
642
734
|
float: right;
|
643
735
|
}
|
644
736
|
|
645
|
-
.
|
737
|
+
.igv-toggle-track-labels {
|
646
738
|
|
647
739
|
position: relative;
|
648
740
|
float: right;
|
649
741
|
|
650
|
-
border-style: solid;
|
651
|
-
border-radius: 4px;
|
652
|
-
border-width: thin;
|
653
|
-
border-color: rgb(127, 127, 127);
|
654
|
-
|
655
742
|
margin-right: 64px;
|
656
743
|
|
657
|
-
padding-left:
|
658
|
-
padding-right:
|
744
|
+
padding-left: 8px;
|
745
|
+
padding-right: 8px;
|
659
746
|
padding-top: 1px;
|
660
747
|
padding-bottom: 2px;
|
661
748
|
|
749
|
+
border-style: solid;
|
750
|
+
border-radius: 3px;
|
751
|
+
border-width: thin;
|
752
|
+
border-color: rgb(223, 223, 223);
|
753
|
+
|
662
754
|
font-family: 'Open Sans', sans-serif;
|
663
755
|
font-size: small;
|
664
|
-
font-weight:
|
665
|
-
color: #444;
|
756
|
+
font-weight: 200;
|
666
757
|
|
758
|
+
color: #444;
|
759
|
+
background-color: white;
|
667
760
|
}
|
668
761
|
|
669
|
-
.
|
670
|
-
.
|
671
|
-
.
|
762
|
+
.igv-toggle-track-labels:hover,
|
763
|
+
.igv-toggle-track-labels:focus,
|
764
|
+
.igv-toggle-track-labels:active {
|
672
765
|
|
673
766
|
cursor: pointer;
|
674
|
-
border-color: #444;
|
675
767
|
|
768
|
+
border-color: #afafaf;
|
769
|
+
/*border-width: 2px;*/
|
770
|
+
|
771
|
+
/*color: white;*/
|
772
|
+
/*background-color: #c4c4c4;*/
|
676
773
|
}
|
677
774
|
|
678
775
|
.igvNavigationMarginLeft12 {
|
@@ -903,26 +1000,39 @@ div.ui-dialog fieldset {
|
|
903
1000
|
|
904
1001
|
.igv-spinner-container {
|
905
1002
|
|
906
|
-
color:
|
1003
|
+
color: #3f3f3f;
|
1004
|
+
/*background-color: rgba(255, 0, 0, 0.5);*/
|
1005
|
+
|
1006
|
+
width: 100%;
|
1007
|
+
height: 100%;
|
1008
|
+
|
1009
|
+
text-align: center;
|
1010
|
+
padding-top: 8px;
|
1011
|
+
|
907
1012
|
font-size: 24px;
|
908
1013
|
|
909
|
-
position: absolute
|
910
|
-
top:50
|
911
|
-
left:50
|
912
|
-
|
913
|
-
|
1014
|
+
/*position: absolute;*/
|
1015
|
+
/*top:50%;*/
|
1016
|
+
/*left:50%;*/
|
1017
|
+
|
1018
|
+
z-index: 512;
|
1019
|
+
|
914
1020
|
}
|
915
1021
|
|
916
1022
|
.igv-root-div {
|
917
1023
|
|
918
1024
|
position: relative;
|
919
|
-
|
920
|
-
margin-right: 10px;
|
921
|
-
/*padding-top:50px;*/
|
1025
|
+
|
922
1026
|
left: 0;
|
923
1027
|
right: 0;
|
1028
|
+
|
924
1029
|
height: auto;
|
925
1030
|
|
1031
|
+
margin-left: 10px;
|
1032
|
+
margin-right: 10px;
|
1033
|
+
|
1034
|
+
padding-top:4px;
|
1035
|
+
|
926
1036
|
-webkit-box-sizing: border-box;
|
927
1037
|
-moz-box-sizing: border-box;
|
928
1038
|
box-sizing: border-box;
|
@@ -960,9 +1070,9 @@ div.ui-dialog fieldset {
|
|
960
1070
|
|
961
1071
|
.igv-ideogram-content-div {
|
962
1072
|
|
963
|
-
height:
|
1073
|
+
height: 32px;
|
964
1074
|
|
965
|
-
margin-left:
|
1075
|
+
margin-left: 4px;
|
966
1076
|
margin-right: 50px;
|
967
1077
|
}
|
968
1078
|
|
@@ -973,6 +1083,37 @@ div.ui-dialog fieldset {
|
|
973
1083
|
height:100%;
|
974
1084
|
}
|
975
1085
|
|
1086
|
+
.igv-ideogram-gutter-shim {
|
1087
|
+
/*margin-left: 100px;*/
|
1088
|
+
margin-left: 50px;
|
1089
|
+
}
|
1090
|
+
|
1091
|
+
.igv-viewport-div {
|
1092
|
+
position: absolute;
|
1093
|
+
left: 4px;
|
1094
|
+
right: 50px;
|
1095
|
+
height: 100%;
|
1096
|
+
overflow-x: hidden;
|
1097
|
+
overflow-y: hidden;
|
1098
|
+
}
|
1099
|
+
|
1100
|
+
.igv-left-hand-gutter {
|
1101
|
+
position: absolute;
|
1102
|
+
left: 0;
|
1103
|
+
width: 50px;
|
1104
|
+
height: 100%;
|
1105
|
+
}
|
1106
|
+
|
1107
|
+
.igv-clickable {
|
1108
|
+
cursor: pointer;
|
1109
|
+
background-color: white;
|
1110
|
+
}
|
1111
|
+
|
1112
|
+
.igv-gutter-shim {
|
1113
|
+
/*left: 100px;*/
|
1114
|
+
left: 50px;
|
1115
|
+
}
|
1116
|
+
|
976
1117
|
.igv-windowsizepanel-content-div {
|
977
1118
|
|
978
1119
|
position: relative;
|
@@ -1012,42 +1153,6 @@ div.ui-dialog fieldset {
|
|
1012
1153
|
vertical-align: middle;
|
1013
1154
|
}
|
1014
1155
|
|
1015
|
-
.igv-track-label-span-base {
|
1016
|
-
|
1017
|
-
font-family: 'PT Sans', sans-serif;
|
1018
|
-
font-size: small;
|
1019
|
-
font-weight: 400;
|
1020
|
-
color: #444;
|
1021
|
-
|
1022
|
-
margin-left: 4px;
|
1023
|
-
margin-right: 4px;
|
1024
|
-
position: relative;
|
1025
|
-
cursor: default;
|
1026
|
-
}
|
1027
|
-
|
1028
|
-
.igv-track-label-span-base:hover,
|
1029
|
-
.igv-track-label-span-base:focus,
|
1030
|
-
.igv-track-label-span-base:active {
|
1031
|
-
border-radius: 4px;
|
1032
|
-
border-color: #444;
|
1033
|
-
border-style: solid;
|
1034
|
-
border-width: thin;
|
1035
|
-
cursor: pointer;
|
1036
|
-
background-color: rgba(224, 224, 224, 1);
|
1037
|
-
}
|
1038
|
-
|
1039
|
-
.igv-track-label-span-highlighted {
|
1040
|
-
font-weight: bold;
|
1041
|
-
color: rgba(204, 51, 0, 1);
|
1042
|
-
}
|
1043
|
-
|
1044
|
-
.igv-track-label {
|
1045
|
-
position: absolute;
|
1046
|
-
top: 10px;
|
1047
|
-
left: 96px;
|
1048
|
-
cursor: pointer;
|
1049
|
-
}
|
1050
|
-
|
1051
1156
|
.igv-track-disable-button-fa {
|
1052
1157
|
position: absolute;
|
1053
1158
|
top: 8px;
|
@@ -1066,27 +1171,9 @@ div.ui-dialog fieldset {
|
|
1066
1171
|
text-align: center;
|
1067
1172
|
}
|
1068
1173
|
|
1069
|
-
.igv-app-icon-box {
|
1070
|
-
|
1071
|
-
position: absolute;
|
1072
|
-
left: 0;
|
1073
|
-
right: 0;
|
1074
|
-
top: 0;
|
1075
|
-
bottom: 0;
|
1076
|
-
|
1077
|
-
width: 100%;
|
1078
|
-
height: 30px;
|
1079
|
-
|
1080
|
-
margin: auto;
|
1081
|
-
|
1082
|
-
background: white;
|
1083
|
-
|
1084
|
-
}
|
1085
|
-
|
1086
1174
|
.igv-app-icon {
|
1087
1175
|
cursor: pointer;
|
1088
1176
|
color: grey;
|
1089
|
-
background-color: white;
|
1090
1177
|
}
|
1091
1178
|
|
1092
1179
|
.igv-app-icon:hover,
|
@@ -1120,30 +1207,40 @@ div.ui-dialog fieldset {
|
|
1120
1207
|
text-decoration: none;
|
1121
1208
|
}
|
1122
1209
|
|
1210
|
+
.igv-track-menu-border-top {
|
1211
|
+
border-top-color: #a2a2a2;
|
1212
|
+
border-top-style: solid;
|
1213
|
+
border-top-width: thin;
|
1214
|
+
}
|
1215
|
+
|
1216
|
+
.igv-track-menu-category {
|
1217
|
+
|
1218
|
+
padding-left: 4px;
|
1219
|
+
|
1220
|
+
font-weight: 400;
|
1221
|
+
|
1222
|
+
/*color: white;*/
|
1223
|
+
/*background-color: #808080;*/
|
1224
|
+
|
1225
|
+
}
|
1226
|
+
|
1123
1227
|
.igv-track-menu-item {
|
1124
1228
|
|
1125
|
-
cursor: pointer;
|
1126
1229
|
padding-left: 4px;
|
1127
1230
|
padding-right: 4px;
|
1128
1231
|
|
1129
1232
|
padding-top: 2px;
|
1130
1233
|
padding-bottom: 2px;
|
1131
1234
|
|
1132
|
-
|
1133
|
-
}
|
1134
|
-
|
1135
|
-
.igv-track-menu-border-top {
|
1136
|
-
border-top-color: #a2a2a2;
|
1137
|
-
border-top-style: solid;
|
1138
|
-
border-top-width: thin;
|
1235
|
+
background-color: rgb(255, 255, 255);
|
1139
1236
|
}
|
1140
1237
|
|
1141
1238
|
.igv-track-menu-item:hover,
|
1142
1239
|
.igv-track-menu-item:focus,
|
1143
1240
|
.igv-track-menu-item:active {
|
1144
1241
|
|
1145
|
-
|
1146
|
-
background-color:
|
1242
|
+
cursor: pointer;
|
1243
|
+
background-color: rgb(239, 239, 239);
|
1147
1244
|
}
|
1148
1245
|
|
1149
1246
|
.igv-track-menu-discard {
|
@@ -1211,43 +1308,72 @@ div.ui-dialog fieldset {
|
|
1211
1308
|
|
1212
1309
|
}
|
1213
1310
|
|
1214
|
-
.igv-
|
1215
|
-
position: absolute;
|
1216
|
-
left: 0;
|
1217
|
-
width: 50px;
|
1218
|
-
height: 100%;
|
1219
|
-
}
|
1311
|
+
.igv-track-label {
|
1220
1312
|
|
1221
|
-
.igv-viewport-div {
|
1222
1313
|
position: absolute;
|
1223
|
-
left: 50px;
|
1224
|
-
right: 50px;
|
1225
|
-
height: 100%;
|
1226
|
-
overflow-x: hidden;
|
1227
|
-
overflow-y: hidden;
|
1228
|
-
}
|
1229
1314
|
|
1230
|
-
|
1315
|
+
left: 8px;
|
1316
|
+
top: 4px;
|
1317
|
+
|
1318
|
+
width: auto;
|
1319
|
+
height:auto;
|
1320
|
+
max-width: 200px;
|
1321
|
+
|
1322
|
+
padding-left: 4px;
|
1323
|
+
padding-right: 4px;
|
1324
|
+
|
1325
|
+
white-space: nowrap;
|
1326
|
+
overflow: hidden;
|
1327
|
+
text-overflow: ellipsis;
|
1328
|
+
|
1329
|
+
font-family: 'PT Sans', sans-serif;
|
1330
|
+
font-size: small;
|
1331
|
+
font-weight: 400;
|
1332
|
+
|
1333
|
+
text-align: center;
|
1231
1334
|
|
1232
|
-
border-radius: 4px;
|
1233
1335
|
border-color: #444;
|
1336
|
+
border-radius: 2px;
|
1234
1337
|
border-style: solid;
|
1235
1338
|
border-width: thin;
|
1236
1339
|
|
1237
|
-
background: rgb(255, 255, 255);
|
1340
|
+
background-color: rgb(255, 255, 255);
|
1341
|
+
|
1342
|
+
z-index: 128;
|
1343
|
+
|
1344
|
+
}
|
1345
|
+
|
1346
|
+
.igv-track-label:hover,
|
1347
|
+
.igv-track-label:focus,
|
1348
|
+
.igv-track-label:active {
|
1349
|
+
|
1350
|
+
cursor: pointer;
|
1351
|
+
|
1352
|
+
font-weight: bold;
|
1238
1353
|
|
1239
|
-
/*
|
1354
|
+
/*background-color: rgba(224, 224, 224, 1);*/
|
1355
|
+
}
|
1356
|
+
|
1357
|
+
.zoom-in-notice {
|
1240
1358
|
|
1241
1359
|
position: absolute;
|
1242
|
-
left: 0;
|
1243
1360
|
top: 0;
|
1244
|
-
|
1245
|
-
height:auto;
|
1361
|
+
left: 0;
|
1246
1362
|
|
1247
|
-
|
1363
|
+
font-family: 'PT Sans', sans-serif;
|
1364
|
+
font-size: medium;
|
1365
|
+
font-weight: 400;
|
1366
|
+
|
1367
|
+
width: 100%;
|
1368
|
+
height: 100%;
|
1369
|
+
|
1370
|
+
text-align: center;
|
1371
|
+
|
1372
|
+
color: #3f3f3f;
|
1248
1373
|
|
1249
|
-
|
1374
|
+
background-color: rgba(255, 255, 255, 0.51);
|
1250
1375
|
|
1376
|
+
z-index: 64;
|
1251
1377
|
}
|
1252
1378
|
|
1253
1379
|
.igv-track-control-canvas {
|
@@ -1256,10 +1382,11 @@ div.ui-dialog fieldset {
|
|
1256
1382
|
|
1257
1383
|
.igv-content-div {
|
1258
1384
|
position: relative;
|
1259
|
-
|
1260
|
-
/*
|
1261
|
-
|
1262
|
-
|
1385
|
+
|
1386
|
+
/*left: 0;*/
|
1387
|
+
/*right: 0;*/
|
1388
|
+
|
1389
|
+
width: 100%;
|
1263
1390
|
height:100%;
|
1264
1391
|
}
|
1265
1392
|
|
@@ -1269,6 +1396,43 @@ div.ui-dialog fieldset {
|
|
1269
1396
|
height: 100%;
|
1270
1397
|
}
|
1271
1398
|
|
1399
|
+
.igv-data-range-track-label {
|
1400
|
+
|
1401
|
+
cursor: pointer;
|
1402
|
+
|
1403
|
+
position: absolute;
|
1404
|
+
top:0;
|
1405
|
+
right:0;
|
1406
|
+
|
1407
|
+
padding-top: 0;
|
1408
|
+
padding-right: 0;
|
1409
|
+
|
1410
|
+
margin-top: 0;
|
1411
|
+
margin-right: 8px;
|
1412
|
+
|
1413
|
+
font-family: 'PT Sans', sans-serif;
|
1414
|
+
font-size: small;
|
1415
|
+
font-weight: 200;
|
1416
|
+
|
1417
|
+
color: #373737;
|
1418
|
+
/*background-color: rgb(255, 255, 255);*/
|
1419
|
+
|
1420
|
+
/*border-style: solid;*/
|
1421
|
+
/*border-width: thin;*/
|
1422
|
+
/*border-radius: 2px;*/
|
1423
|
+
/*border-color: #dfdfdf;*/
|
1424
|
+
|
1425
|
+
}
|
1426
|
+
|
1427
|
+
.igv-data-range-track-label:hover,
|
1428
|
+
.igv-data-range-track-label:focus,
|
1429
|
+
.igv-data-range-track-label:active {
|
1430
|
+
|
1431
|
+
font-weight: bold;
|
1432
|
+
/*border-color: #9b9b9b;*/
|
1433
|
+
|
1434
|
+
}
|
1435
|
+
|
1272
1436
|
.igv-scrollbar-outer-div {
|
1273
1437
|
position: absolute;
|
1274
1438
|
top: 0;
|