jscrollpane-rails 2.2.1 → 2.2.2
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/LICENSE +2 -2
- data/README.md +6 -4
- data/app/assets/javascripts/jquery.jscrollpane.js +1394 -1501
- data/app/assets/stylesheets/jquery.jscrollpane.css +46 -46
- data/lib/jscrollpane-rails/version.rb +1 -1
- metadata +5 -6
@@ -7,111 +7,111 @@
|
|
7
7
|
|
8
8
|
.jspContainer
|
9
9
|
{
|
10
|
-
|
11
|
-
|
10
|
+
overflow: hidden;
|
11
|
+
position: relative;
|
12
12
|
}
|
13
13
|
|
14
14
|
.jspPane
|
15
15
|
{
|
16
|
-
|
16
|
+
position: absolute;
|
17
17
|
}
|
18
18
|
|
19
19
|
.jspVerticalBar
|
20
20
|
{
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
21
|
+
background: red;
|
22
|
+
height: 100%;
|
23
|
+
position: absolute;
|
24
|
+
right: 0;
|
25
|
+
top: 0;
|
26
|
+
width: 16px;
|
27
27
|
}
|
28
28
|
|
29
29
|
.jspHorizontalBar
|
30
30
|
{
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
31
|
+
background: red;
|
32
|
+
bottom: 0;
|
33
|
+
height: 16px;
|
34
|
+
left: 0;
|
35
|
+
position: absolute;
|
36
|
+
width: 100%;
|
37
37
|
}
|
38
38
|
|
39
39
|
.jspCap
|
40
40
|
{
|
41
|
-
|
41
|
+
display: none;
|
42
42
|
}
|
43
43
|
|
44
44
|
.jspHorizontalBar .jspCap
|
45
45
|
{
|
46
|
-
|
46
|
+
float: left;
|
47
47
|
}
|
48
48
|
|
49
49
|
.jspTrack
|
50
50
|
{
|
51
|
-
|
52
|
-
|
51
|
+
background: #dde;
|
52
|
+
position: relative;
|
53
53
|
}
|
54
54
|
|
55
55
|
.jspDrag
|
56
56
|
{
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
57
|
+
background: #bbd;
|
58
|
+
cursor: pointer;
|
59
|
+
left: 0;
|
60
|
+
position: relative;
|
61
|
+
top: 0;
|
62
62
|
}
|
63
63
|
|
64
64
|
.jspHorizontalBar .jspTrack,
|
65
65
|
.jspHorizontalBar .jspDrag
|
66
66
|
{
|
67
|
-
|
68
|
-
|
67
|
+
float: left;
|
68
|
+
height: 100%;
|
69
69
|
}
|
70
70
|
|
71
71
|
.jspArrow
|
72
72
|
{
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
73
|
+
background: #50506d;
|
74
|
+
cursor: pointer;
|
75
|
+
direction: ltr;
|
76
|
+
display: block;
|
77
|
+
margin: 0;
|
78
|
+
padding: 0;
|
79
|
+
text-indent: -20000px;
|
80
80
|
}
|
81
81
|
|
82
82
|
.jspDisabled
|
83
83
|
{
|
84
|
-
|
85
|
-
|
84
|
+
background: #80808d;
|
85
|
+
cursor: default;
|
86
86
|
}
|
87
87
|
|
88
88
|
.jspVerticalBar .jspArrow
|
89
89
|
{
|
90
|
-
|
90
|
+
height: 16px;
|
91
91
|
}
|
92
92
|
|
93
93
|
.jspHorizontalBar .jspArrow
|
94
94
|
{
|
95
|
-
|
96
|
-
|
97
|
-
|
95
|
+
float: left;
|
96
|
+
height: 100%;
|
97
|
+
width: 16px;
|
98
98
|
}
|
99
99
|
|
100
100
|
.jspVerticalBar .jspArrow:focus
|
101
101
|
{
|
102
|
-
|
103
|
-
|
102
|
+
border: 1px solid red;
|
103
|
+
outline: none;
|
104
104
|
}
|
105
105
|
|
106
106
|
.jspCorner
|
107
107
|
{
|
108
|
-
|
109
|
-
|
110
|
-
|
108
|
+
background: #eeeef4;
|
109
|
+
float: left;
|
110
|
+
height: 100%;
|
111
111
|
}
|
112
112
|
|
113
113
|
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
|
114
114
|
* html .jspCorner
|
115
115
|
{
|
116
|
-
|
117
|
-
}
|
116
|
+
margin: 0 -3px 0 0;
|
117
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jscrollpane-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ilya Bodrov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '6.0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '6.0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: test-unit
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -85,8 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
85
85
|
- !ruby/object:Gem::Version
|
86
86
|
version: '0'
|
87
87
|
requirements: []
|
88
|
-
|
89
|
-
rubygems_version: 2.7.8
|
88
|
+
rubygems_version: 3.1.4
|
90
89
|
signing_key:
|
91
90
|
specification_version: 4
|
92
91
|
summary: Includes javascript and css files for the jScrollPane plugin.
|