jquery-datatables-rails 1.9.1.2 → 1.9.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Readme.md +32 -4
- data/lib/jquery/datatables/rails/version.rb +1 -1
- data/vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap.js +95 -0
- data/vendor/assets/javascripts/dataTables/jquery.dataTables.js +2015 -1789
- data/vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss +46 -0
- metadata +6 -4
@@ -0,0 +1,46 @@
|
|
1
|
+
div.dataTables_length label {
|
2
|
+
float: left;
|
3
|
+
text-align: left;
|
4
|
+
}
|
5
|
+
|
6
|
+
div.dataTables_length select {
|
7
|
+
width: 75px;
|
8
|
+
}
|
9
|
+
|
10
|
+
div.dataTables_filter label {
|
11
|
+
float: right;
|
12
|
+
}
|
13
|
+
|
14
|
+
div.dataTables_info {
|
15
|
+
padding-top: 8px;
|
16
|
+
}
|
17
|
+
|
18
|
+
div.dataTables_paginate {
|
19
|
+
float: right;
|
20
|
+
margin: 0;
|
21
|
+
}
|
22
|
+
|
23
|
+
table.dataTable {
|
24
|
+
clear: both;
|
25
|
+
margin-bottom: 6px !important;
|
26
|
+
}
|
27
|
+
|
28
|
+
table.dataTable thead .sorting,
|
29
|
+
table.dataTable thead .sorting_asc,
|
30
|
+
table.dataTable thead .sorting_desc,
|
31
|
+
table.dataTable thead .sorting_asc_disabled,
|
32
|
+
table.dataTable thead .sorting_desc_disabled {
|
33
|
+
cursor: pointer;
|
34
|
+
*cursor: hand;
|
35
|
+
}
|
36
|
+
|
37
|
+
table.dataTable thead .sorting { background: image-url('dataTables/sort_both.png') no-repeat center right; }
|
38
|
+
table.dataTable thead .sorting_asc { background: image-url('dataTables/sort_asc.png') no-repeat center right; }
|
39
|
+
table.dataTable thead .sorting_desc { background: image-url('dataTables/sort_desc.png') no-repeat center right; }
|
40
|
+
|
41
|
+
table.dataTable thead .sorting_asc_disabled { background: image-url('dataTables/sort_asc_disabled.png') no-repeat center right; }
|
42
|
+
table.dataTable thead .sorting_desc_disabled { background: image-url('dataTables/sort_desc_disabled.png') no-repeat center right; }
|
43
|
+
|
44
|
+
table.dataTable th:active {
|
45
|
+
outline: none;
|
46
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jquery-datatables-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.9.1.
|
4
|
+
version: 1.9.1.3
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-04-
|
12
|
+
date: 2012-04-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jquery-rails
|
16
|
-
requirement: &
|
16
|
+
requirement: &70118298366500 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ! '>='
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
version: '0'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *70118298366500
|
25
25
|
description: ''
|
26
26
|
email:
|
27
27
|
- robin@wenglewski.de
|
@@ -49,7 +49,9 @@ files:
|
|
49
49
|
- vendor/assets/images/dataTables/sort_both.png
|
50
50
|
- vendor/assets/images/dataTables/sort_desc.png
|
51
51
|
- vendor/assets/images/dataTables/sort_desc_disabled.png
|
52
|
+
- vendor/assets/javascripts/dataTables/jquery.dataTables.bootstrap.js
|
52
53
|
- vendor/assets/javascripts/dataTables/jquery.dataTables.js
|
54
|
+
- vendor/assets/stylesheets/dataTables/jquery.dataTables.bootstrap.css.scss
|
53
55
|
- vendor/assets/stylesheets/dataTables/jquery.dataTables.css.scss
|
54
56
|
- vendor/assets/stylesheets/dataTables/src/demo_page.css
|
55
57
|
- vendor/assets/stylesheets/dataTables/src/demo_table.css
|