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,219 +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
|
-
ul.dt-button-collection {
|
113
|
-
-webkit-column-gap: 8px;
|
114
|
-
-moz-column-gap: 8px;
|
115
|
-
-ms-column-gap: 8px;
|
116
|
-
-o-column-gap: 8px;
|
117
|
-
column-gap: 8px;
|
118
|
-
}
|
119
|
-
ul.dt-button-collection.fixed {
|
120
|
-
position: fixed;
|
121
|
-
top: 50%;
|
122
|
-
left: 50%;
|
123
|
-
margin-left: -75px;
|
124
|
-
border-radius: 0;
|
125
|
-
}
|
126
|
-
ul.dt-button-collection.fixed.two-column {
|
127
|
-
margin-left: -150px;
|
128
|
-
}
|
129
|
-
ul.dt-button-collection.fixed.three-column {
|
130
|
-
margin-left: -225px;
|
131
|
-
}
|
132
|
-
ul.dt-button-collection.fixed.four-column {
|
133
|
-
margin-left: -300px;
|
134
|
-
}
|
135
|
-
ul.dt-button-collection > * {
|
136
|
-
-webkit-column-break-inside: avoid;
|
137
|
-
break-inside: avoid;
|
138
|
-
}
|
139
|
-
ul.dt-button-collection.two-column {
|
140
|
-
width: 300px;
|
141
|
-
padding-bottom: 1px;
|
142
|
-
-webkit-column-count: 2;
|
143
|
-
-moz-column-count: 2;
|
144
|
-
-ms-column-count: 2;
|
145
|
-
-o-column-count: 2;
|
146
|
-
column-count: 2;
|
147
|
-
}
|
148
|
-
ul.dt-button-collection.three-column {
|
149
|
-
width: 450px;
|
150
|
-
padding-bottom: 1px;
|
151
|
-
-webkit-column-count: 3;
|
152
|
-
-moz-column-count: 3;
|
153
|
-
-ms-column-count: 3;
|
154
|
-
-o-column-count: 3;
|
155
|
-
column-count: 3;
|
156
|
-
}
|
157
|
-
ul.dt-button-collection.four-column {
|
158
|
-
width: 600px;
|
159
|
-
padding-bottom: 1px;
|
160
|
-
-webkit-column-count: 4;
|
161
|
-
-moz-column-count: 4;
|
162
|
-
-ms-column-count: 4;
|
163
|
-
-o-column-count: 4;
|
164
|
-
column-count: 4;
|
165
|
-
}
|
166
|
-
ul.dt-button-collection.fixed {
|
167
|
-
max-width: none;
|
168
|
-
}
|
169
|
-
ul.dt-button-collection.fixed:before, ul.dt-button-collection.fixed:after {
|
170
|
-
display: none;
|
171
|
-
}
|
172
|
-
|
173
|
-
div.dt-button-background {
|
174
|
-
position: fixed;
|
175
|
-
top: 0;
|
176
|
-
left: 0;
|
177
|
-
width: 100%;
|
178
|
-
height: 100%;
|
179
|
-
z-index: 999;
|
180
|
-
}
|
181
|
-
|
182
|
-
@media screen and (max-width: 767px) {
|
183
|
-
div.dt-buttons {
|
184
|
-
float: none;
|
185
|
-
width: 100%;
|
186
|
-
text-align: center;
|
187
|
-
margin-bottom: 0.5em;
|
188
|
-
}
|
189
|
-
div.dt-buttons a.btn {
|
190
|
-
float: none;
|
191
|
-
}
|
192
|
-
}
|
193
|
-
div.dt-buttons button.btn.processing,
|
194
|
-
div.dt-buttons div.btn.processing,
|
195
|
-
div.dt-buttons a.btn.processing {
|
196
|
-
color: rgba(0, 0, 0, 0.2);
|
197
|
-
}
|
198
|
-
div.dt-buttons button.btn.processing:after,
|
199
|
-
div.dt-buttons div.btn.processing:after,
|
200
|
-
div.dt-buttons a.btn.processing:after {
|
201
|
-
position: absolute;
|
202
|
-
top: 50%;
|
203
|
-
left: 50%;
|
204
|
-
width: 16px;
|
205
|
-
height: 16px;
|
206
|
-
margin: -8px 0 0 -8px;
|
207
|
-
box-sizing: border-box;
|
208
|
-
display: block;
|
209
|
-
content: ' ';
|
210
|
-
border: 2px solid #282828;
|
211
|
-
border-radius: 50%;
|
212
|
-
border-left-color: transparent;
|
213
|
-
border-right-color: transparent;
|
214
|
-
animation: dtb-spinner 1500ms infinite linear;
|
215
|
-
-o-animation: dtb-spinner 1500ms infinite linear;
|
216
|
-
-ms-animation: dtb-spinner 1500ms infinite linear;
|
217
|
-
-webkit-animation: dtb-spinner 1500ms infinite linear;
|
218
|
-
-moz-animation: dtb-spinner 1500ms infinite linear;
|
219
|
-
}
|
@@ -1,354 +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
|
-
button.dt-button,
|
56
|
-
div.dt-button,
|
57
|
-
a.dt-button {
|
58
|
-
position: relative;
|
59
|
-
display: inline-block;
|
60
|
-
box-sizing: border-box;
|
61
|
-
margin-right: 0.333em;
|
62
|
-
padding: 0.5em 1em;
|
63
|
-
border: 1px solid #999;
|
64
|
-
border-radius: 2px;
|
65
|
-
cursor: pointer;
|
66
|
-
font-size: 0.88em;
|
67
|
-
color: black;
|
68
|
-
white-space: nowrap;
|
69
|
-
overflow: hidden;
|
70
|
-
background-color: #e9e9e9;
|
71
|
-
/* Fallback */
|
72
|
-
background-image: -webkit-linear-gradient(top, white 0%, #e9e9e9 100%);
|
73
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
74
|
-
background-image: -moz-linear-gradient(top, white 0%, #e9e9e9 100%);
|
75
|
-
/* FF3.6 */
|
76
|
-
background-image: -ms-linear-gradient(top, white 0%, #e9e9e9 100%);
|
77
|
-
/* IE10 */
|
78
|
-
background-image: -o-linear-gradient(top, white 0%, #e9e9e9 100%);
|
79
|
-
/* Opera 11.10+ */
|
80
|
-
background-image: linear-gradient(to bottom, white 0%, #e9e9e9 100%);
|
81
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='white', EndColorStr='#e9e9e9');
|
82
|
-
-webkit-user-select: none;
|
83
|
-
-moz-user-select: none;
|
84
|
-
-ms-user-select: none;
|
85
|
-
user-select: none;
|
86
|
-
text-decoration: none;
|
87
|
-
outline: none;
|
88
|
-
}
|
89
|
-
button.dt-button.disabled,
|
90
|
-
div.dt-button.disabled,
|
91
|
-
a.dt-button.disabled {
|
92
|
-
color: #999;
|
93
|
-
border: 1px solid #d0d0d0;
|
94
|
-
cursor: default;
|
95
|
-
background-color: #f9f9f9;
|
96
|
-
/* Fallback */
|
97
|
-
background-image: -webkit-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
|
98
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
99
|
-
background-image: -moz-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
|
100
|
-
/* FF3.6 */
|
101
|
-
background-image: -ms-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
|
102
|
-
/* IE10 */
|
103
|
-
background-image: -o-linear-gradient(top, #ffffff 0%, #f9f9f9 100%);
|
104
|
-
/* Opera 11.10+ */
|
105
|
-
background-image: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
|
106
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#ffffff', EndColorStr='#f9f9f9');
|
107
|
-
}
|
108
|
-
button.dt-button:active:not(.disabled), button.dt-button.active:not(.disabled),
|
109
|
-
div.dt-button:active:not(.disabled),
|
110
|
-
div.dt-button.active:not(.disabled),
|
111
|
-
a.dt-button:active:not(.disabled),
|
112
|
-
a.dt-button.active:not(.disabled) {
|
113
|
-
background-color: #e2e2e2;
|
114
|
-
/* Fallback */
|
115
|
-
background-image: -webkit-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
|
116
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
117
|
-
background-image: -moz-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
|
118
|
-
/* FF3.6 */
|
119
|
-
background-image: -ms-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
|
120
|
-
/* IE10 */
|
121
|
-
background-image: -o-linear-gradient(top, #f3f3f3 0%, #e2e2e2 100%);
|
122
|
-
/* Opera 11.10+ */
|
123
|
-
background-image: linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 100%);
|
124
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f3f3f3', EndColorStr='#e2e2e2');
|
125
|
-
box-shadow: inset 1px 1px 3px #999999;
|
126
|
-
}
|
127
|
-
button.dt-button:active:not(.disabled):hover:not(.disabled), button.dt-button.active:not(.disabled):hover:not(.disabled),
|
128
|
-
div.dt-button:active:not(.disabled):hover:not(.disabled),
|
129
|
-
div.dt-button.active:not(.disabled):hover:not(.disabled),
|
130
|
-
a.dt-button:active:not(.disabled):hover:not(.disabled),
|
131
|
-
a.dt-button.active:not(.disabled):hover:not(.disabled) {
|
132
|
-
box-shadow: inset 1px 1px 3px #999999;
|
133
|
-
background-color: #cccccc;
|
134
|
-
/* Fallback */
|
135
|
-
background-image: -webkit-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
|
136
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
137
|
-
background-image: -moz-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
|
138
|
-
/* FF3.6 */
|
139
|
-
background-image: -ms-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
|
140
|
-
/* IE10 */
|
141
|
-
background-image: -o-linear-gradient(top, #eaeaea 0%, #cccccc 100%);
|
142
|
-
/* Opera 11.10+ */
|
143
|
-
background-image: linear-gradient(to bottom, #eaeaea 0%, #cccccc 100%);
|
144
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#eaeaea', EndColorStr='#cccccc');
|
145
|
-
}
|
146
|
-
button.dt-button:hover,
|
147
|
-
div.dt-button:hover,
|
148
|
-
a.dt-button:hover {
|
149
|
-
text-decoration: none;
|
150
|
-
}
|
151
|
-
button.dt-button:hover:not(.disabled),
|
152
|
-
div.dt-button:hover:not(.disabled),
|
153
|
-
a.dt-button:hover:not(.disabled) {
|
154
|
-
border: 1px solid #666;
|
155
|
-
background-color: #e0e0e0;
|
156
|
-
/* Fallback */
|
157
|
-
background-image: -webkit-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
|
158
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
159
|
-
background-image: -moz-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
|
160
|
-
/* FF3.6 */
|
161
|
-
background-image: -ms-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
|
162
|
-
/* IE10 */
|
163
|
-
background-image: -o-linear-gradient(top, #f9f9f9 0%, #e0e0e0 100%);
|
164
|
-
/* Opera 11.10+ */
|
165
|
-
background-image: linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);
|
166
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f9f9f9', EndColorStr='#e0e0e0');
|
167
|
-
}
|
168
|
-
button.dt-button:focus:not(.disabled),
|
169
|
-
div.dt-button:focus:not(.disabled),
|
170
|
-
a.dt-button:focus:not(.disabled) {
|
171
|
-
border: 1px solid #426c9e;
|
172
|
-
text-shadow: 0 1px 0 #c4def1;
|
173
|
-
outline: none;
|
174
|
-
background-color: #79ace9;
|
175
|
-
/* Fallback */
|
176
|
-
background-image: -webkit-linear-gradient(top, #bddef4 0%, #79ace9 100%);
|
177
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
178
|
-
background-image: -moz-linear-gradient(top, #bddef4 0%, #79ace9 100%);
|
179
|
-
/* FF3.6 */
|
180
|
-
background-image: -ms-linear-gradient(top, #bddef4 0%, #79ace9 100%);
|
181
|
-
/* IE10 */
|
182
|
-
background-image: -o-linear-gradient(top, #bddef4 0%, #79ace9 100%);
|
183
|
-
/* Opera 11.10+ */
|
184
|
-
background-image: linear-gradient(to bottom, #bddef4 0%, #79ace9 100%);
|
185
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#bddef4', EndColorStr='#79ace9');
|
186
|
-
}
|
187
|
-
|
188
|
-
.dt-button embed {
|
189
|
-
outline: none;
|
190
|
-
}
|
191
|
-
|
192
|
-
div.dt-buttons {
|
193
|
-
position: relative;
|
194
|
-
float: left;
|
195
|
-
}
|
196
|
-
div.dt-buttons.buttons-right {
|
197
|
-
float: right;
|
198
|
-
}
|
199
|
-
|
200
|
-
div.dt-button-collection {
|
201
|
-
position: absolute;
|
202
|
-
top: 0;
|
203
|
-
left: 0;
|
204
|
-
width: 150px;
|
205
|
-
margin-top: 3px;
|
206
|
-
padding: 8px 8px 4px 8px;
|
207
|
-
border: 1px solid #ccc;
|
208
|
-
border: 1px solid rgba(0, 0, 0, 0.4);
|
209
|
-
background-color: white;
|
210
|
-
overflow: hidden;
|
211
|
-
z-index: 2002;
|
212
|
-
border-radius: 5px;
|
213
|
-
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
214
|
-
z-index: 2002;
|
215
|
-
-webkit-column-gap: 8px;
|
216
|
-
-moz-column-gap: 8px;
|
217
|
-
-ms-column-gap: 8px;
|
218
|
-
-o-column-gap: 8px;
|
219
|
-
column-gap: 8px;
|
220
|
-
}
|
221
|
-
div.dt-button-collection button.dt-button,
|
222
|
-
div.dt-button-collection div.dt-button,
|
223
|
-
div.dt-button-collection a.dt-button {
|
224
|
-
position: relative;
|
225
|
-
left: 0;
|
226
|
-
right: 0;
|
227
|
-
display: block;
|
228
|
-
float: none;
|
229
|
-
margin-bottom: 4px;
|
230
|
-
margin-right: 0;
|
231
|
-
}
|
232
|
-
div.dt-button-collection button.dt-button:active:not(.disabled), div.dt-button-collection button.dt-button.active:not(.disabled),
|
233
|
-
div.dt-button-collection div.dt-button:active:not(.disabled),
|
234
|
-
div.dt-button-collection div.dt-button.active:not(.disabled),
|
235
|
-
div.dt-button-collection a.dt-button:active:not(.disabled),
|
236
|
-
div.dt-button-collection a.dt-button.active:not(.disabled) {
|
237
|
-
background-color: #dadada;
|
238
|
-
/* Fallback */
|
239
|
-
background-image: -webkit-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
|
240
|
-
/* Chrome 10+, Saf5.1+, iOS 5+ */
|
241
|
-
background-image: -moz-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
|
242
|
-
/* FF3.6 */
|
243
|
-
background-image: -ms-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
|
244
|
-
/* IE10 */
|
245
|
-
background-image: -o-linear-gradient(top, #f0f0f0 0%, #dadada 100%);
|
246
|
-
/* Opera 11.10+ */
|
247
|
-
background-image: linear-gradient(to bottom, #f0f0f0 0%, #dadada 100%);
|
248
|
-
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#f0f0f0', EndColorStr='#dadada');
|
249
|
-
box-shadow: inset 1px 1px 3px #666;
|
250
|
-
}
|
251
|
-
div.dt-button-collection.fixed {
|
252
|
-
position: fixed;
|
253
|
-
top: 50%;
|
254
|
-
left: 50%;
|
255
|
-
margin-left: -75px;
|
256
|
-
border-radius: 0;
|
257
|
-
}
|
258
|
-
div.dt-button-collection.fixed.two-column {
|
259
|
-
margin-left: -150px;
|
260
|
-
}
|
261
|
-
div.dt-button-collection.fixed.three-column {
|
262
|
-
margin-left: -225px;
|
263
|
-
}
|
264
|
-
div.dt-button-collection.fixed.four-column {
|
265
|
-
margin-left: -300px;
|
266
|
-
}
|
267
|
-
div.dt-button-collection > * {
|
268
|
-
-webkit-column-break-inside: avoid;
|
269
|
-
break-inside: avoid;
|
270
|
-
}
|
271
|
-
div.dt-button-collection.two-column {
|
272
|
-
width: 300px;
|
273
|
-
padding-bottom: 1px;
|
274
|
-
-webkit-column-count: 2;
|
275
|
-
-moz-column-count: 2;
|
276
|
-
-ms-column-count: 2;
|
277
|
-
-o-column-count: 2;
|
278
|
-
column-count: 2;
|
279
|
-
}
|
280
|
-
div.dt-button-collection.three-column {
|
281
|
-
width: 450px;
|
282
|
-
padding-bottom: 1px;
|
283
|
-
-webkit-column-count: 3;
|
284
|
-
-moz-column-count: 3;
|
285
|
-
-ms-column-count: 3;
|
286
|
-
-o-column-count: 3;
|
287
|
-
column-count: 3;
|
288
|
-
}
|
289
|
-
div.dt-button-collection.four-column {
|
290
|
-
width: 600px;
|
291
|
-
padding-bottom: 1px;
|
292
|
-
-webkit-column-count: 4;
|
293
|
-
-moz-column-count: 4;
|
294
|
-
-ms-column-count: 4;
|
295
|
-
-o-column-count: 4;
|
296
|
-
column-count: 4;
|
297
|
-
}
|
298
|
-
|
299
|
-
div.dt-button-background {
|
300
|
-
position: fixed;
|
301
|
-
top: 0;
|
302
|
-
left: 0;
|
303
|
-
width: 100%;
|
304
|
-
height: 100%;
|
305
|
-
background: rgba(0, 0, 0, 0.7);
|
306
|
-
/* Fallback */
|
307
|
-
background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
308
|
-
/* IE10 Consumer Preview */
|
309
|
-
background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
310
|
-
/* Firefox */
|
311
|
-
background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
312
|
-
/* Opera */
|
313
|
-
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)));
|
314
|
-
/* Webkit (Safari/Chrome 10) */
|
315
|
-
background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
316
|
-
/* Webkit (Chrome 11+) */
|
317
|
-
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
318
|
-
/* W3C Markup, IE10 Release Preview */
|
319
|
-
z-index: 2001;
|
320
|
-
}
|
321
|
-
|
322
|
-
@media screen and (max-width: 640px) {
|
323
|
-
div.dt-buttons {
|
324
|
-
float: none !important;
|
325
|
-
text-align: center;
|
326
|
-
}
|
327
|
-
}
|
328
|
-
button.dt-button.processing,
|
329
|
-
div.dt-button.processing,
|
330
|
-
a.dt-button.processing {
|
331
|
-
color: rgba(0, 0, 0, 0.2);
|
332
|
-
}
|
333
|
-
button.dt-button.processing:after,
|
334
|
-
div.dt-button.processing:after,
|
335
|
-
a.dt-button.processing:after {
|
336
|
-
position: absolute;
|
337
|
-
top: 50%;
|
338
|
-
left: 50%;
|
339
|
-
width: 16px;
|
340
|
-
height: 16px;
|
341
|
-
margin: -8px 0 0 -8px;
|
342
|
-
box-sizing: border-box;
|
343
|
-
display: block;
|
344
|
-
content: ' ';
|
345
|
-
border: 2px solid #282828;
|
346
|
-
border-radius: 50%;
|
347
|
-
border-left-color: transparent;
|
348
|
-
border-right-color: transparent;
|
349
|
-
animation: dtb-spinner 1500ms infinite linear;
|
350
|
-
-o-animation: dtb-spinner 1500ms infinite linear;
|
351
|
-
-ms-animation: dtb-spinner 1500ms infinite linear;
|
352
|
-
-webkit-animation: dtb-spinner 1500ms infinite linear;
|
353
|
-
-moz-animation: dtb-spinner 1500ms infinite linear;
|
354
|
-
}
|