jscrollpane-rails 2.1.1 → 2.2.4

Sign up to get free protection for your applications and to get access to all the features.
@@ -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
+ }
@@ -1,5 +1,5 @@
1
1
  module JScrollPane
2
2
  module Rails
3
- VERSION = "2.1.1"
3
+ VERSION = '2.2.4'
4
4
  end
5
5
  end
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.1.1
4
+ version: 2.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Bodrov
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-16 00:00:00.000000000 Z
11
+ date: 2021-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -26,18 +26,32 @@ dependencies:
26
26
  version: '3.1'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: rails
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '='
32
+ - !ruby/object:Gem::Version
33
+ version: 7.0.0.rc1
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '='
39
+ - !ruby/object:Gem::Version
40
+ version: 7.0.0.rc1
41
+ - !ruby/object:Gem::Dependency
42
+ name: sprockets-rails
29
43
  requirement: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - "~>"
32
46
  - !ruby/object:Gem::Version
33
- version: '5.1'
47
+ version: '3.4'
34
48
  type: :development
35
49
  prerelease: false
36
50
  version_requirements: !ruby/object:Gem::Requirement
37
51
  requirements:
38
52
  - - "~>"
39
53
  - !ruby/object:Gem::Version
40
- version: '5.1'
54
+ version: '3.4'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: test-unit
43
57
  requirement: !ruby/object:Gem::Requirement
@@ -53,7 +67,7 @@ dependencies:
53
67
  - !ruby/object:Gem::Version
54
68
  version: '3.1'
55
69
  description: A ruby gem that uses the Rails asset pipeline to include the jScrollPane
56
- plugin by Kelvin Luck and Tuukka Pasanen
70
+ plugin by Kelvin Luck and Tuukka Pasanen. THIS GEM IS DEPRECATED.
57
71
  email:
58
72
  - golosizpru@gmail.com
59
73
  executables: []
@@ -63,14 +77,14 @@ files:
63
77
  - LICENSE
64
78
  - README.md
65
79
  - app/assets/javascripts/jquery.jscrollpane.js
66
- - app/assets/stylesheets/jscrollpane.css
80
+ - app/assets/stylesheets/jquery.jscrollpane.css
67
81
  - lib/jscrollpane-rails.rb
68
82
  - lib/jscrollpane-rails/version.rb
69
83
  homepage: https://github.com/bodrovis/jscrollpane-rails
70
84
  licenses:
71
85
  - MIT
72
86
  metadata: {}
73
- post_install_message:
87
+ post_install_message:
74
88
  rdoc_options: []
75
89
  require_paths:
76
90
  - lib
@@ -85,9 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
85
99
  - !ruby/object:Gem::Version
86
100
  version: '0'
87
101
  requirements: []
88
- rubyforge_project:
89
- rubygems_version: 2.7.4
90
- signing_key:
102
+ rubygems_version: 3.2.33
103
+ signing_key:
91
104
  specification_version: 4
92
105
  summary: Includes javascript and css files for the jScrollPane plugin.
93
106
  test_files: []
@@ -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
- }