igv-rails 1.0.9.4 → 1.0.9.5
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 +2 -2
- data/lib/igv/rails/version.rb +1 -1
- data/vendor/assets/javascripts/igv.js +44477 -23991
- data/vendor/assets/stylesheets/igv.css +98 -20
- metadata +2 -2
@@ -1,3 +1,86 @@
|
|
1
|
+
.igv-color-swatch {
|
2
|
+
display: flex;
|
3
|
+
flex-flow: row;
|
4
|
+
flex-wrap: wrap;
|
5
|
+
justify-content: center;
|
6
|
+
align-items: center;
|
7
|
+
width: 24px;
|
8
|
+
height: 24px;
|
9
|
+
border-style: solid;
|
10
|
+
border-width: 1px;
|
11
|
+
border-color: transparent; }
|
12
|
+
.igv-color-swatch i.fa {
|
13
|
+
display: block; }
|
14
|
+
.igv-color-swatch i.fa:hover,
|
15
|
+
.igv-color-swatch i.fa:focus,
|
16
|
+
.igv-color-swatch i.fa:active {
|
17
|
+
cursor: pointer;
|
18
|
+
color: #0f0f0f; }
|
19
|
+
|
20
|
+
.igv-color-swatch:hover,
|
21
|
+
.igv-color-swatch:focus,
|
22
|
+
.igv-color-swatch:active {
|
23
|
+
border-color: #dddddd; }
|
24
|
+
|
25
|
+
.igv-colorpicker-menu-close-button {
|
26
|
+
display: flex;
|
27
|
+
flex-flow: row;
|
28
|
+
flex-wrap: nowrap;
|
29
|
+
justify-content: flex-end;
|
30
|
+
align-items: center;
|
31
|
+
width: 100%;
|
32
|
+
height: 32px;
|
33
|
+
margin-top: 4px;
|
34
|
+
margin-bottom: 4px;
|
35
|
+
padding-right: 8px; }
|
36
|
+
.igv-colorpicker-menu-close-button i.fa {
|
37
|
+
display: block;
|
38
|
+
margin-left: 4px;
|
39
|
+
margin-right: 4px;
|
40
|
+
color: #5f5f5f; }
|
41
|
+
.igv-colorpicker-menu-close-button i.fa:hover,
|
42
|
+
.igv-colorpicker-menu-close-button i.fa:focus,
|
43
|
+
.igv-colorpicker-menu-close-button i.fa:active {
|
44
|
+
cursor: pointer;
|
45
|
+
color: #0f0f0f; }
|
46
|
+
|
47
|
+
.igv-position-absolute {
|
48
|
+
position: absolute;
|
49
|
+
top: 0;
|
50
|
+
left: 0; }
|
51
|
+
|
52
|
+
.igv-generic-container {
|
53
|
+
width: 256px;
|
54
|
+
z-index: 5000;
|
55
|
+
background-color: white;
|
56
|
+
border-style: solid;
|
57
|
+
border-width: thin;
|
58
|
+
border-color: #dddddd;
|
59
|
+
cursor: pointer;
|
60
|
+
display: flex;
|
61
|
+
flex-direction: row;
|
62
|
+
flex-wrap: wrap;
|
63
|
+
justify-content: flex-start;
|
64
|
+
align-items: center; }
|
65
|
+
.igv-generic-container div:first-child {
|
66
|
+
display: flex;
|
67
|
+
flex-flow: row;
|
68
|
+
flex-wrap: nowrap;
|
69
|
+
justify-content: flex-end;
|
70
|
+
align-items: center;
|
71
|
+
height: 24px;
|
72
|
+
width: 100%;
|
73
|
+
background-color: #dddddd; }
|
74
|
+
.igv-generic-container div:first-child i.fa {
|
75
|
+
margin-right: 4px;
|
76
|
+
display: block;
|
77
|
+
color: #5f5f5f; }
|
78
|
+
.igv-generic-container div:first-child i.fa:hover,
|
79
|
+
.igv-generic-container div:first-child i.fa:focus,
|
80
|
+
.igv-generic-container div:first-child i.fa:active {
|
81
|
+
cursor: pointer;
|
82
|
+
color: #0f0f0f; }
|
83
|
+
|
1
84
|
.igv-navbar {
|
2
85
|
position: relative;
|
3
86
|
top: 0;
|
@@ -47,6 +130,17 @@
|
|
47
130
|
background-repeat: no-repeat;
|
48
131
|
background-position: 0 0; }
|
49
132
|
|
133
|
+
.igv-chromosome-select-widget-container {
|
134
|
+
position: relative;
|
135
|
+
float: left;
|
136
|
+
height: 90%;
|
137
|
+
width: 96px;
|
138
|
+
margin-right: 4px; }
|
139
|
+
.igv-chromosome-select-widget-container select {
|
140
|
+
position: relative;
|
141
|
+
width: 100%;
|
142
|
+
height: 100%; }
|
143
|
+
|
50
144
|
.igv-search-container {
|
51
145
|
position: relative;
|
52
146
|
top: 0;
|
@@ -208,9 +302,7 @@
|
|
208
302
|
|
209
303
|
.igv-track-div {
|
210
304
|
position: relative;
|
211
|
-
width: 100%;
|
212
|
-
overflow: hidden;
|
213
|
-
margin-bottom: 2px; }
|
305
|
+
width: 100%; }
|
214
306
|
|
215
307
|
.igv-viewport-container {
|
216
308
|
position: absolute;
|
@@ -425,6 +517,8 @@
|
|
425
517
|
right: 36px;
|
426
518
|
width: 12px;
|
427
519
|
margin-left: 2px;
|
520
|
+
margin-top: 1px;
|
521
|
+
margin-bottom: 1px;
|
428
522
|
height: 100%;
|
429
523
|
box-sizing: border-box;
|
430
524
|
font-size: medium;
|
@@ -658,28 +752,12 @@
|
|
658
752
|
|
659
753
|
.igv-grid-container-alert-dialog {
|
660
754
|
position: absolute;
|
661
|
-
left: 0;
|
662
|
-
right: 0;
|
663
|
-
top: 45%;
|
664
|
-
margin-left: auto;
|
665
|
-
margin-right: auto;
|
666
|
-
/*max-width: 740px;*/
|
667
755
|
max-width: 300px;
|
668
756
|
border-color: #7F7F7F;
|
669
757
|
border-radius: 4px;
|
670
758
|
border-style: solid;
|
671
759
|
border-width: thin;
|
672
|
-
z-index:
|
673
|
-
background-color: white; }
|
674
|
-
|
675
|
-
.igv-grid-container-colorpicker {
|
676
|
-
position: relative;
|
677
|
-
width: 256px;
|
678
|
-
border-color: #7F7F7F;
|
679
|
-
border-radius: 4px;
|
680
|
-
border-style: solid;
|
681
|
-
border-width: thin;
|
682
|
-
z-index: 1999;
|
760
|
+
z-index: 2048;
|
683
761
|
background-color: white; }
|
684
762
|
|
685
763
|
.igv-grid-header {
|
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.9.
|
4
|
+
version: 1.0.9.5
|
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: 2017-
|
11
|
+
date: 2017-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|