effective_datatables 2.6.6 → 2.6.7
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 +4 -4
- data/app/assets/javascripts/dataTables/buttons/buttons.bootstrap.js +47 -47
- data/app/assets/javascripts/dataTables/buttons/buttons.colVis.js +182 -181
- data/app/assets/javascripts/dataTables/buttons/buttons.html5.js +1201 -684
- data/app/assets/javascripts/dataTables/buttons/buttons.print.js +144 -127
- data/app/assets/javascripts/dataTables/buttons/dataTables.buttons.js +1463 -1405
- data/app/assets/javascripts/dataTables/colreorder/dataTables.colReorder.js +27 -0
- data/app/assets/javascripts/dataTables/dataTables.bootstrap.js +182 -0
- data/app/assets/javascripts/dataTables/jquery.dataTables.js +15278 -0
- data/app/assets/javascripts/dataTables/jszip/jszip.js +9155 -0
- data/app/assets/javascripts/dataTables/responsive/dataTables.responsive.js +1232 -0
- data/app/assets/javascripts/dataTables/responsive/responsive.bootstrap.js +81 -0
- data/app/assets/javascripts/effective_datatables.js +7 -8
- data/app/assets/stylesheets/dataTables/buttons/{buttons.bootstrap.min.css → buttons.bootstrap.css} +0 -0
- data/app/assets/stylesheets/dataTables/colReorder/colReorder.bootstrap.css +11 -0
- data/app/assets/stylesheets/dataTables/{dataTables.bootstrap.min.css → dataTables.bootstrap.css} +1 -3
- data/app/assets/stylesheets/dataTables/responsive/responsive.bootstrap.css +181 -0
- data/app/assets/stylesheets/effective_datatables.scss +4 -10
- data/app/assets/stylesheets/effective_datatables/_overrides.scss.erb +5 -25
- data/lib/effective_datatables/version.rb +1 -1
- metadata +12 -16
- data/app/assets/javascripts/dataTables/dataTables.colReorder.min.js +0 -26
- data/app/assets/javascripts/dataTables/jquery.dataTables.bootstrap.js +0 -220
- data/app/assets/javascripts/dataTables/jquery.dataTables.min.js +0 -164
- data/app/assets/javascripts/dataTables/responsive/dataTables.responsive.min.js +0 -23
- data/app/assets/javascripts/dataTables/responsive/responsive.bootstrap.min.js +0 -7
- data/app/assets/javascripts/vendor/jszip.min.js +0 -14
- data/app/assets/stylesheets/dataTables/buttons/buttons.dataTables.min.css +0 -298
- data/app/assets/stylesheets/dataTables/colReorder/colReorder.bootstrap.min.css +0 -1
- data/app/assets/stylesheets/dataTables/colReorder/colReorder.dataTables.min.css +0 -1
- data/app/assets/stylesheets/dataTables/jquery.dataTables.min.css +0 -453
- data/app/assets/stylesheets/dataTables/responsive/responsive.bootstrap.min.css +0 -1
- data/app/assets/stylesheets/dataTables/responsive/responsive.dataTables.min.css +0 -1
@@ -0,0 +1,81 @@
|
|
1
|
+
/*! Bootstrap integration for DataTables' Responsive
|
2
|
+
* ©2015-2016 SpryMedia Ltd - datatables.net/license
|
3
|
+
*/
|
4
|
+
|
5
|
+
(function( factory ){
|
6
|
+
if ( typeof define === 'function' && define.amd ) {
|
7
|
+
// AMD
|
8
|
+
define( ['jquery', 'datatables.net-bs', 'datatables.net-responsive'], function ( $ ) {
|
9
|
+
return factory( $, window, document );
|
10
|
+
} );
|
11
|
+
}
|
12
|
+
else if ( typeof exports === 'object' ) {
|
13
|
+
// CommonJS
|
14
|
+
module.exports = function (root, $) {
|
15
|
+
if ( ! root ) {
|
16
|
+
root = window;
|
17
|
+
}
|
18
|
+
|
19
|
+
if ( ! $ || ! $.fn.dataTable ) {
|
20
|
+
$ = require('datatables.net-bs')(root, $).$;
|
21
|
+
}
|
22
|
+
|
23
|
+
if ( ! $.fn.dataTable.Responsive ) {
|
24
|
+
require('datatables.net-responsive')(root, $);
|
25
|
+
}
|
26
|
+
|
27
|
+
return factory( $, root, root.document );
|
28
|
+
};
|
29
|
+
}
|
30
|
+
else {
|
31
|
+
// Browser
|
32
|
+
factory( jQuery, window, document );
|
33
|
+
}
|
34
|
+
}(function( $, window, document, undefined ) {
|
35
|
+
'use strict';
|
36
|
+
var DataTable = $.fn.dataTable;
|
37
|
+
|
38
|
+
|
39
|
+
var _display = DataTable.Responsive.display;
|
40
|
+
var _original = _display.modal;
|
41
|
+
var _modal = $(
|
42
|
+
'<div class="modal fade dtr-bs-modal" role="dialog">'+
|
43
|
+
'<div class="modal-dialog" role="document">'+
|
44
|
+
'<div class="modal-content">'+
|
45
|
+
'<div class="modal-header">'+
|
46
|
+
'<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>'+
|
47
|
+
'</div>'+
|
48
|
+
'<div class="modal-body"/>'+
|
49
|
+
'</div>'+
|
50
|
+
'</div>'+
|
51
|
+
'</div>'
|
52
|
+
);
|
53
|
+
|
54
|
+
_display.modal = function ( options ) {
|
55
|
+
return function ( row, update, render ) {
|
56
|
+
if ( ! $.fn.modal ) {
|
57
|
+
_original( row, update, render );
|
58
|
+
}
|
59
|
+
else {
|
60
|
+
if ( ! update ) {
|
61
|
+
if ( options && options.header ) {
|
62
|
+
_modal.find('div.modal-header')
|
63
|
+
.empty()
|
64
|
+
.append( '<h4 class="modal-title">'+options.header( row )+'</h4>' );
|
65
|
+
}
|
66
|
+
|
67
|
+
_modal.find( 'div.modal-body' )
|
68
|
+
.empty()
|
69
|
+
.append( render() );
|
70
|
+
|
71
|
+
_modal
|
72
|
+
.appendTo( 'body' )
|
73
|
+
.modal();
|
74
|
+
}
|
75
|
+
}
|
76
|
+
};
|
77
|
+
};
|
78
|
+
|
79
|
+
|
80
|
+
return DataTable.Responsive;
|
81
|
+
}));
|
@@ -1,24 +1,23 @@
|
|
1
1
|
//= require vendor/jquery.delayedChange
|
2
|
-
//= require
|
2
|
+
//= require dataTables/jszip/jszip
|
3
3
|
|
4
|
-
//= require dataTables/jquery.dataTables
|
5
|
-
//= require dataTables/
|
4
|
+
//= require dataTables/jquery.dataTables
|
5
|
+
//= require dataTables/dataTables.bootstrap
|
6
6
|
|
7
7
|
//= require dataTables/buttons/dataTables.buttons
|
8
8
|
//= require dataTables/buttons/buttons.bootstrap
|
9
9
|
//= require dataTables/buttons/buttons.colVis
|
10
10
|
//= require dataTables/buttons/buttons.html5
|
11
11
|
//= require dataTables/buttons/buttons.print
|
12
|
-
|
13
|
-
//= require dataTables/dataTables.
|
14
|
-
|
15
|
-
//= require dataTables/responsive/dataTables.responsive.min
|
16
|
-
//= require dataTables/responsive/responsive.bootstrap.min
|
12
|
+
//= require dataTables/colreorder/dataTables.colReorder
|
13
|
+
//= require dataTables/responsive/dataTables.responsive
|
14
|
+
//= require dataTables/responsive/responsive.bootstrap
|
17
15
|
|
18
16
|
//= require effective_datatables/bulk_actions
|
19
17
|
//= require effective_datatables/responsive
|
20
18
|
//= require effective_datatables/scopes
|
21
19
|
//= require effective_datatables/charts
|
20
|
+
|
22
21
|
//= require effective_datatables/initialize
|
23
22
|
|
24
23
|
$.extend( $.fn.dataTable.defaults, {
|
data/app/assets/stylesheets/dataTables/buttons/{buttons.bootstrap.min.css → buttons.bootstrap.css}
RENAMED
File without changes
|
data/app/assets/stylesheets/dataTables/{dataTables.bootstrap.min.css → dataTables.bootstrap.css}
RENAMED
@@ -3,6 +3,7 @@ table.dataTable {
|
|
3
3
|
margin-top: 6px !important;
|
4
4
|
margin-bottom: 6px !important;
|
5
5
|
max-width: none !important;
|
6
|
+
border-collapse: separate !important;
|
6
7
|
}
|
7
8
|
table.dataTable td,
|
8
9
|
table.dataTable th {
|
@@ -155,9 +156,6 @@ table.dataTable.table-condensed .sorting_desc:after {
|
|
155
156
|
right: 6px;
|
156
157
|
}
|
157
158
|
|
158
|
-
table.table-bordered.dataTable {
|
159
|
-
border-collapse: separate !important;
|
160
|
-
}
|
161
159
|
table.table-bordered.dataTable th,
|
162
160
|
table.table-bordered.dataTable td {
|
163
161
|
border-left-width: 0;
|
@@ -0,0 +1,181 @@
|
|
1
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child,
|
2
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child,
|
3
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty {
|
4
|
+
cursor: default !important;
|
5
|
+
}
|
6
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > td.child:before,
|
7
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > th.child:before,
|
8
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > td.dataTables_empty:before {
|
9
|
+
display: none !important;
|
10
|
+
}
|
11
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child,
|
12
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child {
|
13
|
+
position: relative;
|
14
|
+
padding-left: 30px;
|
15
|
+
cursor: pointer;
|
16
|
+
}
|
17
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > td:first-child:before,
|
18
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr > th:first-child:before {
|
19
|
+
top: 9px;
|
20
|
+
left: 4px;
|
21
|
+
height: 14px;
|
22
|
+
width: 14px;
|
23
|
+
display: block;
|
24
|
+
position: absolute;
|
25
|
+
color: white;
|
26
|
+
border: 2px solid white;
|
27
|
+
border-radius: 14px;
|
28
|
+
box-shadow: 0 0 3px #444;
|
29
|
+
box-sizing: content-box;
|
30
|
+
text-align: center;
|
31
|
+
font-family: 'Courier New', Courier, monospace;
|
32
|
+
line-height: 14px;
|
33
|
+
content: '+';
|
34
|
+
background-color: #337ab7;
|
35
|
+
}
|
36
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before,
|
37
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th:first-child:before {
|
38
|
+
content: '-';
|
39
|
+
background-color: #d33333;
|
40
|
+
}
|
41
|
+
table.dataTable.dtr-inline.collapsed > tbody > tr.child td:before {
|
42
|
+
display: none;
|
43
|
+
}
|
44
|
+
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child,
|
45
|
+
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child {
|
46
|
+
padding-left: 27px;
|
47
|
+
}
|
48
|
+
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > td:first-child:before,
|
49
|
+
table.dataTable.dtr-inline.collapsed.compact > tbody > tr > th:first-child:before {
|
50
|
+
top: 5px;
|
51
|
+
left: 4px;
|
52
|
+
height: 14px;
|
53
|
+
width: 14px;
|
54
|
+
border-radius: 14px;
|
55
|
+
line-height: 14px;
|
56
|
+
text-indent: 3px;
|
57
|
+
}
|
58
|
+
table.dataTable.dtr-column > tbody > tr > td.control,
|
59
|
+
table.dataTable.dtr-column > tbody > tr > th.control {
|
60
|
+
position: relative;
|
61
|
+
cursor: pointer;
|
62
|
+
}
|
63
|
+
table.dataTable.dtr-column > tbody > tr > td.control:before,
|
64
|
+
table.dataTable.dtr-column > tbody > tr > th.control:before {
|
65
|
+
top: 50%;
|
66
|
+
left: 50%;
|
67
|
+
height: 16px;
|
68
|
+
width: 16px;
|
69
|
+
margin-top: -10px;
|
70
|
+
margin-left: -10px;
|
71
|
+
display: block;
|
72
|
+
position: absolute;
|
73
|
+
color: white;
|
74
|
+
border: 2px solid white;
|
75
|
+
border-radius: 14px;
|
76
|
+
box-shadow: 0 0 3px #444;
|
77
|
+
box-sizing: content-box;
|
78
|
+
text-align: center;
|
79
|
+
font-family: 'Courier New', Courier, monospace;
|
80
|
+
line-height: 14px;
|
81
|
+
content: '+';
|
82
|
+
background-color: #337ab7;
|
83
|
+
}
|
84
|
+
table.dataTable.dtr-column > tbody > tr.parent td.control:before,
|
85
|
+
table.dataTable.dtr-column > tbody > tr.parent th.control:before {
|
86
|
+
content: '-';
|
87
|
+
background-color: #d33333;
|
88
|
+
}
|
89
|
+
table.dataTable > tbody > tr.child {
|
90
|
+
padding: 0.5em 1em;
|
91
|
+
}
|
92
|
+
table.dataTable > tbody > tr.child:hover {
|
93
|
+
background: transparent !important;
|
94
|
+
}
|
95
|
+
table.dataTable > tbody > tr.child ul {
|
96
|
+
display: inline-block;
|
97
|
+
list-style-type: none;
|
98
|
+
margin: 0;
|
99
|
+
padding: 0;
|
100
|
+
}
|
101
|
+
table.dataTable > tbody > tr.child ul li {
|
102
|
+
border-bottom: 1px solid #efefef;
|
103
|
+
padding: 0.5em 0;
|
104
|
+
}
|
105
|
+
table.dataTable > tbody > tr.child ul li:first-child {
|
106
|
+
padding-top: 0;
|
107
|
+
}
|
108
|
+
table.dataTable > tbody > tr.child ul li:last-child {
|
109
|
+
border-bottom: none;
|
110
|
+
}
|
111
|
+
table.dataTable > tbody > tr.child span.dtr-title {
|
112
|
+
display: inline-block;
|
113
|
+
min-width: 75px;
|
114
|
+
font-weight: bold;
|
115
|
+
}
|
116
|
+
|
117
|
+
div.dtr-modal {
|
118
|
+
position: fixed;
|
119
|
+
box-sizing: border-box;
|
120
|
+
top: 0;
|
121
|
+
left: 0;
|
122
|
+
height: 100%;
|
123
|
+
width: 100%;
|
124
|
+
z-index: 100;
|
125
|
+
padding: 10em 1em;
|
126
|
+
}
|
127
|
+
div.dtr-modal div.dtr-modal-display {
|
128
|
+
position: absolute;
|
129
|
+
top: 0;
|
130
|
+
left: 0;
|
131
|
+
bottom: 0;
|
132
|
+
right: 0;
|
133
|
+
width: 50%;
|
134
|
+
height: 50%;
|
135
|
+
overflow: auto;
|
136
|
+
margin: auto;
|
137
|
+
z-index: 102;
|
138
|
+
overflow: auto;
|
139
|
+
background-color: #f5f5f7;
|
140
|
+
border: 1px solid black;
|
141
|
+
border-radius: 0.5em;
|
142
|
+
box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
|
143
|
+
}
|
144
|
+
div.dtr-modal div.dtr-modal-content {
|
145
|
+
position: relative;
|
146
|
+
padding: 1em;
|
147
|
+
}
|
148
|
+
div.dtr-modal div.dtr-modal-close {
|
149
|
+
position: absolute;
|
150
|
+
top: 6px;
|
151
|
+
right: 6px;
|
152
|
+
width: 22px;
|
153
|
+
height: 22px;
|
154
|
+
border: 1px solid #eaeaea;
|
155
|
+
background-color: #f9f9f9;
|
156
|
+
text-align: center;
|
157
|
+
border-radius: 3px;
|
158
|
+
cursor: pointer;
|
159
|
+
z-index: 12;
|
160
|
+
}
|
161
|
+
div.dtr-modal div.dtr-modal-close:hover {
|
162
|
+
background-color: #eaeaea;
|
163
|
+
}
|
164
|
+
div.dtr-modal div.dtr-modal-background {
|
165
|
+
position: fixed;
|
166
|
+
top: 0;
|
167
|
+
left: 0;
|
168
|
+
right: 0;
|
169
|
+
bottom: 0;
|
170
|
+
z-index: 101;
|
171
|
+
background: rgba(0, 0, 0, 0.6);
|
172
|
+
}
|
173
|
+
|
174
|
+
@media screen and (max-width: 767px) {
|
175
|
+
div.dtr-modal div.dtr-modal-display {
|
176
|
+
width: 95%;
|
177
|
+
}
|
178
|
+
}
|
179
|
+
div.dtr-bs-modal table.table tr:first-child td {
|
180
|
+
border-top: none;
|
181
|
+
}
|
@@ -1,13 +1,7 @@
|
|
1
|
-
@import 'dataTables/
|
2
|
-
@import 'dataTables/dataTables.bootstrap.min';
|
1
|
+
@import 'dataTables/dataTables.bootstrap';
|
3
2
|
|
4
|
-
@import 'dataTables/buttons/buttons.
|
5
|
-
@import 'dataTables/
|
6
|
-
|
7
|
-
@import 'dataTables/colReorder/colReorder.dataTables.min';
|
8
|
-
@import 'dataTables/colReorder/colReorder.bootstrap.min';
|
9
|
-
|
10
|
-
@import 'dataTables/responsive/responsive.dataTables.min';
|
11
|
-
@import 'dataTables/responsive/responsive.bootstrap.min';
|
3
|
+
@import 'dataTables/buttons/buttons.bootstrap';
|
4
|
+
@import 'dataTables/colReorder/colReorder.bootstrap';
|
5
|
+
@import 'dataTables/responsive/responsive.bootstrap';
|
12
6
|
|
13
7
|
@import 'effective_datatables/overrides';
|
@@ -23,6 +23,7 @@ table.dataTable thead .sorting_desc:after { content: ''; }
|
|
23
23
|
table.dataTable thead > tr > th.sorting_asc,
|
24
24
|
table.dataTable thead > tr > th.sorting_desc,
|
25
25
|
table.dataTable thead > tr > th.sorting {
|
26
|
+
background-repeat: no-repeat;
|
26
27
|
padding-right: 18px;
|
27
28
|
}
|
28
29
|
|
@@ -34,7 +35,6 @@ table.dataTable thead tr th {
|
|
34
35
|
padding: 6px;
|
35
36
|
|
36
37
|
.form-group { margin-bottom: 0px; font-weight: normal; }
|
37
|
-
|
38
38
|
}
|
39
39
|
|
40
40
|
table.dataTable td ul {
|
@@ -143,30 +143,6 @@ div.dataTables_wrapper div.dataTables_info {
|
|
143
143
|
padding: 10px 0px 0px 6px;
|
144
144
|
}
|
145
145
|
|
146
|
-
// Pagination
|
147
|
-
.dataTables_paginate {
|
148
|
-
overflow: hidden;
|
149
|
-
|
150
|
-
.pagination {
|
151
|
-
padding: 0px;
|
152
|
-
|
153
|
-
.paginate_button {
|
154
|
-
padding: 0px;
|
155
|
-
|
156
|
-
&:hover {
|
157
|
-
background: none;
|
158
|
-
border: 1px solid transparent;
|
159
|
-
}
|
160
|
-
|
161
|
-
&:active {
|
162
|
-
background: none;
|
163
|
-
box-shadow: none;
|
164
|
-
outline: none;
|
165
|
-
}
|
166
|
-
}
|
167
|
-
}
|
168
|
-
}
|
169
|
-
|
170
146
|
// Collapsed responsive view
|
171
147
|
table.dataTable > tbody > tr.child span.dtr-title { min-width: 175px; }
|
172
148
|
table.dataTable > tbody > tr.child span.dtr-data { white-space: nowrap; }
|
@@ -179,4 +155,8 @@ table.dataTable.dtr-inline.collapsed > tbody > tr:not(.child) > th:first-child {
|
|
179
155
|
// Column specific adjustments
|
180
156
|
table.dataTable tbody {
|
181
157
|
td.col-price { text-align: right; }
|
158
|
+
|
159
|
+
td.col-bulk_actions {
|
160
|
+
input[type='checkbox'] { margin-left: 3px; }
|
161
|
+
}
|
182
162
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: effective_datatables
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.6.
|
4
|
+
version: 2.6.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Code and Effect
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -114,11 +114,12 @@ files:
|
|
114
114
|
- app/assets/javascripts/dataTables/buttons/buttons.html5.js
|
115
115
|
- app/assets/javascripts/dataTables/buttons/buttons.print.js
|
116
116
|
- app/assets/javascripts/dataTables/buttons/dataTables.buttons.js
|
117
|
-
- app/assets/javascripts/dataTables/dataTables.colReorder.
|
118
|
-
- app/assets/javascripts/dataTables/
|
119
|
-
- app/assets/javascripts/dataTables/jquery.dataTables.
|
120
|
-
- app/assets/javascripts/dataTables/
|
121
|
-
- app/assets/javascripts/dataTables/responsive/responsive.
|
117
|
+
- app/assets/javascripts/dataTables/colreorder/dataTables.colReorder.js
|
118
|
+
- app/assets/javascripts/dataTables/dataTables.bootstrap.js
|
119
|
+
- app/assets/javascripts/dataTables/jquery.dataTables.js
|
120
|
+
- app/assets/javascripts/dataTables/jszip/jszip.js
|
121
|
+
- app/assets/javascripts/dataTables/responsive/dataTables.responsive.js
|
122
|
+
- app/assets/javascripts/dataTables/responsive/responsive.bootstrap.js
|
122
123
|
- app/assets/javascripts/effective_datatables.js
|
123
124
|
- app/assets/javascripts/effective_datatables/bulk_actions.js.coffee
|
124
125
|
- app/assets/javascripts/effective_datatables/charts.js.coffee
|
@@ -126,15 +127,10 @@ files:
|
|
126
127
|
- app/assets/javascripts/effective_datatables/responsive.js.coffee
|
127
128
|
- app/assets/javascripts/effective_datatables/scopes.js.coffee
|
128
129
|
- app/assets/javascripts/vendor/jquery.delayedChange.js
|
129
|
-
- app/assets/
|
130
|
-
- app/assets/stylesheets/dataTables/
|
131
|
-
- app/assets/stylesheets/dataTables/
|
132
|
-
- app/assets/stylesheets/dataTables/
|
133
|
-
- app/assets/stylesheets/dataTables/colReorder/colReorder.dataTables.min.css
|
134
|
-
- app/assets/stylesheets/dataTables/dataTables.bootstrap.min.css
|
135
|
-
- app/assets/stylesheets/dataTables/jquery.dataTables.min.css
|
136
|
-
- app/assets/stylesheets/dataTables/responsive/responsive.bootstrap.min.css
|
137
|
-
- app/assets/stylesheets/dataTables/responsive/responsive.dataTables.min.css
|
130
|
+
- app/assets/stylesheets/dataTables/buttons/buttons.bootstrap.css
|
131
|
+
- app/assets/stylesheets/dataTables/colReorder/colReorder.bootstrap.css
|
132
|
+
- app/assets/stylesheets/dataTables/dataTables.bootstrap.css
|
133
|
+
- app/assets/stylesheets/dataTables/responsive/responsive.bootstrap.css
|
138
134
|
- app/assets/stylesheets/effective_datatables.scss
|
139
135
|
- app/assets/stylesheets/effective_datatables/_overrides.scss.erb
|
140
136
|
- app/controllers/effective/datatables_controller.rb
|