jscrollpane-rails 2.0.17.1

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.
@@ -0,0 +1,120 @@
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
+ .jspVerticalBar *,
40
+ .jspHorizontalBar *
41
+ {
42
+ margin: 0;
43
+ padding: 0;
44
+ }
45
+
46
+ .jspCap
47
+ {
48
+ display: none;
49
+ }
50
+
51
+ .jspHorizontalBar .jspCap
52
+ {
53
+ float: left;
54
+ }
55
+
56
+ .jspTrack
57
+ {
58
+ background: #dde;
59
+ position: relative;
60
+ }
61
+
62
+ .jspDrag
63
+ {
64
+ background: #bbd;
65
+ position: relative;
66
+ top: 0;
67
+ left: 0;
68
+ cursor: pointer;
69
+ }
70
+
71
+ .jspHorizontalBar .jspTrack,
72
+ .jspHorizontalBar .jspDrag
73
+ {
74
+ float: left;
75
+ height: 100%;
76
+ }
77
+
78
+ .jspArrow
79
+ {
80
+ background: #50506d;
81
+ text-indent: -20000px;
82
+ display: block;
83
+ cursor: pointer;
84
+ }
85
+
86
+ .jspArrow.jspDisabled
87
+ {
88
+ cursor: default;
89
+ background: #80808d;
90
+ }
91
+
92
+ .jspVerticalBar .jspArrow
93
+ {
94
+ height: 16px;
95
+ }
96
+
97
+ .jspHorizontalBar .jspArrow
98
+ {
99
+ width: 16px;
100
+ float: left;
101
+ height: 100%;
102
+ }
103
+
104
+ .jspVerticalBar .jspArrow:focus
105
+ {
106
+ outline: none;
107
+ }
108
+
109
+ .jspCorner
110
+ {
111
+ background: #eeeef4;
112
+ float: left;
113
+ height: 100%;
114
+ }
115
+
116
+ /* Yuk! CSS Hack for IE6 3 pixel bug :( */
117
+ * html .jspCorner
118
+ {
119
+ margin: 0 -3px 0 0;
120
+ }
metadata ADDED
@@ -0,0 +1,64 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jscrollpane-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.0.17.1
5
+ platform: ruby
6
+ authors:
7
+ - Ilya Bodrov
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-08-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: railties
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '3.1'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '3.1'
27
+ description: ! "A ruby gem that uses the Rails asset pipeline to include the jScrollPane
28
+ plugin by Kelvin Luck\n (www.kelvinluck.com)."
29
+ email:
30
+ - golosizpru@gmail.com
31
+ executables: []
32
+ extensions: []
33
+ extra_rdoc_files: []
34
+ files:
35
+ - lib/jscrollpane-rails/version.rb
36
+ - lib/jscrollpane-rails.rb
37
+ - vendor/assets/javascripts/jscrollpane.js
38
+ - vendor/assets/stylesheets/jscrollpane.css
39
+ - LICENSE
40
+ - README.md
41
+ homepage: https://github.com/bodrovis/jscrollpane-rails
42
+ licenses: []
43
+ metadata: {}
44
+ post_install_message:
45
+ rdoc_options: []
46
+ require_paths:
47
+ - lib
48
+ required_ruby_version: !ruby/object:Gem::Requirement
49
+ requirements:
50
+ - - ! '>='
51
+ - !ruby/object:Gem::Version
52
+ version: '0'
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - ! '>='
56
+ - !ruby/object:Gem::Version
57
+ version: '0'
58
+ requirements: []
59
+ rubyforge_project:
60
+ rubygems_version: 2.0.7
61
+ signing_key:
62
+ specification_version: 4
63
+ summary: Includes javascript and css files for the jScrollPane plugin.
64
+ test_files: []