jquery-datatables 1.10.15 → 1.10.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +23 -16
- data/Rakefile +46 -27
- data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +3 -3
- data/app/assets/javascripts/datatables/dataTables.jqueryui.js +6 -6
- data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +5 -5
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +2 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +74 -69
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +86 -63
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +16 -22
- data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +131 -3
- data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +12 -6
- data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +8 -5
- data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +14 -9
- data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +103 -8
- data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +106 -6
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +1 -1
- data/app/assets/javascripts/datatables/extensions/RowGroup/dataTables.rowGroup.js +8 -6
- data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +68 -35
- data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +71 -10
- data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +11 -7
- data/app/assets/javascripts/datatables/jquery.dataTables.js +19 -121
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.scss +252 -0
- data/app/assets/stylesheets/datatables/{dataTables.bootstrap2.css → dataTables.bootstrap2.scss} +6 -6
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss +262 -0
- data/app/assets/stylesheets/datatables/dataTables.foundation.scss +154 -0
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.scss +93 -0
- data/app/assets/stylesheets/datatables/dataTables.material.scss +101 -0
- data/app/assets/stylesheets/datatables/dataTables.semanticui.scss +138 -0
- data/app/assets/stylesheets/datatables/dataTables.uikit.scss +195 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.scss +125 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.scss +13 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.scss +40 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.scss +53 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.scss +141 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.scss +82 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.scss +98 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.scss +53 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.scss +50 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.scss +11 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.scss +22 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/{fixedColumns.foundation.css → fixedColumns.foundation.scss} +15 -6
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.scss +16 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.scss +41 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap4.css → fixedHeader.bootstrap.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.foundation.css → fixedHeader.bootstrap4.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.scss +21 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap.css → fixedHeader.foundation.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.semanticui.css → fixedHeader.jqueryui.scss} +7 -3
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.scss +16 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.scss +240 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/{semanticui.scss → rowReorder.bootstrap4.scss} +0 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.scss +26 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.scss +36 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.scss +31 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.scss +143 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.scss +18 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.scss +14 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables.scss +599 -0
- data/lib/generators/jquery/datatables/install_generator.rb +1 -1
- data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/bootstrap.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/bootstrap4.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/foundation.js.tt +4 -4
- data/lib/generators/jquery/datatables/templates/foundation.scss.tt +33 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +7 -1
- data/lib/generators/jquery/datatables/templates/jqueryui.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/material.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/material.scss.tt +1 -0
- data/lib/generators/jquery/datatables/templates/regular.js.tt +4 -3
- data/lib/generators/jquery/datatables/templates/regular.scss.tt +33 -0
- data/lib/generators/jquery/datatables/templates/semanticui.js.tt +4 -2
- data/lib/generators/jquery/datatables/templates/semanticui.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/uikit.js.tt +4 -2
- data/lib/generators/jquery/datatables/templates/uikit.scss.tt +1 -0
- data/lib/jquery-datatables/version.rb +1 -1
- metadata +86 -90
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +0 -184
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +0 -194
- data/app/assets/stylesheets/datatables/dataTables.foundation.css +0 -118
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +0 -482
- data/app/assets/stylesheets/datatables/dataTables.material.css +0 -87
- data/app/assets/stylesheets/datatables/dataTables.semanticui.css +0 -102
- data/app/assets/stylesheets/datatables/dataTables.uikit.css +0 -146
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +0 -92
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +0 -85
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +0 -85
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +0 -158
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +0 -219
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +0 -354
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +0 -189
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +0 -218
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +0 -171
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +0 -44
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +0 -44
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +0 -18
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +0 -8
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +0 -16
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +0 -19
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +0 -15
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +0 -178
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +0 -178
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +0 -24
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +0 -24
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +0 -17
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +0 -115
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +0 -115
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +0 -105
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +0 -117
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +0 -105
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +0 -110
- data/app/assets/stylesheets/datatables/jquery.dataTables.css +0 -455
- data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +0 -416
- data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/bootstrap2.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/bootstrap2.js.tt +0 -22
- data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/foundation.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/material.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/regular.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/semanticui.css.tt +0 -16
- data/lib/generators/jquery/datatables/templates/uikit.css.tt +0 -15
@@ -0,0 +1,98 @@
|
|
1
|
+
|
2
|
+
@import 'mixins.scss';
|
3
|
+
@import 'common.scss';
|
4
|
+
|
5
|
+
div.dt-buttons {
|
6
|
+
position: relative;
|
7
|
+
float: left;
|
8
|
+
|
9
|
+
.dt-button {
|
10
|
+
margin-right: 0;
|
11
|
+
|
12
|
+
span.ui-icon {
|
13
|
+
display: inline-block;
|
14
|
+
vertical-align: middle;
|
15
|
+
margin-top: -2px;
|
16
|
+
}
|
17
|
+
|
18
|
+
&:active {
|
19
|
+
outline: none;
|
20
|
+
}
|
21
|
+
|
22
|
+
&:hover > span {
|
23
|
+
background-color: rgba(0, 0, 0, 0.05);
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
|
29
|
+
div.dt-button-collection {
|
30
|
+
position: absolute;
|
31
|
+
top: 0;
|
32
|
+
left: 0;
|
33
|
+
width: 150px;
|
34
|
+
margin-top: 3px;
|
35
|
+
padding: 8px 8px 4px 8px;
|
36
|
+
border: 1px solid #ccc;
|
37
|
+
border: 1px solid rgba( 0, 0, 0, 0.4 );
|
38
|
+
background-color: #f3f3f3;
|
39
|
+
background-color: rgba( 255, 255, 255, 0.3 );
|
40
|
+
overflow: hidden;
|
41
|
+
z-index: 2002;
|
42
|
+
border-radius: 5px;
|
43
|
+
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
44
|
+
|
45
|
+
z-index: 2002;
|
46
|
+
|
47
|
+
.dt-button {
|
48
|
+
position: relative;
|
49
|
+
left: 0;
|
50
|
+
right: 0;
|
51
|
+
|
52
|
+
display: block;
|
53
|
+
float: none;
|
54
|
+
margin-right: 0;
|
55
|
+
|
56
|
+
&:last-child {
|
57
|
+
margin-bottom: 4px;
|
58
|
+
}
|
59
|
+
|
60
|
+
&:hover > span {
|
61
|
+
background-color: rgba(0, 0, 0, 0.05);
|
62
|
+
}
|
63
|
+
}
|
64
|
+
|
65
|
+
@include dtb-fixed-collection();
|
66
|
+
|
67
|
+
-webkit-column-gap: 0;
|
68
|
+
-moz-column-gap: 0;
|
69
|
+
-ms-column-gap: 0;
|
70
|
+
-o-column-gap: 0;
|
71
|
+
column-gap: 0;
|
72
|
+
}
|
73
|
+
|
74
|
+
div.dt-button-background {
|
75
|
+
position: fixed;
|
76
|
+
top: 0;
|
77
|
+
left: 0;
|
78
|
+
width: 100%;
|
79
|
+
height: 100%;
|
80
|
+
|
81
|
+
@include dtb-radial-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7) );
|
82
|
+
|
83
|
+
z-index: 2001;
|
84
|
+
}
|
85
|
+
|
86
|
+
|
87
|
+
@media screen and (max-width: 640px) {
|
88
|
+
div.dt-buttons {
|
89
|
+
float: none !important;
|
90
|
+
text-align: center;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
button.dt-button.processing,
|
95
|
+
div.dt-button.processing,
|
96
|
+
a.dt-button.processing {
|
97
|
+
@include dtb-processing();
|
98
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
|
2
|
+
@import 'mixins.scss';
|
3
|
+
@import 'common.scss';
|
4
|
+
|
5
|
+
div.dt-button-collection {
|
6
|
+
position: absolute;
|
7
|
+
top: 0;
|
8
|
+
left: 0;
|
9
|
+
width: 150px;
|
10
|
+
margin-top: 3px !important;
|
11
|
+
z-index: 2002;
|
12
|
+
background: white;
|
13
|
+
|
14
|
+
@include dtb-fixed-collection();
|
15
|
+
}
|
16
|
+
|
17
|
+
button.buttons-collection.ui.button span:after {
|
18
|
+
display: inline-block;
|
19
|
+
content: "▾";
|
20
|
+
padding-left: 0.5em;
|
21
|
+
}
|
22
|
+
|
23
|
+
div.dt-button-background {
|
24
|
+
position: fixed;
|
25
|
+
top: 0;
|
26
|
+
left: 0;
|
27
|
+
width: 100%;
|
28
|
+
height: 100%;
|
29
|
+
z-index: 2001;
|
30
|
+
}
|
31
|
+
|
32
|
+
@media screen and (max-width: 767px) {
|
33
|
+
div.dt-buttons {
|
34
|
+
float: none;
|
35
|
+
width: 100%;
|
36
|
+
text-align: center;
|
37
|
+
margin-bottom: 0.5em;
|
38
|
+
|
39
|
+
a.btn {
|
40
|
+
float: none;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
div.dt-buttons {
|
46
|
+
button.button.processing,
|
47
|
+
div.button.processing,
|
48
|
+
a.button.processing {
|
49
|
+
position: relative;
|
50
|
+
|
51
|
+
@include dtb-processing();
|
52
|
+
}
|
53
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
|
2
|
+
$colreorder-insert-color: #0259C4 !default;
|
3
|
+
|
4
|
+
|
5
|
+
// Floating table, dragged with the mouse
|
6
|
+
table.DTCR_clonedTable.dataTable {
|
7
|
+
position: absolute !important;
|
8
|
+
background-color: rgba(255, 255, 255, 0.7);
|
9
|
+
z-index: 202;
|
10
|
+
}
|
11
|
+
|
12
|
+
// Insert line
|
13
|
+
div.DTCR_pointer {
|
14
|
+
width: 1px;
|
15
|
+
background-color: $colreorder-insert-color;
|
16
|
+
z-index: 201;
|
17
|
+
}
|
@@ -0,0 +1,50 @@
|
|
1
|
+
table.DTFC_Cloned tr {
|
2
|
+
background-color: white;
|
3
|
+
margin-bottom: 0;
|
4
|
+
}
|
5
|
+
|
6
|
+
div.DTFC_LeftHeadWrapper table,
|
7
|
+
div.DTFC_RightHeadWrapper table {
|
8
|
+
border-bottom: none !important;
|
9
|
+
margin-bottom: 0 !important;
|
10
|
+
background-color: white;
|
11
|
+
}
|
12
|
+
|
13
|
+
div.DTFC_LeftBodyWrapper table,
|
14
|
+
div.DTFC_RightBodyWrapper table {
|
15
|
+
border-top: none;
|
16
|
+
margin: 0 !important;
|
17
|
+
|
18
|
+
// Hide sorting icons
|
19
|
+
thead {
|
20
|
+
.sorting:after,
|
21
|
+
.sorting_asc:after,
|
22
|
+
.sorting_desc:after,
|
23
|
+
.sorting:after,
|
24
|
+
.sorting_asc:after,
|
25
|
+
.sorting_desc:after {
|
26
|
+
display: none;
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
// Header provides the border
|
31
|
+
tbody tr:first-child {
|
32
|
+
th,
|
33
|
+
td {
|
34
|
+
border-top: none;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
}
|
38
|
+
|
39
|
+
div.DTFC_LeftFootWrapper table,
|
40
|
+
div.DTFC_RightFootWrapper table {
|
41
|
+
border-top: none;
|
42
|
+
margin-top: 0 !important;
|
43
|
+
background-color: white;
|
44
|
+
}
|
45
|
+
|
46
|
+
// Block out the gap above the scrollbar on the right, when there is a fixed
|
47
|
+
// right column
|
48
|
+
div.DTFC_Blocker {
|
49
|
+
background-color: white;
|
50
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
|
2
|
+
@import 'fixedColumns.bootstrap.scss';
|
3
|
+
|
4
|
+
// Bootstrap 4 uses rgba for the table background colours, so we need to
|
5
|
+
// block them out
|
6
|
+
table.dataTable.table-striped.DTFC_Cloned tbody tr:nth-of-type(odd) {
|
7
|
+
background-color: #F3F3F3;
|
8
|
+
}
|
9
|
+
table.dataTable.table-striped.DTFC_Cloned tbody tr:nth-of-type(even) {
|
10
|
+
background-color: white;
|
11
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
|
2
|
+
// Block out what is behind the fixed column's header and footer
|
3
|
+
table.DTFC_Cloned thead,
|
4
|
+
table.DTFC_Cloned tfoot {
|
5
|
+
background-color: white;
|
6
|
+
}
|
7
|
+
|
8
|
+
// Block out the gap above the scrollbar on the right, when there is a fixed
|
9
|
+
// right column
|
10
|
+
div.DTFC_Blocker {
|
11
|
+
background-color: white;
|
12
|
+
}
|
13
|
+
|
14
|
+
div.DTFC_LeftWrapper table.dataTable,
|
15
|
+
div.DTFC_RightWrapper table.dataTable {
|
16
|
+
margin-bottom: 0;
|
17
|
+
z-index: 2;
|
18
|
+
|
19
|
+
&.no-footer {
|
20
|
+
border-bottom: none;
|
21
|
+
}
|
22
|
+
}
|
@@ -1,27 +1,36 @@
|
|
1
|
+
|
2
|
+
|
1
3
|
div.DTFC_LeftHeadWrapper table,
|
2
4
|
div.DTFC_LeftBodyWrapper table,
|
3
5
|
div.DTFC_LeftFootWrapper table {
|
4
|
-
|
6
|
+
border-right-width: 0;
|
5
7
|
}
|
6
8
|
|
7
9
|
div.DTFC_RightHeadWrapper table,
|
8
10
|
div.DTFC_RightBodyWrapper table,
|
9
11
|
div.DTFC_RightFootWrapper table {
|
10
|
-
|
12
|
+
border-left-width: 0;
|
11
13
|
}
|
12
14
|
|
13
15
|
div.DTFC_LeftHeadWrapper table,
|
14
16
|
div.DTFC_RightHeadWrapper table {
|
15
|
-
|
17
|
+
margin-bottom: 0 !important;
|
16
18
|
}
|
17
19
|
|
18
20
|
div.DTFC_LeftBodyWrapper table,
|
19
21
|
div.DTFC_RightBodyWrapper table {
|
20
|
-
|
21
|
-
|
22
|
+
border-top: none;
|
23
|
+
margin: 0 !important;
|
22
24
|
}
|
23
25
|
|
24
26
|
div.DTFC_LeftFootWrapper table,
|
25
27
|
div.DTFC_RightFootWrapper table {
|
26
|
-
|
28
|
+
margin-top: 0 !important;
|
27
29
|
}
|
30
|
+
|
31
|
+
// Block out the gap above the scrollbar on the right, when there is a fixed
|
32
|
+
// right column
|
33
|
+
div.DTFC_Blocker {
|
34
|
+
background-color: white;
|
35
|
+
}
|
36
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
|
2
|
+
div.DTFC_LeftWrapper table.dataTable,
|
3
|
+
div.DTFC_RightWrapper table.dataTable {
|
4
|
+
z-index: 2;
|
5
|
+
|
6
|
+
&.no-footer {
|
7
|
+
border-bottom: none;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
// Block out the gap above the scrollbar on the right, when there is a fixed
|
12
|
+
// right column
|
13
|
+
div.DTFC_Blocker {
|
14
|
+
background-color: white;
|
15
|
+
}
|
16
|
+
|
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
div.DTFC_LeftWrapper table.ui.table.dataTable {
|
3
|
+
border-right: none;
|
4
|
+
}
|
5
|
+
|
6
|
+
div.DTFC_RightWrapper table.ui.table.dataTable {
|
7
|
+
border-left: none;
|
8
|
+
}
|
9
|
+
|
10
|
+
// Block out the gap above the scrollbar on the right, when there is a fixed
|
11
|
+
// right column
|
12
|
+
div.DTFC_Blocker {
|
13
|
+
background-color: white;
|
14
|
+
}
|
15
|
+
|
16
|
+
div.DTFC_LeftWrapper table.dataTable,
|
17
|
+
div.DTFC_RightWrapper table.dataTable {
|
18
|
+
z-index: 2;
|
19
|
+
}
|
20
|
+
|
21
|
+
div.DTFC_LeftHeadWrapper table.ui.table.dataTable,
|
22
|
+
div.DTFC_RightHeadWrapper table.ui.table.dataTable {
|
23
|
+
border-bottom: none;
|
24
|
+
}
|
25
|
+
|
26
|
+
div.DTFC_LeftBodyWrapper table.ui.table.dataTable,
|
27
|
+
div.DTFC_RightBodyWrapper table.ui.table.dataTable {
|
28
|
+
border-top: none;
|
29
|
+
|
30
|
+
// Hide sorting icons
|
31
|
+
thead {
|
32
|
+
.sorting:after,
|
33
|
+
.sorting_asc:after,
|
34
|
+
.sorting_desc:after,
|
35
|
+
.sorting:after,
|
36
|
+
.sorting_asc:after,
|
37
|
+
.sorting_desc:after {
|
38
|
+
display: none;
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
@@ -1,16 +1,17 @@
|
|
1
|
+
|
1
2
|
table.dataTable.fixedHeader-floating,
|
2
3
|
table.dataTable.fixedHeader-locked {
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
background-color: white;
|
5
|
+
margin-top: 0 !important;
|
6
|
+
margin-bottom: 0 !important;
|
6
7
|
}
|
7
8
|
|
8
9
|
table.dataTable.fixedHeader-floating {
|
9
|
-
|
10
|
+
position: fixed !important;
|
10
11
|
}
|
11
12
|
|
12
13
|
table.dataTable.fixedHeader-locked {
|
13
|
-
|
14
|
+
position: absolute !important;
|
14
15
|
}
|
15
16
|
|
16
17
|
@media print {
|
@@ -1,16 +1,17 @@
|
|
1
|
+
|
1
2
|
table.dataTable.fixedHeader-floating,
|
2
3
|
table.dataTable.fixedHeader-locked {
|
3
|
-
|
4
|
-
|
5
|
-
|
4
|
+
background-color: white;
|
5
|
+
margin-top: 0 !important;
|
6
|
+
margin-bottom: 0 !important;
|
6
7
|
}
|
7
8
|
|
8
9
|
table.dataTable.fixedHeader-floating {
|
9
|
-
|
10
|
+
position: fixed !important;
|
10
11
|
}
|
11
12
|
|
12
13
|
table.dataTable.fixedHeader-locked {
|
13
|
-
|
14
|
+
position: absolute !important;
|
14
15
|
}
|
15
16
|
|
16
17
|
@media print {
|
@@ -0,0 +1,21 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
table.fixedHeader-floating {
|
4
|
+
position: fixed !important;
|
5
|
+
background-color: white;
|
6
|
+
}
|
7
|
+
|
8
|
+
table.fixedHeader-floating.no-footer {
|
9
|
+
border-bottom-width: 0;
|
10
|
+
}
|
11
|
+
|
12
|
+
table.fixedHeader-locked {
|
13
|
+
position: absolute !important;
|
14
|
+
background-color: white;
|
15
|
+
}
|
16
|
+
|
17
|
+
@media print {
|
18
|
+
table.fixedHeader-floating {
|
19
|
+
display: none;
|
20
|
+
}
|
21
|
+
}
|