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
@@ -1,189 +0,0 @@
|
|
1
|
-
@keyframes dtb-spinner {
|
2
|
-
100% {
|
3
|
-
transform: rotate(360deg);
|
4
|
-
}
|
5
|
-
}
|
6
|
-
@-o-keyframes dtb-spinner {
|
7
|
-
100% {
|
8
|
-
-o-transform: rotate(360deg);
|
9
|
-
transform: rotate(360deg);
|
10
|
-
}
|
11
|
-
}
|
12
|
-
@-ms-keyframes dtb-spinner {
|
13
|
-
100% {
|
14
|
-
-ms-transform: rotate(360deg);
|
15
|
-
transform: rotate(360deg);
|
16
|
-
}
|
17
|
-
}
|
18
|
-
@-webkit-keyframes dtb-spinner {
|
19
|
-
100% {
|
20
|
-
-webkit-transform: rotate(360deg);
|
21
|
-
transform: rotate(360deg);
|
22
|
-
}
|
23
|
-
}
|
24
|
-
@-moz-keyframes dtb-spinner {
|
25
|
-
100% {
|
26
|
-
-moz-transform: rotate(360deg);
|
27
|
-
transform: rotate(360deg);
|
28
|
-
}
|
29
|
-
}
|
30
|
-
div.dt-button-info {
|
31
|
-
position: fixed;
|
32
|
-
top: 50%;
|
33
|
-
left: 50%;
|
34
|
-
width: 400px;
|
35
|
-
margin-top: -100px;
|
36
|
-
margin-left: -200px;
|
37
|
-
background-color: white;
|
38
|
-
border: 2px solid #111;
|
39
|
-
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
|
40
|
-
border-radius: 3px;
|
41
|
-
text-align: center;
|
42
|
-
z-index: 21;
|
43
|
-
}
|
44
|
-
div.dt-button-info h2 {
|
45
|
-
padding: 0.5em;
|
46
|
-
margin: 0;
|
47
|
-
font-weight: normal;
|
48
|
-
border-bottom: 1px solid #ddd;
|
49
|
-
background-color: #f3f3f3;
|
50
|
-
}
|
51
|
-
div.dt-button-info > div {
|
52
|
-
padding: 1em;
|
53
|
-
}
|
54
|
-
|
55
|
-
ul.dt-buttons li {
|
56
|
-
margin: 0;
|
57
|
-
}
|
58
|
-
ul.dt-buttons li.active a {
|
59
|
-
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
|
60
|
-
}
|
61
|
-
|
62
|
-
ul.dt-buttons.button-group a {
|
63
|
-
margin-bottom: 0;
|
64
|
-
}
|
65
|
-
|
66
|
-
ul.dt-button-collection.f-dropdown {
|
67
|
-
-webkit-column-gap: 8px;
|
68
|
-
-moz-column-gap: 8px;
|
69
|
-
-ms-column-gap: 8px;
|
70
|
-
-o-column-gap: 8px;
|
71
|
-
column-gap: 8px;
|
72
|
-
}
|
73
|
-
ul.dt-button-collection.f-dropdown.fixed {
|
74
|
-
position: fixed;
|
75
|
-
top: 50%;
|
76
|
-
left: 50%;
|
77
|
-
margin-left: -75px;
|
78
|
-
border-radius: 0;
|
79
|
-
}
|
80
|
-
ul.dt-button-collection.f-dropdown.fixed.two-column {
|
81
|
-
margin-left: -150px;
|
82
|
-
}
|
83
|
-
ul.dt-button-collection.f-dropdown.fixed.three-column {
|
84
|
-
margin-left: -225px;
|
85
|
-
}
|
86
|
-
ul.dt-button-collection.f-dropdown.fixed.four-column {
|
87
|
-
margin-left: -300px;
|
88
|
-
}
|
89
|
-
ul.dt-button-collection.f-dropdown > * {
|
90
|
-
-webkit-column-break-inside: avoid;
|
91
|
-
break-inside: avoid;
|
92
|
-
}
|
93
|
-
ul.dt-button-collection.f-dropdown.two-column {
|
94
|
-
width: 300px;
|
95
|
-
padding-bottom: 1px;
|
96
|
-
-webkit-column-count: 2;
|
97
|
-
-moz-column-count: 2;
|
98
|
-
-ms-column-count: 2;
|
99
|
-
-o-column-count: 2;
|
100
|
-
column-count: 2;
|
101
|
-
}
|
102
|
-
ul.dt-button-collection.f-dropdown.three-column {
|
103
|
-
width: 450px;
|
104
|
-
padding-bottom: 1px;
|
105
|
-
-webkit-column-count: 3;
|
106
|
-
-moz-column-count: 3;
|
107
|
-
-ms-column-count: 3;
|
108
|
-
-o-column-count: 3;
|
109
|
-
column-count: 3;
|
110
|
-
}
|
111
|
-
ul.dt-button-collection.f-dropdown.four-column {
|
112
|
-
width: 600px;
|
113
|
-
padding-bottom: 1px;
|
114
|
-
-webkit-column-count: 4;
|
115
|
-
-moz-column-count: 4;
|
116
|
-
-ms-column-count: 4;
|
117
|
-
-o-column-count: 4;
|
118
|
-
column-count: 4;
|
119
|
-
}
|
120
|
-
ul.dt-button-collection.f-dropdown.fixed {
|
121
|
-
max-width: none;
|
122
|
-
}
|
123
|
-
ul.dt-button-collection.f-dropdown.fixed:before, ul.dt-button-collection.f-dropdown.fixed:after {
|
124
|
-
display: none;
|
125
|
-
}
|
126
|
-
|
127
|
-
div.dt-button-background {
|
128
|
-
position: fixed;
|
129
|
-
top: 0;
|
130
|
-
left: 0;
|
131
|
-
width: 100%;
|
132
|
-
height: 100%;
|
133
|
-
z-index: 88;
|
134
|
-
}
|
135
|
-
|
136
|
-
@media screen and (max-width: 767px) {
|
137
|
-
ul.dt-buttons {
|
138
|
-
float: none;
|
139
|
-
width: 100%;
|
140
|
-
text-align: center;
|
141
|
-
margin-bottom: 0.5rem;
|
142
|
-
}
|
143
|
-
ul.dt-buttons li {
|
144
|
-
float: none;
|
145
|
-
}
|
146
|
-
}
|
147
|
-
div.button-group.stacked.dropdown-pane {
|
148
|
-
margin-top: 2px;
|
149
|
-
padding: 1px;
|
150
|
-
z-index: 89;
|
151
|
-
}
|
152
|
-
div.button-group.stacked.dropdown-pane a.button {
|
153
|
-
margin-bottom: 1px;
|
154
|
-
border-right: none;
|
155
|
-
}
|
156
|
-
div.button-group.stacked.dropdown-pane a.button:last-child {
|
157
|
-
margin-bottom: 0;
|
158
|
-
}
|
159
|
-
|
160
|
-
div.dt-buttons button.button.processing,
|
161
|
-
div.dt-buttons div.button.processing,
|
162
|
-
div.dt-buttons a.button.processing {
|
163
|
-
color: rgba(0, 0, 0, 0.2);
|
164
|
-
color: rgba(255, 255, 255, 0.2);
|
165
|
-
border-top-color: white;
|
166
|
-
border-bottom-color: white;
|
167
|
-
}
|
168
|
-
div.dt-buttons button.button.processing:after,
|
169
|
-
div.dt-buttons div.button.processing:after,
|
170
|
-
div.dt-buttons a.button.processing:after {
|
171
|
-
position: absolute;
|
172
|
-
top: 50%;
|
173
|
-
left: 50%;
|
174
|
-
width: 16px;
|
175
|
-
height: 16px;
|
176
|
-
margin: -8px 0 0 -8px;
|
177
|
-
box-sizing: border-box;
|
178
|
-
display: block;
|
179
|
-
content: ' ';
|
180
|
-
border: 2px solid #282828;
|
181
|
-
border-radius: 50%;
|
182
|
-
border-left-color: transparent;
|
183
|
-
border-right-color: transparent;
|
184
|
-
animation: dtb-spinner 1500ms infinite linear;
|
185
|
-
-o-animation: dtb-spinner 1500ms infinite linear;
|
186
|
-
-ms-animation: dtb-spinner 1500ms infinite linear;
|
187
|
-
-webkit-animation: dtb-spinner 1500ms infinite linear;
|
188
|
-
-moz-animation: dtb-spinner 1500ms infinite linear;
|
189
|
-
}
|
@@ -1,218 +0,0 @@
|
|
1
|
-
@keyframes dtb-spinner {
|
2
|
-
100% {
|
3
|
-
transform: rotate(360deg);
|
4
|
-
}
|
5
|
-
}
|
6
|
-
@-o-keyframes dtb-spinner {
|
7
|
-
100% {
|
8
|
-
-o-transform: rotate(360deg);
|
9
|
-
transform: rotate(360deg);
|
10
|
-
}
|
11
|
-
}
|
12
|
-
@-ms-keyframes dtb-spinner {
|
13
|
-
100% {
|
14
|
-
-ms-transform: rotate(360deg);
|
15
|
-
transform: rotate(360deg);
|
16
|
-
}
|
17
|
-
}
|
18
|
-
@-webkit-keyframes dtb-spinner {
|
19
|
-
100% {
|
20
|
-
-webkit-transform: rotate(360deg);
|
21
|
-
transform: rotate(360deg);
|
22
|
-
}
|
23
|
-
}
|
24
|
-
@-moz-keyframes dtb-spinner {
|
25
|
-
100% {
|
26
|
-
-moz-transform: rotate(360deg);
|
27
|
-
transform: rotate(360deg);
|
28
|
-
}
|
29
|
-
}
|
30
|
-
div.dt-button-info {
|
31
|
-
position: fixed;
|
32
|
-
top: 50%;
|
33
|
-
left: 50%;
|
34
|
-
width: 400px;
|
35
|
-
margin-top: -100px;
|
36
|
-
margin-left: -200px;
|
37
|
-
background-color: white;
|
38
|
-
border: 2px solid #111;
|
39
|
-
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
|
40
|
-
border-radius: 3px;
|
41
|
-
text-align: center;
|
42
|
-
z-index: 21;
|
43
|
-
}
|
44
|
-
div.dt-button-info h2 {
|
45
|
-
padding: 0.5em;
|
46
|
-
margin: 0;
|
47
|
-
font-weight: normal;
|
48
|
-
border-bottom: 1px solid #ddd;
|
49
|
-
background-color: #f3f3f3;
|
50
|
-
}
|
51
|
-
div.dt-button-info > div {
|
52
|
-
padding: 1em;
|
53
|
-
}
|
54
|
-
|
55
|
-
div.dt-buttons {
|
56
|
-
position: relative;
|
57
|
-
float: left;
|
58
|
-
}
|
59
|
-
div.dt-buttons .dt-button {
|
60
|
-
margin-right: 0;
|
61
|
-
}
|
62
|
-
div.dt-buttons .dt-button span.ui-icon {
|
63
|
-
display: inline-block;
|
64
|
-
vertical-align: middle;
|
65
|
-
margin-top: -2px;
|
66
|
-
}
|
67
|
-
div.dt-buttons .dt-button:active {
|
68
|
-
outline: none;
|
69
|
-
}
|
70
|
-
div.dt-buttons .dt-button:hover > span {
|
71
|
-
background-color: rgba(0, 0, 0, 0.05);
|
72
|
-
}
|
73
|
-
|
74
|
-
div.dt-button-collection {
|
75
|
-
position: absolute;
|
76
|
-
top: 0;
|
77
|
-
left: 0;
|
78
|
-
width: 150px;
|
79
|
-
margin-top: 3px;
|
80
|
-
padding: 8px 8px 4px 8px;
|
81
|
-
border: 1px solid #ccc;
|
82
|
-
border: 1px solid rgba(0, 0, 0, 0.4);
|
83
|
-
background-color: #f3f3f3;
|
84
|
-
background-color: rgba(255, 255, 255, 0.3);
|
85
|
-
overflow: hidden;
|
86
|
-
z-index: 2002;
|
87
|
-
border-radius: 5px;
|
88
|
-
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
89
|
-
z-index: 2002;
|
90
|
-
-webkit-column-gap: 8px;
|
91
|
-
-moz-column-gap: 8px;
|
92
|
-
-ms-column-gap: 8px;
|
93
|
-
-o-column-gap: 8px;
|
94
|
-
column-gap: 8px;
|
95
|
-
-webkit-column-gap: 0;
|
96
|
-
-moz-column-gap: 0;
|
97
|
-
-ms-column-gap: 0;
|
98
|
-
-o-column-gap: 0;
|
99
|
-
column-gap: 0;
|
100
|
-
}
|
101
|
-
div.dt-button-collection .dt-button {
|
102
|
-
position: relative;
|
103
|
-
left: 0;
|
104
|
-
right: 0;
|
105
|
-
display: block;
|
106
|
-
float: none;
|
107
|
-
margin-right: 0;
|
108
|
-
}
|
109
|
-
div.dt-button-collection .dt-button:last-child {
|
110
|
-
margin-bottom: 4px;
|
111
|
-
}
|
112
|
-
div.dt-button-collection .dt-button:hover > span {
|
113
|
-
background-color: rgba(0, 0, 0, 0.05);
|
114
|
-
}
|
115
|
-
div.dt-button-collection.fixed {
|
116
|
-
position: fixed;
|
117
|
-
top: 50%;
|
118
|
-
left: 50%;
|
119
|
-
margin-left: -75px;
|
120
|
-
border-radius: 0;
|
121
|
-
}
|
122
|
-
div.dt-button-collection.fixed.two-column {
|
123
|
-
margin-left: -150px;
|
124
|
-
}
|
125
|
-
div.dt-button-collection.fixed.three-column {
|
126
|
-
margin-left: -225px;
|
127
|
-
}
|
128
|
-
div.dt-button-collection.fixed.four-column {
|
129
|
-
margin-left: -300px;
|
130
|
-
}
|
131
|
-
div.dt-button-collection > * {
|
132
|
-
-webkit-column-break-inside: avoid;
|
133
|
-
break-inside: avoid;
|
134
|
-
}
|
135
|
-
div.dt-button-collection.two-column {
|
136
|
-
width: 300px;
|
137
|
-
padding-bottom: 1px;
|
138
|
-
-webkit-column-count: 2;
|
139
|
-
-moz-column-count: 2;
|
140
|
-
-ms-column-count: 2;
|
141
|
-
-o-column-count: 2;
|
142
|
-
column-count: 2;
|
143
|
-
}
|
144
|
-
div.dt-button-collection.three-column {
|
145
|
-
width: 450px;
|
146
|
-
padding-bottom: 1px;
|
147
|
-
-webkit-column-count: 3;
|
148
|
-
-moz-column-count: 3;
|
149
|
-
-ms-column-count: 3;
|
150
|
-
-o-column-count: 3;
|
151
|
-
column-count: 3;
|
152
|
-
}
|
153
|
-
div.dt-button-collection.four-column {
|
154
|
-
width: 600px;
|
155
|
-
padding-bottom: 1px;
|
156
|
-
-webkit-column-count: 4;
|
157
|
-
-moz-column-count: 4;
|
158
|
-
-ms-column-count: 4;
|
159
|
-
-o-column-count: 4;
|
160
|
-
column-count: 4;
|
161
|
-
}
|
162
|
-
|
163
|
-
div.dt-button-background {
|
164
|
-
position: fixed;
|
165
|
-
top: 0;
|
166
|
-
left: 0;
|
167
|
-
width: 100%;
|
168
|
-
height: 100%;
|
169
|
-
background: rgba(0, 0, 0, 0.7);
|
170
|
-
/* Fallback */
|
171
|
-
background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
172
|
-
/* IE10 Consumer Preview */
|
173
|
-
background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
174
|
-
/* Firefox */
|
175
|
-
background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
176
|
-
/* Opera */
|
177
|
-
background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, rgba(0, 0, 0, 0.3)), color-stop(1, rgba(0, 0, 0, 0.7)));
|
178
|
-
/* Webkit (Safari/Chrome 10) */
|
179
|
-
background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
180
|
-
/* Webkit (Chrome 11+) */
|
181
|
-
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
182
|
-
/* W3C Markup, IE10 Release Preview */
|
183
|
-
z-index: 2001;
|
184
|
-
}
|
185
|
-
|
186
|
-
@media screen and (max-width: 640px) {
|
187
|
-
div.dt-buttons {
|
188
|
-
float: none !important;
|
189
|
-
text-align: center;
|
190
|
-
}
|
191
|
-
}
|
192
|
-
button.dt-button.processing,
|
193
|
-
div.dt-button.processing,
|
194
|
-
a.dt-button.processing {
|
195
|
-
color: rgba(0, 0, 0, 0.2);
|
196
|
-
}
|
197
|
-
button.dt-button.processing:after,
|
198
|
-
div.dt-button.processing:after,
|
199
|
-
a.dt-button.processing:after {
|
200
|
-
position: absolute;
|
201
|
-
top: 50%;
|
202
|
-
left: 50%;
|
203
|
-
width: 16px;
|
204
|
-
height: 16px;
|
205
|
-
margin: -8px 0 0 -8px;
|
206
|
-
box-sizing: border-box;
|
207
|
-
display: block;
|
208
|
-
content: ' ';
|
209
|
-
border: 2px solid #282828;
|
210
|
-
border-radius: 50%;
|
211
|
-
border-left-color: transparent;
|
212
|
-
border-right-color: transparent;
|
213
|
-
animation: dtb-spinner 1500ms infinite linear;
|
214
|
-
-o-animation: dtb-spinner 1500ms infinite linear;
|
215
|
-
-ms-animation: dtb-spinner 1500ms infinite linear;
|
216
|
-
-webkit-animation: dtb-spinner 1500ms infinite linear;
|
217
|
-
-moz-animation: dtb-spinner 1500ms infinite linear;
|
218
|
-
}
|
@@ -1,171 +0,0 @@
|
|
1
|
-
@charset "UTF-8";
|
2
|
-
@keyframes dtb-spinner {
|
3
|
-
100% {
|
4
|
-
transform: rotate(360deg);
|
5
|
-
}
|
6
|
-
}
|
7
|
-
@-o-keyframes dtb-spinner {
|
8
|
-
100% {
|
9
|
-
-o-transform: rotate(360deg);
|
10
|
-
transform: rotate(360deg);
|
11
|
-
}
|
12
|
-
}
|
13
|
-
@-ms-keyframes dtb-spinner {
|
14
|
-
100% {
|
15
|
-
-ms-transform: rotate(360deg);
|
16
|
-
transform: rotate(360deg);
|
17
|
-
}
|
18
|
-
}
|
19
|
-
@-webkit-keyframes dtb-spinner {
|
20
|
-
100% {
|
21
|
-
-webkit-transform: rotate(360deg);
|
22
|
-
transform: rotate(360deg);
|
23
|
-
}
|
24
|
-
}
|
25
|
-
@-moz-keyframes dtb-spinner {
|
26
|
-
100% {
|
27
|
-
-moz-transform: rotate(360deg);
|
28
|
-
transform: rotate(360deg);
|
29
|
-
}
|
30
|
-
}
|
31
|
-
div.dt-button-info {
|
32
|
-
position: fixed;
|
33
|
-
top: 50%;
|
34
|
-
left: 50%;
|
35
|
-
width: 400px;
|
36
|
-
margin-top: -100px;
|
37
|
-
margin-left: -200px;
|
38
|
-
background-color: white;
|
39
|
-
border: 2px solid #111;
|
40
|
-
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
|
41
|
-
border-radius: 3px;
|
42
|
-
text-align: center;
|
43
|
-
z-index: 21;
|
44
|
-
}
|
45
|
-
div.dt-button-info h2 {
|
46
|
-
padding: 0.5em;
|
47
|
-
margin: 0;
|
48
|
-
font-weight: normal;
|
49
|
-
border-bottom: 1px solid #ddd;
|
50
|
-
background-color: #f3f3f3;
|
51
|
-
}
|
52
|
-
div.dt-button-info > div {
|
53
|
-
padding: 1em;
|
54
|
-
}
|
55
|
-
|
56
|
-
div.dt-button-collection {
|
57
|
-
position: absolute;
|
58
|
-
top: 0;
|
59
|
-
left: 0;
|
60
|
-
width: 150px;
|
61
|
-
margin-top: 3px !important;
|
62
|
-
z-index: 2002;
|
63
|
-
background: white;
|
64
|
-
-webkit-column-gap: 8px;
|
65
|
-
-moz-column-gap: 8px;
|
66
|
-
-ms-column-gap: 8px;
|
67
|
-
-o-column-gap: 8px;
|
68
|
-
column-gap: 8px;
|
69
|
-
}
|
70
|
-
div.dt-button-collection.fixed {
|
71
|
-
position: fixed;
|
72
|
-
top: 50%;
|
73
|
-
left: 50%;
|
74
|
-
margin-left: -75px;
|
75
|
-
border-radius: 0;
|
76
|
-
}
|
77
|
-
div.dt-button-collection.fixed.two-column {
|
78
|
-
margin-left: -150px;
|
79
|
-
}
|
80
|
-
div.dt-button-collection.fixed.three-column {
|
81
|
-
margin-left: -225px;
|
82
|
-
}
|
83
|
-
div.dt-button-collection.fixed.four-column {
|
84
|
-
margin-left: -300px;
|
85
|
-
}
|
86
|
-
div.dt-button-collection > * {
|
87
|
-
-webkit-column-break-inside: avoid;
|
88
|
-
break-inside: avoid;
|
89
|
-
}
|
90
|
-
div.dt-button-collection.two-column {
|
91
|
-
width: 300px;
|
92
|
-
padding-bottom: 1px;
|
93
|
-
-webkit-column-count: 2;
|
94
|
-
-moz-column-count: 2;
|
95
|
-
-ms-column-count: 2;
|
96
|
-
-o-column-count: 2;
|
97
|
-
column-count: 2;
|
98
|
-
}
|
99
|
-
div.dt-button-collection.three-column {
|
100
|
-
width: 450px;
|
101
|
-
padding-bottom: 1px;
|
102
|
-
-webkit-column-count: 3;
|
103
|
-
-moz-column-count: 3;
|
104
|
-
-ms-column-count: 3;
|
105
|
-
-o-column-count: 3;
|
106
|
-
column-count: 3;
|
107
|
-
}
|
108
|
-
div.dt-button-collection.four-column {
|
109
|
-
width: 600px;
|
110
|
-
padding-bottom: 1px;
|
111
|
-
-webkit-column-count: 4;
|
112
|
-
-moz-column-count: 4;
|
113
|
-
-ms-column-count: 4;
|
114
|
-
-o-column-count: 4;
|
115
|
-
column-count: 4;
|
116
|
-
}
|
117
|
-
|
118
|
-
button.buttons-collection.ui.button span:after {
|
119
|
-
display: inline-block;
|
120
|
-
content: "▾";
|
121
|
-
padding-left: 0.5em;
|
122
|
-
}
|
123
|
-
|
124
|
-
div.dt-button-background {
|
125
|
-
position: fixed;
|
126
|
-
top: 0;
|
127
|
-
left: 0;
|
128
|
-
width: 100%;
|
129
|
-
height: 100%;
|
130
|
-
z-index: 2001;
|
131
|
-
}
|
132
|
-
|
133
|
-
@media screen and (max-width: 767px) {
|
134
|
-
div.dt-buttons {
|
135
|
-
float: none;
|
136
|
-
width: 100%;
|
137
|
-
text-align: center;
|
138
|
-
margin-bottom: 0.5em;
|
139
|
-
}
|
140
|
-
div.dt-buttons a.btn {
|
141
|
-
float: none;
|
142
|
-
}
|
143
|
-
}
|
144
|
-
div.dt-buttons button.button.processing,
|
145
|
-
div.dt-buttons div.button.processing,
|
146
|
-
div.dt-buttons a.button.processing {
|
147
|
-
position: relative;
|
148
|
-
color: rgba(0, 0, 0, 0.2);
|
149
|
-
}
|
150
|
-
div.dt-buttons button.button.processing:after,
|
151
|
-
div.dt-buttons div.button.processing:after,
|
152
|
-
div.dt-buttons a.button.processing:after {
|
153
|
-
position: absolute;
|
154
|
-
top: 50%;
|
155
|
-
left: 50%;
|
156
|
-
width: 16px;
|
157
|
-
height: 16px;
|
158
|
-
margin: -8px 0 0 -8px;
|
159
|
-
box-sizing: border-box;
|
160
|
-
display: block;
|
161
|
-
content: ' ';
|
162
|
-
border: 2px solid #282828;
|
163
|
-
border-radius: 50%;
|
164
|
-
border-left-color: transparent;
|
165
|
-
border-right-color: transparent;
|
166
|
-
animation: dtb-spinner 1500ms infinite linear;
|
167
|
-
-o-animation: dtb-spinner 1500ms infinite linear;
|
168
|
-
-ms-animation: dtb-spinner 1500ms infinite linear;
|
169
|
-
-webkit-animation: dtb-spinner 1500ms infinite linear;
|
170
|
-
-moz-animation: dtb-spinner 1500ms infinite linear;
|
171
|
-
}
|