jquery-datatables-rails 1.11.2 → 1.11.3
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 +7 -0
- data/lib/jquery/datatables/rails/engine.rb +1 -1
- data/lib/jquery/datatables/rails/version.rb +1 -1
- data/vendor/assets/images/dataTables/extras/button.png +0 -0
- data/vendor/assets/images/dataTables/extras/insert.png +0 -0
- data/vendor/assets/images/dataTables/foundation/sort_asc.png +0 -0
- data/vendor/assets/images/dataTables/foundation/sort_asc_disabled.png +0 -0
- data/vendor/assets/images/dataTables/foundation/sort_both.png +0 -0
- data/vendor/assets/images/dataTables/foundation/sort_desc.png +0 -0
- data/vendor/assets/images/dataTables/foundation/sort_desc_disabled.png +0 -0
- data/vendor/assets/images/dataTables/minus.png +0 -0
- data/vendor/assets/images/dataTables/plus.png +0 -0
- data/vendor/assets/javascripts/dataTables/extras/ColReorder.js +41 -15
- data/vendor/assets/javascripts/dataTables/extras/ColVis.js +1 -9
- data/vendor/assets/javascripts/dataTables/extras/TableTools.js +121 -69
- data/vendor/assets/javascripts/dataTables/extras/TableTools.min.js +50 -49
- data/vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap.js +2 -2
- data/vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap3.js +152 -0
- data/vendor/assets/javascripts/dataTables/jquery.dataTables.foundation.js +186 -0
- data/vendor/assets/javascripts/dataTables/jquery.dataTables.responsive.js +435 -0
- data/vendor/assets/media/dataTables/extras/as3/ZeroClipboard.as +1 -1
- data/vendor/assets/media/dataTables/extras/as3/ZeroClipboardPdf.as +1 -1
- data/vendor/assets/media/dataTables/extras/swf/copy_csv_xls.swf +0 -0
- data/vendor/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf +0 -0
- data/vendor/assets/stylesheets/dataTables/extras/ColReorder.css.erb +21 -0
- data/vendor/assets/stylesheets/dataTables/extras/ColVis.css +76 -0
- data/vendor/assets/stylesheets/dataTables/extras/ColVisAlt.css.erb +104 -0
- data/vendor/assets/stylesheets/dataTables/extras/{TableTools.css → TableTools.css.erb} +39 -31
- data/vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss +5 -0
- data/vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap3.css.scss +216 -0
- data/vendor/assets/stylesheets/dataTables/jquery.dataTables.foundation.css.scss +211 -0
- data/vendor/assets/stylesheets/dataTables/jquery.dataTables.responsive.css.scss +22 -0
- metadata +28 -15
@@ -0,0 +1,211 @@
|
|
1
|
+
div.dataTables_wrapper {
|
2
|
+
margin-bottom: 1.25em;
|
3
|
+
}
|
4
|
+
|
5
|
+
div.dataTables_length label,
|
6
|
+
div.dataTables_filter label,
|
7
|
+
div.dataTables_info {
|
8
|
+
color: #999;
|
9
|
+
font-weight: normal;
|
10
|
+
}
|
11
|
+
|
12
|
+
div.dataTables_length {
|
13
|
+
padding-top: 6px;
|
14
|
+
}
|
15
|
+
div.dataTables_length label {
|
16
|
+
float: left;
|
17
|
+
text-align: left;
|
18
|
+
}
|
19
|
+
|
20
|
+
div.dataTables_length select {
|
21
|
+
width: 75px;
|
22
|
+
}
|
23
|
+
|
24
|
+
div.dataTables_filter label {
|
25
|
+
float: right;
|
26
|
+
}
|
27
|
+
div.dataTables_filter input {
|
28
|
+
display: inline-block !important;
|
29
|
+
width: auto !important;
|
30
|
+
}
|
31
|
+
|
32
|
+
div.dataTables_info {
|
33
|
+
padding-top: 2px;
|
34
|
+
font-size: 0.875em;
|
35
|
+
}
|
36
|
+
|
37
|
+
div.dataTables_paginate {
|
38
|
+
float: right;
|
39
|
+
margin: 0;
|
40
|
+
}
|
41
|
+
|
42
|
+
table.dataTable {
|
43
|
+
clear: both;
|
44
|
+
margin-bottom: 0.5em !important;
|
45
|
+
max-width: none !important;
|
46
|
+
width: 100%;
|
47
|
+
}
|
48
|
+
|
49
|
+
table.dataTable thead .sorting,
|
50
|
+
table.dataTable thead .sorting_asc,
|
51
|
+
table.dataTable thead .sorting_desc,
|
52
|
+
table.dataTable thead .sorting_asc_disabled,
|
53
|
+
table.dataTable thead .sorting_desc_disabled {
|
54
|
+
cursor: pointer;
|
55
|
+
*cursor: hand;
|
56
|
+
}
|
57
|
+
|
58
|
+
table.dataTable thead .sorting { background: image-url('dataTables/foundation/sort_both.png') no-repeat center right; }
|
59
|
+
table.dataTable thead .sorting_asc { background: image-url('dataTables/foundation/sort_asc.png') no-repeat center right; }
|
60
|
+
table.dataTable thead .sorting_desc { background: image-url('dataTables/foundation/sort_desc.png') no-repeat center right; }
|
61
|
+
|
62
|
+
table.dataTable thead .sorting_asc_disabled { background: image-url('dataTables/foundation/sort_asc_disabled.png') no-repeat center right; }
|
63
|
+
table.dataTable thead .sorting_desc_disabled { background: image-url('dataTables/foundation/sort_desc_disabled.png') no-repeat center right; }
|
64
|
+
|
65
|
+
table.dataTable th:active {
|
66
|
+
outline: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* Scrolling */
|
70
|
+
div.dataTables_scrollHead table {
|
71
|
+
margin-bottom: 0 !important;
|
72
|
+
}
|
73
|
+
|
74
|
+
div.dataTables_scrollBody table {
|
75
|
+
border-top: none;
|
76
|
+
margin-bottom: 0 !important;
|
77
|
+
}
|
78
|
+
|
79
|
+
div.dataTables_scrollBody tbody tr:first-child th,
|
80
|
+
div.dataTables_scrollBody tbody tr:first-child td {
|
81
|
+
border-top: none;
|
82
|
+
}
|
83
|
+
|
84
|
+
div.dataTables_scrollFoot table {
|
85
|
+
border-top: none;
|
86
|
+
}
|
87
|
+
|
88
|
+
|
89
|
+
|
90
|
+
|
91
|
+
/*
|
92
|
+
* TableTools styles
|
93
|
+
*/
|
94
|
+
.table tbody tr.active td,
|
95
|
+
.table tbody tr.active th {
|
96
|
+
background-color: #08C;
|
97
|
+
color: white;
|
98
|
+
}
|
99
|
+
|
100
|
+
.table tbody tr.active:hover td,
|
101
|
+
.table tbody tr.active:hover th {
|
102
|
+
background-color: #0075b0 !important;
|
103
|
+
}
|
104
|
+
|
105
|
+
.table-striped tbody tr.active:nth-child(odd) td,
|
106
|
+
.table-striped tbody tr.active:nth-child(odd) th {
|
107
|
+
background-color: #017ebc;
|
108
|
+
}
|
109
|
+
|
110
|
+
table.DTTT_selectable tbody tr {
|
111
|
+
cursor: pointer;
|
112
|
+
*cursor: hand;
|
113
|
+
}
|
114
|
+
|
115
|
+
div.DTTT {
|
116
|
+
float: left;
|
117
|
+
margin-bottom: 0;
|
118
|
+
}
|
119
|
+
|
120
|
+
div.DTTT .button:hover {
|
121
|
+
text-decoration: none !important;
|
122
|
+
}
|
123
|
+
|
124
|
+
ul.DTTT_dropdown.dropdown-menu li {
|
125
|
+
position: relative;
|
126
|
+
}
|
127
|
+
|
128
|
+
ul.DTTT_dropdown.dropdown-menu li:hover a {
|
129
|
+
background-color: #0088cc;
|
130
|
+
color: white !important;
|
131
|
+
}
|
132
|
+
|
133
|
+
/* TableTools information display */
|
134
|
+
.DTTT_print_info {
|
135
|
+
position: fixed;
|
136
|
+
top: 50%;
|
137
|
+
left: 50%;
|
138
|
+
width: 400px;
|
139
|
+
height: 150px;
|
140
|
+
margin-left: -200px;
|
141
|
+
margin-top: -75px;
|
142
|
+
text-align: center;
|
143
|
+
color: #333;
|
144
|
+
padding: 10px 30px;
|
145
|
+
|
146
|
+
background: #ffffff; /* Old browsers */
|
147
|
+
background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
|
148
|
+
background: -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
|
149
|
+
background: -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
|
150
|
+
background: -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
|
151
|
+
background: linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
|
152
|
+
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
|
153
|
+
|
154
|
+
opacity: 0.95;
|
155
|
+
|
156
|
+
border: 1px solid black;
|
157
|
+
border: 1px solid rgba(0, 0, 0, 0.5);
|
158
|
+
|
159
|
+
-webkit-border-radius: 6px;
|
160
|
+
-moz-border-radius: 6px;
|
161
|
+
-ms-border-radius: 6px;
|
162
|
+
-o-border-radius: 6px;
|
163
|
+
border-radius: 6px;
|
164
|
+
|
165
|
+
-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
166
|
+
-moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
167
|
+
-ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
168
|
+
-o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
169
|
+
box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
|
170
|
+
}
|
171
|
+
|
172
|
+
div.DTTT_print_info h6 {
|
173
|
+
font-weight: normal;
|
174
|
+
font-size: 28px;
|
175
|
+
line-height: 28px;
|
176
|
+
margin: 1em;
|
177
|
+
}
|
178
|
+
|
179
|
+
div.DTTT_print_info p {
|
180
|
+
font-size: 14px;
|
181
|
+
line-height: 20px;
|
182
|
+
}
|
183
|
+
|
184
|
+
|
185
|
+
|
186
|
+
/*
|
187
|
+
* FixedColumns styles
|
188
|
+
*/
|
189
|
+
div.DTFC_LeftHeadWrapper table,
|
190
|
+
div.DTFC_LeftFootWrapper table,
|
191
|
+
table.DTFC_Cloned tr.even {
|
192
|
+
background-color: white;
|
193
|
+
}
|
194
|
+
|
195
|
+
div.DTFC_LeftHeadWrapper table {
|
196
|
+
margin-bottom: 0 !important;
|
197
|
+
}
|
198
|
+
|
199
|
+
div.DTFC_LeftBodyWrapper table {
|
200
|
+
border-top: none;
|
201
|
+
margin-bottom: 0 !important;
|
202
|
+
}
|
203
|
+
|
204
|
+
div.DTFC_LeftBodyWrapper tbody tr:first-child th,
|
205
|
+
div.DTFC_LeftBodyWrapper tbody tr:first-child td {
|
206
|
+
border-top: none;
|
207
|
+
}
|
208
|
+
|
209
|
+
div.DTFC_LeftFootWrapper table {
|
210
|
+
border-top: none;
|
211
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
table.has-columns-hidden > tbody > tr > td > span.responsiveExpander {
|
2
|
+
background: image-url('dataTables/plus.png') no-repeat 5px center;
|
3
|
+
padding-left: 32px;
|
4
|
+
cursor: pointer;
|
5
|
+
}
|
6
|
+
|
7
|
+
table.has-columns-hidden > tbody > tr.detail-show > td span.responsiveExpander {
|
8
|
+
background: image-url('dataTables/minus.png') no-repeat 5px center;
|
9
|
+
}
|
10
|
+
|
11
|
+
table.has-columns-hidden > tbody > tr.row-detail > td {
|
12
|
+
background: #eee;
|
13
|
+
}
|
14
|
+
|
15
|
+
table.has-columns-hidden > tbody > tr.row-detail > td > ul {
|
16
|
+
list-style: none;
|
17
|
+
margin: 0;
|
18
|
+
}
|
19
|
+
|
20
|
+
table.has-columns-hidden > tbody > tr.row-detail > td > ul > li > span.columnTitle {
|
21
|
+
font-weight: bold;
|
22
|
+
}
|
metadata
CHANGED
@@ -1,30 +1,27 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-datatables-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.11.
|
5
|
-
prerelease:
|
4
|
+
version: 1.11.3
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Robin Wenglewski
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 2013-11-24 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: jquery-rails
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
19
|
version: '0'
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - '>='
|
28
25
|
- !ruby/object:Gem::Version
|
29
26
|
version: '0'
|
30
27
|
description: ''
|
@@ -41,12 +38,14 @@ files:
|
|
41
38
|
- vendor/assets/images/dataTables/back_enabled.png
|
42
39
|
- vendor/assets/images/dataTables/back_enabled_hover.png
|
43
40
|
- vendor/assets/images/dataTables/extras/background.png
|
41
|
+
- vendor/assets/images/dataTables/extras/button.png
|
44
42
|
- vendor/assets/images/dataTables/extras/collection.png
|
45
43
|
- vendor/assets/images/dataTables/extras/collection_hover.png
|
46
44
|
- vendor/assets/images/dataTables/extras/copy.png
|
47
45
|
- vendor/assets/images/dataTables/extras/copy_hover.png
|
48
46
|
- vendor/assets/images/dataTables/extras/csv.png
|
49
47
|
- vendor/assets/images/dataTables/extras/csv_hover.png
|
48
|
+
- vendor/assets/images/dataTables/extras/insert.png
|
50
49
|
- vendor/assets/images/dataTables/extras/pdf.png
|
51
50
|
- vendor/assets/images/dataTables/extras/pdf_hover.png
|
52
51
|
- vendor/assets/images/dataTables/extras/print.png
|
@@ -57,6 +56,13 @@ files:
|
|
57
56
|
- vendor/assets/images/dataTables/forward_disabled.png
|
58
57
|
- vendor/assets/images/dataTables/forward_enabled.png
|
59
58
|
- vendor/assets/images/dataTables/forward_enabled_hover.png
|
59
|
+
- vendor/assets/images/dataTables/foundation/sort_asc.png
|
60
|
+
- vendor/assets/images/dataTables/foundation/sort_asc_disabled.png
|
61
|
+
- vendor/assets/images/dataTables/foundation/sort_both.png
|
62
|
+
- vendor/assets/images/dataTables/foundation/sort_desc.png
|
63
|
+
- vendor/assets/images/dataTables/foundation/sort_desc_disabled.png
|
64
|
+
- vendor/assets/images/dataTables/minus.png
|
65
|
+
- vendor/assets/images/dataTables/plus.png
|
60
66
|
- vendor/assets/images/dataTables/sort_asc.png
|
61
67
|
- vendor/assets/images/dataTables/sort_asc_disabled.png
|
62
68
|
- vendor/assets/images/dataTables/sort_both.png
|
@@ -77,7 +83,10 @@ files:
|
|
77
83
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.api.fnReloadAjax.js
|
78
84
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.api.fnSetFilteringDelay.js
|
79
85
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap.js
|
86
|
+
- vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap3.js
|
87
|
+
- vendor/assets/javascripts/dataTables/jquery.dataTables.foundation.js
|
80
88
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.js
|
89
|
+
- vendor/assets/javascripts/dataTables/jquery.dataTables.responsive.js
|
81
90
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.sorting.numbersHtml.js
|
82
91
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.typeDetection.numbersHtml.js
|
83
92
|
- vendor/assets/media/dataTables/extras/as3/lib/AlivePDF.swc
|
@@ -85,37 +94,41 @@ files:
|
|
85
94
|
- vendor/assets/media/dataTables/extras/as3/ZeroClipboardPdf.as
|
86
95
|
- vendor/assets/media/dataTables/extras/swf/copy_csv_xls.swf
|
87
96
|
- vendor/assets/media/dataTables/extras/swf/copy_csv_xls_pdf.swf
|
88
|
-
- vendor/assets/stylesheets/dataTables/extras/
|
97
|
+
- vendor/assets/stylesheets/dataTables/extras/ColReorder.css.erb
|
98
|
+
- vendor/assets/stylesheets/dataTables/extras/ColVis.css
|
99
|
+
- vendor/assets/stylesheets/dataTables/extras/ColVisAlt.css.erb
|
100
|
+
- vendor/assets/stylesheets/dataTables/extras/TableTools.css.erb
|
89
101
|
- vendor/assets/stylesheets/dataTables/extras/TableTools_JUI.css
|
90
102
|
- vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss
|
103
|
+
- vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap3.css.scss
|
91
104
|
- vendor/assets/stylesheets/dataTables/jquery.dataTables.css.scss
|
105
|
+
- vendor/assets/stylesheets/dataTables/jquery.dataTables.foundation.css.scss
|
106
|
+
- vendor/assets/stylesheets/dataTables/jquery.dataTables.responsive.css.scss
|
92
107
|
- vendor/assets/stylesheets/dataTables/src/demo_page.css
|
93
108
|
- vendor/assets/stylesheets/dataTables/src/demo_table.css
|
94
109
|
- vendor/assets/stylesheets/dataTables/src/demo_table_jui.css
|
95
110
|
- vendor/assets/stylesheets/dataTables/src/jquery.dataTables_themeroller.css
|
96
111
|
homepage: https://github.com/rweng/jquery-datatables-rails
|
97
112
|
licenses: []
|
113
|
+
metadata: {}
|
98
114
|
post_install_message:
|
99
115
|
rdoc_options: []
|
100
116
|
require_paths:
|
101
117
|
- lib
|
102
118
|
required_ruby_version: !ruby/object:Gem::Requirement
|
103
|
-
none: false
|
104
119
|
requirements:
|
105
|
-
- -
|
120
|
+
- - '>='
|
106
121
|
- !ruby/object:Gem::Version
|
107
122
|
version: '0'
|
108
123
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
|
-
none: false
|
110
124
|
requirements:
|
111
|
-
- -
|
125
|
+
- - '>='
|
112
126
|
- !ruby/object:Gem::Version
|
113
127
|
version: '0'
|
114
128
|
requirements: []
|
115
129
|
rubyforge_project:
|
116
|
-
rubygems_version:
|
130
|
+
rubygems_version: 2.0.3
|
117
131
|
signing_key:
|
118
|
-
specification_version:
|
132
|
+
specification_version: 4
|
119
133
|
summary: jquery datatables for rails
|
120
134
|
test_files: []
|
121
|
-
has_rdoc:
|