jscrollpane-rails 2.0.21 → 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 +5 -5
- data/LICENSE +2 -2
- data/README.md +35 -15
- data/app/assets/javascripts/jquery.jscrollpane.js +1451 -1361
- data/app/assets/stylesheets/jquery.jscrollpane.css +117 -0
- data/lib/jscrollpane-rails/version.rb +1 -1
- metadata +34 -8
- data/app/assets/stylesheets/jscrollpane.css +0 -115
@@ -0,0 +1,117 @@
|
|
1
|
+
/*
|
2
|
+
* CSS Styles that are needed by jScrollPane for it to operate correctly.
|
3
|
+
*
|
4
|
+
* Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
|
5
|
+
* may not operate correctly without them.
|
6
|
+
*/
|
7
|
+
|
8
|
+
.jspContainer
|
9
|
+
{
|
10
|
+
overflow: hidden;
|
11
|
+
position: relative;
|
12
|
+
}
|
13
|
+
|
14
|
+
.jspPane
|
15
|
+
{
|
16
|
+
position: absolute;
|
17
|
+
}
|
18
|
+
|
19
|
+
.jspVerticalBar
|
20
|
+
{
|
21
|
+
background: red;
|
22
|
+
height: 100%;
|
23
|
+
position: absolute;
|
24
|
+
right: 0;
|
25
|
+
top: 0;
|
26
|
+
width: 16px;
|
27
|
+
}
|
28
|
+
|
29
|
+
.jspHorizontalBar
|
30
|
+
{
|
31
|
+
background: red;
|
32
|
+
bottom: 0;
|
33
|
+
height: 16px;
|
34
|
+
left: 0;
|
35
|
+
position: absolute;
|
36
|
+
width: 100%;
|
37
|
+
}
|
38
|
+
|
39
|
+
.jspCap
|
40
|
+
{
|
41
|
+
display: none;
|
42
|
+
}
|
43
|
+
|
44
|
+
.jspHorizontalBar .jspCap
|
45
|
+
{
|
46
|
+
float: left;
|
47
|
+
}
|
48
|
+
|
49
|
+
.jspTrack
|
50
|
+
{
|
51
|
+
background: #dde;
|
52
|
+
position: relative;
|
53
|
+
}
|
54
|
+
|
55
|
+
.jspDrag
|
56
|
+
{
|
57
|
+
background: #bbd;
|
58
|
+
cursor: pointer;
|
59
|
+
left: 0;
|
60
|
+
position: relative;
|
61
|
+
top: 0;
|
62
|
+
}
|
63
|
+
|
64
|
+
.jspHorizontalBar .jspTrack,
|
65
|
+
.jspHorizontalBar .jspDrag
|
66
|
+
{
|
67
|
+
float: left;
|
68
|
+
height: 100%;
|
69
|
+
}
|
70
|
+
|
71
|
+
.jspArrow
|
72
|
+
{
|
73
|
+
background: #50506d;
|
74
|
+
cursor: pointer;
|
75
|
+
direction: ltr;
|
76
|
+
display: block;
|
77
|
+
margin: 0;
|
78
|
+
padding: 0;
|
79
|
+
text-indent: -20000px;
|
80
|
+
}
|
81
|
+
|
82
|
+
.jspDisabled
|
83
|
+
{
|
84
|
+
background: #80808d;
|
85
|
+
cursor: default;
|
86
|
+
}
|
87
|
+
|
88
|
+
.jspVerticalBar .jspArrow
|
89
|
+
{
|
90
|
+
height: 16px;
|
91
|
+
}
|
92
|
+
|
93
|
+
.jspHorizontalBar .jspArrow
|
94
|
+
{
|
95
|
+
float: left;
|
96
|
+
height: 100%;
|
97
|
+
width: 16px;
|
98
|
+
}
|
99
|
+
|
100
|
+
.jspVerticalBar .jspArrow:focus
|
101
|
+
{
|
102
|
+
border: 1px solid red;
|
103
|
+
outline: none;
|
104
|
+
}
|
105
|
+
|
106
|
+
.jspCorner
|
107
|
+
{
|
108
|
+
background: #eeeef4;
|
109
|
+
float: left;
|
110
|
+
height: 100%;
|
111
|
+
}
|
112
|
+
|
113
|
+
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
|
114
|
+
* html .jspCorner
|
115
|
+
{
|
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.
|
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
|
@@ -24,9 +24,36 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '3.1'
|
27
|
-
|
28
|
-
|
29
|
-
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rails
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '6.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '6.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: test-unit
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.1'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.1'
|
55
|
+
description: A ruby gem that uses the Rails asset pipeline to include the jScrollPane
|
56
|
+
plugin by Kelvin Luck and Tuukka Pasanen
|
30
57
|
email:
|
31
58
|
- golosizpru@gmail.com
|
32
59
|
executables: []
|
@@ -36,7 +63,7 @@ files:
|
|
36
63
|
- LICENSE
|
37
64
|
- README.md
|
38
65
|
- app/assets/javascripts/jquery.jscrollpane.js
|
39
|
-
- app/assets/stylesheets/jscrollpane.css
|
66
|
+
- app/assets/stylesheets/jquery.jscrollpane.css
|
40
67
|
- lib/jscrollpane-rails.rb
|
41
68
|
- lib/jscrollpane-rails/version.rb
|
42
69
|
homepage: https://github.com/bodrovis/jscrollpane-rails
|
@@ -58,8 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
58
85
|
- !ruby/object:Gem::Version
|
59
86
|
version: '0'
|
60
87
|
requirements: []
|
61
|
-
|
62
|
-
rubygems_version: 2.4.6
|
88
|
+
rubygems_version: 3.1.4
|
63
89
|
signing_key:
|
64
90
|
specification_version: 4
|
65
91
|
summary: Includes javascript and css files for the jScrollPane plugin.
|
@@ -1,115 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* CSS Styles that are needed by jScrollPane for it to operate correctly.
|
3
|
-
*
|
4
|
-
* Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
|
5
|
-
* may not operate correctly without them.
|
6
|
-
*/
|
7
|
-
|
8
|
-
.jspContainer
|
9
|
-
{
|
10
|
-
overflow: hidden;
|
11
|
-
position: relative;
|
12
|
-
}
|
13
|
-
|
14
|
-
.jspPane
|
15
|
-
{
|
16
|
-
position: absolute;
|
17
|
-
}
|
18
|
-
|
19
|
-
.jspVerticalBar
|
20
|
-
{
|
21
|
-
position: absolute;
|
22
|
-
top: 0;
|
23
|
-
right: 0;
|
24
|
-
width: 16px;
|
25
|
-
height: 100%;
|
26
|
-
background: red;
|
27
|
-
}
|
28
|
-
|
29
|
-
.jspHorizontalBar
|
30
|
-
{
|
31
|
-
position: absolute;
|
32
|
-
bottom: 0;
|
33
|
-
left: 0;
|
34
|
-
width: 100%;
|
35
|
-
height: 16px;
|
36
|
-
background: red;
|
37
|
-
}
|
38
|
-
|
39
|
-
.jspCap
|
40
|
-
{
|
41
|
-
display: none;
|
42
|
-
}
|
43
|
-
|
44
|
-
.jspHorizontalBar .jspCap
|
45
|
-
{
|
46
|
-
float: left;
|
47
|
-
}
|
48
|
-
|
49
|
-
.jspTrack
|
50
|
-
{
|
51
|
-
background: #dde;
|
52
|
-
position: relative;
|
53
|
-
}
|
54
|
-
|
55
|
-
.jspDrag
|
56
|
-
{
|
57
|
-
background: #bbd;
|
58
|
-
position: relative;
|
59
|
-
top: 0;
|
60
|
-
left: 0;
|
61
|
-
cursor: pointer;
|
62
|
-
}
|
63
|
-
|
64
|
-
.jspHorizontalBar .jspTrack,
|
65
|
-
.jspHorizontalBar .jspDrag
|
66
|
-
{
|
67
|
-
float: left;
|
68
|
-
height: 100%;
|
69
|
-
}
|
70
|
-
|
71
|
-
.jspArrow
|
72
|
-
{
|
73
|
-
background: #50506d;
|
74
|
-
text-indent: -20000px;
|
75
|
-
display: block;
|
76
|
-
cursor: pointer;
|
77
|
-
padding: 0;
|
78
|
-
margin: 0;
|
79
|
-
}
|
80
|
-
|
81
|
-
.jspArrow.jspDisabled
|
82
|
-
{
|
83
|
-
cursor: default;
|
84
|
-
background: #80808d;
|
85
|
-
}
|
86
|
-
|
87
|
-
.jspVerticalBar .jspArrow
|
88
|
-
{
|
89
|
-
height: 16px;
|
90
|
-
}
|
91
|
-
|
92
|
-
.jspHorizontalBar .jspArrow
|
93
|
-
{
|
94
|
-
width: 16px;
|
95
|
-
float: left;
|
96
|
-
height: 100%;
|
97
|
-
}
|
98
|
-
|
99
|
-
.jspVerticalBar .jspArrow:focus
|
100
|
-
{
|
101
|
-
outline: none;
|
102
|
-
}
|
103
|
-
|
104
|
-
.jspCorner
|
105
|
-
{
|
106
|
-
background: #eeeef4;
|
107
|
-
float: left;
|
108
|
-
height: 100%;
|
109
|
-
}
|
110
|
-
|
111
|
-
/* Yuk! CSS Hack for IE6 3 pixel bug :( */
|
112
|
-
* html .jspCorner
|
113
|
-
{
|
114
|
-
margin: 0 -3px 0 0;
|
115
|
-
}
|