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,92 +0,0 @@
|
|
1
|
-
div.dt-autofill-handle {
|
2
|
-
position: absolute;
|
3
|
-
height: 8px;
|
4
|
-
width: 8px;
|
5
|
-
z-index: 102;
|
6
|
-
box-sizing: border-box;
|
7
|
-
border: 1px solid #316ad1;
|
8
|
-
background: linear-gradient(to bottom, #abcffb 0%, #4989de 100%);
|
9
|
-
}
|
10
|
-
|
11
|
-
div.dt-autofill-select {
|
12
|
-
position: absolute;
|
13
|
-
z-index: 1001;
|
14
|
-
background-color: #4989de;
|
15
|
-
background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
|
16
|
-
}
|
17
|
-
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
|
18
|
-
height: 3px;
|
19
|
-
margin-top: -1px;
|
20
|
-
}
|
21
|
-
div.dt-autofill-select.left, div.dt-autofill-select.right {
|
22
|
-
width: 3px;
|
23
|
-
margin-left: -1px;
|
24
|
-
}
|
25
|
-
|
26
|
-
div.dt-autofill-list {
|
27
|
-
position: fixed;
|
28
|
-
top: 50%;
|
29
|
-
left: 50%;
|
30
|
-
width: 500px;
|
31
|
-
margin-left: -250px;
|
32
|
-
background-color: white;
|
33
|
-
border-radius: 6px;
|
34
|
-
box-shadow: 0 0 5px #555;
|
35
|
-
border: 2px solid #444;
|
36
|
-
z-index: 11;
|
37
|
-
box-sizing: border-box;
|
38
|
-
padding: 1.5em 2em;
|
39
|
-
}
|
40
|
-
div.dt-autofill-list ul {
|
41
|
-
display: table;
|
42
|
-
margin: 0;
|
43
|
-
padding: 0;
|
44
|
-
list-style: none;
|
45
|
-
width: 100%;
|
46
|
-
}
|
47
|
-
div.dt-autofill-list ul li {
|
48
|
-
display: table-row;
|
49
|
-
}
|
50
|
-
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
|
51
|
-
border-bottom: none;
|
52
|
-
}
|
53
|
-
div.dt-autofill-list ul li:hover {
|
54
|
-
background-color: #f6f6f6;
|
55
|
-
}
|
56
|
-
div.dt-autofill-list div.dt-autofill-question {
|
57
|
-
display: table-cell;
|
58
|
-
padding: 0.5em 0;
|
59
|
-
border-bottom: 1px solid #ccc;
|
60
|
-
}
|
61
|
-
div.dt-autofill-list div.dt-autofill-question input[type=number] {
|
62
|
-
padding: 6px;
|
63
|
-
width: 30px;
|
64
|
-
margin: -2px 0;
|
65
|
-
}
|
66
|
-
div.dt-autofill-list div.dt-autofill-button {
|
67
|
-
display: table-cell;
|
68
|
-
padding: 0.5em 0;
|
69
|
-
border-bottom: 1px solid #ccc;
|
70
|
-
}
|
71
|
-
div.dt-autofill-list div.dt-autofill-button button {
|
72
|
-
color: white;
|
73
|
-
margin: 0;
|
74
|
-
padding: 6px 12px;
|
75
|
-
text-align: center;
|
76
|
-
border: 1px solid #2e6da4;
|
77
|
-
background-color: #337ab7;
|
78
|
-
border-radius: 4px;
|
79
|
-
cursor: pointer;
|
80
|
-
vertical-align: middle;
|
81
|
-
}
|
82
|
-
|
83
|
-
div.dt-autofill-background {
|
84
|
-
position: fixed;
|
85
|
-
top: 0;
|
86
|
-
left: 0;
|
87
|
-
width: 100%;
|
88
|
-
height: 100%;
|
89
|
-
background: rgba(0, 0, 0, 0.7);
|
90
|
-
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
91
|
-
z-index: 10;
|
92
|
-
}
|
@@ -1,85 +0,0 @@
|
|
1
|
-
div.dt-autofill-handle {
|
2
|
-
position: absolute;
|
3
|
-
height: 8px;
|
4
|
-
width: 8px;
|
5
|
-
z-index: 102;
|
6
|
-
box-sizing: border-box;
|
7
|
-
border: 1px solid #008CBA;
|
8
|
-
background: #008CBA;
|
9
|
-
}
|
10
|
-
|
11
|
-
div.dt-autofill-select {
|
12
|
-
position: absolute;
|
13
|
-
z-index: 1001;
|
14
|
-
background-color: #008CBA;
|
15
|
-
background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
|
16
|
-
}
|
17
|
-
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
|
18
|
-
height: 3px;
|
19
|
-
margin-top: -1px;
|
20
|
-
}
|
21
|
-
div.dt-autofill-select.left, div.dt-autofill-select.right {
|
22
|
-
width: 3px;
|
23
|
-
margin-left: -1px;
|
24
|
-
}
|
25
|
-
|
26
|
-
div.dt-autofill-list {
|
27
|
-
position: fixed;
|
28
|
-
top: 50%;
|
29
|
-
left: 50%;
|
30
|
-
width: 500px;
|
31
|
-
margin-left: -250px;
|
32
|
-
background-color: white;
|
33
|
-
border-radius: 6px;
|
34
|
-
box-shadow: 0 0 5px #555;
|
35
|
-
border: 2px solid #444;
|
36
|
-
z-index: 11;
|
37
|
-
box-sizing: border-box;
|
38
|
-
padding: 1.5em 2em;
|
39
|
-
}
|
40
|
-
div.dt-autofill-list ul {
|
41
|
-
display: table;
|
42
|
-
margin: 0;
|
43
|
-
padding: 0;
|
44
|
-
list-style: none;
|
45
|
-
width: 100%;
|
46
|
-
}
|
47
|
-
div.dt-autofill-list ul li {
|
48
|
-
display: table-row;
|
49
|
-
}
|
50
|
-
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
|
51
|
-
border-bottom: none;
|
52
|
-
}
|
53
|
-
div.dt-autofill-list ul li:hover {
|
54
|
-
background-color: #f6f6f6;
|
55
|
-
}
|
56
|
-
div.dt-autofill-list div.dt-autofill-question {
|
57
|
-
display: table-cell;
|
58
|
-
padding: 0.5em 0;
|
59
|
-
border-bottom: 1px solid #ccc;
|
60
|
-
}
|
61
|
-
div.dt-autofill-list div.dt-autofill-question input[type=number] {
|
62
|
-
padding: 6px;
|
63
|
-
width: 30px;
|
64
|
-
margin: -2px 0;
|
65
|
-
}
|
66
|
-
div.dt-autofill-list div.dt-autofill-button {
|
67
|
-
display: table-cell;
|
68
|
-
padding: 0.5em 0;
|
69
|
-
border-bottom: 1px solid #ccc;
|
70
|
-
}
|
71
|
-
|
72
|
-
div.dt-autofill-background {
|
73
|
-
position: fixed;
|
74
|
-
top: 0;
|
75
|
-
left: 0;
|
76
|
-
width: 100%;
|
77
|
-
height: 100%;
|
78
|
-
background: rgba(0, 0, 0, 0.7);
|
79
|
-
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
80
|
-
z-index: 10;
|
81
|
-
}
|
82
|
-
|
83
|
-
div.dt-autofill-list button {
|
84
|
-
margin: 0;
|
85
|
-
}
|
@@ -1,85 +0,0 @@
|
|
1
|
-
div.dt-autofill-handle {
|
2
|
-
position: absolute;
|
3
|
-
height: 8px;
|
4
|
-
width: 8px;
|
5
|
-
z-index: 102;
|
6
|
-
box-sizing: border-box;
|
7
|
-
border: 1px solid #316ad1;
|
8
|
-
background: linear-gradient(to bottom, #abcffb 0%, #4989de 100%);
|
9
|
-
}
|
10
|
-
|
11
|
-
div.dt-autofill-select {
|
12
|
-
position: absolute;
|
13
|
-
z-index: 1001;
|
14
|
-
background-color: #4989de;
|
15
|
-
background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
|
16
|
-
}
|
17
|
-
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
|
18
|
-
height: 3px;
|
19
|
-
margin-top: -1px;
|
20
|
-
}
|
21
|
-
div.dt-autofill-select.left, div.dt-autofill-select.right {
|
22
|
-
width: 3px;
|
23
|
-
margin-left: -1px;
|
24
|
-
}
|
25
|
-
|
26
|
-
div.dt-autofill-list {
|
27
|
-
position: fixed;
|
28
|
-
top: 50%;
|
29
|
-
left: 50%;
|
30
|
-
width: 500px;
|
31
|
-
margin-left: -250px;
|
32
|
-
background-color: white;
|
33
|
-
border-radius: 6px;
|
34
|
-
box-shadow: 0 0 5px #555;
|
35
|
-
border: 2px solid #444;
|
36
|
-
z-index: 11;
|
37
|
-
box-sizing: border-box;
|
38
|
-
padding: 1.5em 2em;
|
39
|
-
}
|
40
|
-
div.dt-autofill-list ul {
|
41
|
-
display: table;
|
42
|
-
margin: 0;
|
43
|
-
padding: 0;
|
44
|
-
list-style: none;
|
45
|
-
width: 100%;
|
46
|
-
}
|
47
|
-
div.dt-autofill-list ul li {
|
48
|
-
display: table-row;
|
49
|
-
}
|
50
|
-
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
|
51
|
-
border-bottom: none;
|
52
|
-
}
|
53
|
-
div.dt-autofill-list ul li:hover {
|
54
|
-
background-color: #f6f6f6;
|
55
|
-
}
|
56
|
-
div.dt-autofill-list div.dt-autofill-question {
|
57
|
-
display: table-cell;
|
58
|
-
padding: 0.5em 0;
|
59
|
-
border-bottom: 1px solid #ccc;
|
60
|
-
}
|
61
|
-
div.dt-autofill-list div.dt-autofill-question input[type=number] {
|
62
|
-
padding: 6px;
|
63
|
-
width: 30px;
|
64
|
-
margin: -2px 0;
|
65
|
-
}
|
66
|
-
div.dt-autofill-list div.dt-autofill-button {
|
67
|
-
display: table-cell;
|
68
|
-
padding: 0.5em 0;
|
69
|
-
border-bottom: 1px solid #ccc;
|
70
|
-
}
|
71
|
-
|
72
|
-
div.dt-autofill-background {
|
73
|
-
position: fixed;
|
74
|
-
top: 0;
|
75
|
-
left: 0;
|
76
|
-
width: 100%;
|
77
|
-
height: 100%;
|
78
|
-
background: rgba(0, 0, 0, 0.7);
|
79
|
-
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
80
|
-
z-index: 10;
|
81
|
-
}
|
82
|
-
|
83
|
-
div.dt-autofill-list button {
|
84
|
-
padding: 0.35em 1em;
|
85
|
-
}
|
@@ -1,81 +0,0 @@
|
|
1
|
-
div.dt-autofill-handle {
|
2
|
-
position: absolute;
|
3
|
-
height: 8px;
|
4
|
-
width: 8px;
|
5
|
-
z-index: 102;
|
6
|
-
box-sizing: border-box;
|
7
|
-
border: 1px solid #888;
|
8
|
-
background: #888;
|
9
|
-
}
|
10
|
-
|
11
|
-
div.dt-autofill-select {
|
12
|
-
position: absolute;
|
13
|
-
z-index: 1001;
|
14
|
-
background-color: #888;
|
15
|
-
background-image: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px);
|
16
|
-
}
|
17
|
-
div.dt-autofill-select.top, div.dt-autofill-select.bottom {
|
18
|
-
height: 3px;
|
19
|
-
margin-top: -1px;
|
20
|
-
}
|
21
|
-
div.dt-autofill-select.left, div.dt-autofill-select.right {
|
22
|
-
width: 3px;
|
23
|
-
margin-left: -1px;
|
24
|
-
}
|
25
|
-
|
26
|
-
div.dt-autofill-list {
|
27
|
-
position: fixed;
|
28
|
-
top: 50%;
|
29
|
-
left: 50%;
|
30
|
-
width: 500px;
|
31
|
-
margin-left: -250px;
|
32
|
-
background-color: white;
|
33
|
-
border-radius: 6px;
|
34
|
-
box-shadow: 0 0 5px #555;
|
35
|
-
border: 2px solid #444;
|
36
|
-
z-index: 11;
|
37
|
-
box-sizing: border-box;
|
38
|
-
padding: 1.5em 2em;
|
39
|
-
}
|
40
|
-
div.dt-autofill-list ul {
|
41
|
-
display: table;
|
42
|
-
margin: 0;
|
43
|
-
padding: 0;
|
44
|
-
list-style: none;
|
45
|
-
width: 100%;
|
46
|
-
}
|
47
|
-
div.dt-autofill-list ul li {
|
48
|
-
display: table-row;
|
49
|
-
}
|
50
|
-
div.dt-autofill-list ul li:last-child div.dt-autofill-question, div.dt-autofill-list ul li:last-child div.dt-autofill-button {
|
51
|
-
border-bottom: none;
|
52
|
-
}
|
53
|
-
div.dt-autofill-list ul li:hover {
|
54
|
-
background-color: #f6f6f6;
|
55
|
-
}
|
56
|
-
div.dt-autofill-list div.dt-autofill-question {
|
57
|
-
display: table-cell;
|
58
|
-
padding: 0.5em 0;
|
59
|
-
border-bottom: 1px solid #ccc;
|
60
|
-
}
|
61
|
-
div.dt-autofill-list div.dt-autofill-question input[type=number] {
|
62
|
-
padding: 6px;
|
63
|
-
width: 30px;
|
64
|
-
margin: -2px 0;
|
65
|
-
}
|
66
|
-
div.dt-autofill-list div.dt-autofill-button {
|
67
|
-
display: table-cell;
|
68
|
-
padding: 0.5em 0;
|
69
|
-
border-bottom: 1px solid #ccc;
|
70
|
-
}
|
71
|
-
|
72
|
-
div.dt-autofill-background {
|
73
|
-
position: fixed;
|
74
|
-
top: 0;
|
75
|
-
left: 0;
|
76
|
-
width: 100%;
|
77
|
-
height: 100%;
|
78
|
-
background: rgba(0, 0, 0, 0.7);
|
79
|
-
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
80
|
-
z-index: 10;
|
81
|
-
}
|
@@ -1,158 +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-button-collection.dropdown-menu {
|
56
|
-
display: block;
|
57
|
-
z-index: 2002;
|
58
|
-
-webkit-column-gap: 8px;
|
59
|
-
-moz-column-gap: 8px;
|
60
|
-
-ms-column-gap: 8px;
|
61
|
-
-o-column-gap: 8px;
|
62
|
-
column-gap: 8px;
|
63
|
-
}
|
64
|
-
ul.dt-button-collection.dropdown-menu.fixed {
|
65
|
-
position: fixed;
|
66
|
-
top: 50%;
|
67
|
-
left: 50%;
|
68
|
-
margin-left: -75px;
|
69
|
-
border-radius: 0;
|
70
|
-
}
|
71
|
-
ul.dt-button-collection.dropdown-menu.fixed.two-column {
|
72
|
-
margin-left: -150px;
|
73
|
-
}
|
74
|
-
ul.dt-button-collection.dropdown-menu.fixed.three-column {
|
75
|
-
margin-left: -225px;
|
76
|
-
}
|
77
|
-
ul.dt-button-collection.dropdown-menu.fixed.four-column {
|
78
|
-
margin-left: -300px;
|
79
|
-
}
|
80
|
-
ul.dt-button-collection.dropdown-menu > * {
|
81
|
-
-webkit-column-break-inside: avoid;
|
82
|
-
break-inside: avoid;
|
83
|
-
}
|
84
|
-
ul.dt-button-collection.dropdown-menu.two-column {
|
85
|
-
width: 300px;
|
86
|
-
padding-bottom: 1px;
|
87
|
-
-webkit-column-count: 2;
|
88
|
-
-moz-column-count: 2;
|
89
|
-
-ms-column-count: 2;
|
90
|
-
-o-column-count: 2;
|
91
|
-
column-count: 2;
|
92
|
-
}
|
93
|
-
ul.dt-button-collection.dropdown-menu.three-column {
|
94
|
-
width: 450px;
|
95
|
-
padding-bottom: 1px;
|
96
|
-
-webkit-column-count: 3;
|
97
|
-
-moz-column-count: 3;
|
98
|
-
-ms-column-count: 3;
|
99
|
-
-o-column-count: 3;
|
100
|
-
column-count: 3;
|
101
|
-
}
|
102
|
-
ul.dt-button-collection.dropdown-menu.four-column {
|
103
|
-
width: 600px;
|
104
|
-
padding-bottom: 1px;
|
105
|
-
-webkit-column-count: 4;
|
106
|
-
-moz-column-count: 4;
|
107
|
-
-ms-column-count: 4;
|
108
|
-
-o-column-count: 4;
|
109
|
-
column-count: 4;
|
110
|
-
}
|
111
|
-
|
112
|
-
div.dt-button-background {
|
113
|
-
position: fixed;
|
114
|
-
top: 0;
|
115
|
-
left: 0;
|
116
|
-
width: 100%;
|
117
|
-
height: 100%;
|
118
|
-
z-index: 2001;
|
119
|
-
}
|
120
|
-
|
121
|
-
@media screen and (max-width: 767px) {
|
122
|
-
div.dt-buttons {
|
123
|
-
float: none;
|
124
|
-
width: 100%;
|
125
|
-
text-align: center;
|
126
|
-
margin-bottom: 0.5em;
|
127
|
-
}
|
128
|
-
div.dt-buttons a.btn {
|
129
|
-
float: none;
|
130
|
-
}
|
131
|
-
}
|
132
|
-
div.dt-buttons button.btn.processing,
|
133
|
-
div.dt-buttons div.btn.processing,
|
134
|
-
div.dt-buttons a.btn.processing {
|
135
|
-
color: rgba(0, 0, 0, 0.2);
|
136
|
-
}
|
137
|
-
div.dt-buttons button.btn.processing:after,
|
138
|
-
div.dt-buttons div.btn.processing:after,
|
139
|
-
div.dt-buttons a.btn.processing:after {
|
140
|
-
position: absolute;
|
141
|
-
top: 50%;
|
142
|
-
left: 50%;
|
143
|
-
width: 16px;
|
144
|
-
height: 16px;
|
145
|
-
margin: -8px 0 0 -8px;
|
146
|
-
box-sizing: border-box;
|
147
|
-
display: block;
|
148
|
-
content: ' ';
|
149
|
-
border: 2px solid #282828;
|
150
|
-
border-radius: 50%;
|
151
|
-
border-left-color: transparent;
|
152
|
-
border-right-color: transparent;
|
153
|
-
animation: dtb-spinner 1500ms infinite linear;
|
154
|
-
-o-animation: dtb-spinner 1500ms infinite linear;
|
155
|
-
-ms-animation: dtb-spinner 1500ms infinite linear;
|
156
|
-
-webkit-animation: dtb-spinner 1500ms infinite linear;
|
157
|
-
-moz-animation: dtb-spinner 1500ms infinite linear;
|
158
|
-
}
|