jquery-datatables 1.10.15 → 1.10.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +23 -16
- data/Rakefile +46 -27
- data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +3 -3
- data/app/assets/javascripts/datatables/dataTables.jqueryui.js +6 -6
- data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +5 -5
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +2 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +74 -69
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +3 -1
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +86 -63
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +16 -22
- data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +131 -3
- data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +12 -6
- data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +8 -5
- data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +14 -9
- data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +103 -8
- data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +106 -6
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +1 -1
- data/app/assets/javascripts/datatables/extensions/RowGroup/dataTables.rowGroup.js +8 -6
- data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +68 -35
- data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +71 -10
- data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +11 -7
- data/app/assets/javascripts/datatables/jquery.dataTables.js +19 -121
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.scss +252 -0
- data/app/assets/stylesheets/datatables/{dataTables.bootstrap2.css → dataTables.bootstrap2.scss} +6 -6
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.scss +262 -0
- data/app/assets/stylesheets/datatables/dataTables.foundation.scss +154 -0
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.scss +93 -0
- data/app/assets/stylesheets/datatables/dataTables.material.scss +101 -0
- data/app/assets/stylesheets/datatables/dataTables.semanticui.scss +138 -0
- data/app/assets/stylesheets/datatables/dataTables.uikit.scss +195 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.scss +125 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.scss +13 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.scss +40 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.scss +53 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.scss +141 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.scss +82 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.scss +98 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.scss +53 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.scss +50 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.scss +11 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.scss +22 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/{fixedColumns.foundation.css → fixedColumns.foundation.scss} +15 -6
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.scss +16 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.scss +41 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap4.css → fixedHeader.bootstrap.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.foundation.css → fixedHeader.bootstrap4.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.scss +21 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.bootstrap.css → fixedHeader.foundation.scss} +6 -5
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/{fixedHeader.semanticui.css → fixedHeader.jqueryui.scss} +7 -3
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.scss +16 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.scss +8 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.scss +240 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.scss +10 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/{semanticui.scss → rowReorder.bootstrap4.scss} +0 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.scss +26 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.scss +9 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.scss +36 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.scss +31 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.scss +2 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.scss +17 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.scss +143 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.scss +18 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.scss +4 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.scss +14 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables.scss +599 -0
- data/lib/generators/jquery/datatables/install_generator.rb +1 -1
- data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/bootstrap.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/bootstrap4.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/foundation.js.tt +4 -4
- data/lib/generators/jquery/datatables/templates/foundation.scss.tt +33 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +7 -1
- data/lib/generators/jquery/datatables/templates/jqueryui.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/material.js.tt +3 -1
- data/lib/generators/jquery/datatables/templates/material.scss.tt +1 -0
- data/lib/generators/jquery/datatables/templates/regular.js.tt +4 -3
- data/lib/generators/jquery/datatables/templates/regular.scss.tt +33 -0
- data/lib/generators/jquery/datatables/templates/semanticui.js.tt +4 -2
- data/lib/generators/jquery/datatables/templates/semanticui.scss.tt +15 -0
- data/lib/generators/jquery/datatables/templates/uikit.js.tt +4 -2
- data/lib/generators/jquery/datatables/templates/uikit.scss.tt +1 -0
- data/lib/jquery-datatables/version.rb +1 -1
- metadata +86 -90
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +0 -184
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +0 -194
- data/app/assets/stylesheets/datatables/dataTables.foundation.css +0 -118
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +0 -482
- data/app/assets/stylesheets/datatables/dataTables.material.css +0 -87
- data/app/assets/stylesheets/datatables/dataTables.semanticui.css +0 -102
- data/app/assets/stylesheets/datatables/dataTables.uikit.css +0 -146
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +0 -92
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +0 -85
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +0 -85
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +0 -81
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +0 -158
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +0 -219
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +0 -354
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +0 -189
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +0 -218
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +0 -171
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +0 -11
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +0 -44
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +0 -44
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +0 -18
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +0 -8
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +0 -16
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +0 -19
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +0 -15
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +0 -5
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +0 -178
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +0 -178
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +0 -181
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.bootstrap4.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.dataTables.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.foundation.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.jqueryui.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowGroup/rowGroup.semanticui.css +0 -4
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +0 -22
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +0 -24
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +0 -24
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +0 -17
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +0 -20
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +0 -115
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +0 -115
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +0 -105
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +0 -117
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +0 -105
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +0 -110
- data/app/assets/stylesheets/datatables/jquery.dataTables.css +0 -455
- data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +0 -416
- data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/bootstrap2.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/bootstrap2.js.tt +0 -22
- data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/foundation.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/material.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/regular.css.tt +0 -15
- data/lib/generators/jquery/datatables/templates/semanticui.css.tt +0 -16
- data/lib/generators/jquery/datatables/templates/uikit.css.tt +0 -15
@@ -0,0 +1,125 @@
|
|
1
|
+
|
2
|
+
$autofill-define-button: true !default;
|
3
|
+
$autofill-outline: #4989de !default;
|
4
|
+
$autofill-handle-border: 1px solid #316ad1 !default;
|
5
|
+
$autofill-handle-background: linear-gradient(to bottom, #abcffb 0%, #4989de 100%) !default;
|
6
|
+
|
7
|
+
|
8
|
+
div.dt-autofill-handle {
|
9
|
+
position: absolute;
|
10
|
+
height: 8px;
|
11
|
+
width: 8px;
|
12
|
+
z-index: 102;
|
13
|
+
|
14
|
+
box-sizing: border-box;
|
15
|
+
border: $autofill-handle-border;
|
16
|
+
background: $autofill-handle-background;
|
17
|
+
}
|
18
|
+
|
19
|
+
div.dt-autofill-select {
|
20
|
+
position: absolute;
|
21
|
+
z-index: 1001;
|
22
|
+
|
23
|
+
background-color: $autofill-outline;
|
24
|
+
background-image: repeating-linear-gradient(45deg,
|
25
|
+
transparent,
|
26
|
+
transparent 5px,
|
27
|
+
rgba(255,255,255,.5) 5px,
|
28
|
+
rgba(255,255,255,.5) 10px
|
29
|
+
);
|
30
|
+
|
31
|
+
&.top,
|
32
|
+
&.bottom {
|
33
|
+
height: 3px;
|
34
|
+
margin-top: -1px;
|
35
|
+
}
|
36
|
+
|
37
|
+
&.left,
|
38
|
+
&.right {
|
39
|
+
width: 3px;
|
40
|
+
margin-left: -1px;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
div.dt-autofill-list {
|
45
|
+
position: fixed;
|
46
|
+
top: 50%;
|
47
|
+
left: 50%;
|
48
|
+
width: 500px;
|
49
|
+
margin-left: -250px;
|
50
|
+
// margin-top is set by JS
|
51
|
+
background-color: white;
|
52
|
+
border-radius: 6px;
|
53
|
+
box-shadow: 0 0 5px #555;
|
54
|
+
border: 2px solid #444;
|
55
|
+
z-index: 11;
|
56
|
+
box-sizing: border-box;
|
57
|
+
padding: 1.5em 2em;
|
58
|
+
|
59
|
+
ul {
|
60
|
+
display: table;
|
61
|
+
margin: 0;
|
62
|
+
padding: 0;
|
63
|
+
list-style: none;
|
64
|
+
width: 100%;
|
65
|
+
|
66
|
+
li {
|
67
|
+
display: table-row;
|
68
|
+
|
69
|
+
&:last-child div.dt-autofill-question,
|
70
|
+
&:last-child div.dt-autofill-button, {
|
71
|
+
border-bottom: none;
|
72
|
+
}
|
73
|
+
|
74
|
+
&:hover {
|
75
|
+
background-color: #f6f6f6;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
div.dt-autofill-question {
|
81
|
+
display: table-cell;
|
82
|
+
padding: 0.5em 0;
|
83
|
+
border-bottom: 1px solid #ccc;
|
84
|
+
|
85
|
+
input[type=number] {
|
86
|
+
padding: 6px;
|
87
|
+
width: 30px;
|
88
|
+
margin: -2px 0;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
div.dt-autofill-button {
|
93
|
+
display: table-cell;
|
94
|
+
padding: 0.5em 0;
|
95
|
+
border-bottom: 1px solid #ccc;
|
96
|
+
|
97
|
+
@if $autofill-define-button {
|
98
|
+
button {
|
99
|
+
color: white;
|
100
|
+
margin: 0;
|
101
|
+
padding: 6px 12px;
|
102
|
+
text-align: center;
|
103
|
+
border: 1px solid #2e6da4;
|
104
|
+
background-color: #337ab7;
|
105
|
+
border-radius: 4px;
|
106
|
+
cursor: pointer;
|
107
|
+
vertical-align: middle;
|
108
|
+
}
|
109
|
+
}
|
110
|
+
}
|
111
|
+
}
|
112
|
+
|
113
|
+
div.dt-autofill-background {
|
114
|
+
position: fixed;
|
115
|
+
top: 0;
|
116
|
+
left: 0;
|
117
|
+
width: 100%;
|
118
|
+
height: 100%;
|
119
|
+
|
120
|
+
background: rgba(0, 0, 0, 0.7); // fallback
|
121
|
+
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
122
|
+
|
123
|
+
z-index: 10;
|
124
|
+
}
|
125
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
|
2
|
+
@import 'mixins.scss';
|
3
|
+
@import 'common.scss';
|
4
|
+
|
5
|
+
ul.dt-button-collection.dropdown-menu {
|
6
|
+
display: block;
|
7
|
+
z-index: 2002;
|
8
|
+
|
9
|
+
@include dtb-fixed-collection();
|
10
|
+
}
|
11
|
+
|
12
|
+
div.dt-button-background {
|
13
|
+
position: fixed;
|
14
|
+
top: 0;
|
15
|
+
left: 0;
|
16
|
+
width: 100%;
|
17
|
+
height: 100%;
|
18
|
+
z-index: 2001;
|
19
|
+
}
|
20
|
+
|
21
|
+
@media screen and (max-width: 767px) {
|
22
|
+
div.dt-buttons {
|
23
|
+
float: none;
|
24
|
+
width: 100%;
|
25
|
+
text-align: center;
|
26
|
+
margin-bottom: 0.5em;
|
27
|
+
|
28
|
+
a.btn {
|
29
|
+
float: none;
|
30
|
+
}
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
div.dt-buttons {
|
35
|
+
button.btn.processing,
|
36
|
+
div.btn.processing,
|
37
|
+
a.btn.processing {
|
38
|
+
@include dtb-processing();
|
39
|
+
}
|
40
|
+
}
|
@@ -0,0 +1,53 @@
|
|
1
|
+
|
2
|
+
@import 'mixins.scss';
|
3
|
+
@import 'common.scss';
|
4
|
+
|
5
|
+
ul.dt-button-collection.dropdown-menu {
|
6
|
+
display: block;
|
7
|
+
z-index: 2002;
|
8
|
+
|
9
|
+
@include dtb-fixed-collection();
|
10
|
+
}
|
11
|
+
|
12
|
+
ul.dt-button-collection {
|
13
|
+
@include dtb-fixed-collection();
|
14
|
+
|
15
|
+
&.fixed {
|
16
|
+
max-width: none;
|
17
|
+
|
18
|
+
&:before,
|
19
|
+
&:after {
|
20
|
+
display: none;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
}
|
24
|
+
|
25
|
+
div.dt-button-background {
|
26
|
+
position: fixed;
|
27
|
+
top: 0;
|
28
|
+
left: 0;
|
29
|
+
width: 100%;
|
30
|
+
height: 100%;
|
31
|
+
z-index: 999;
|
32
|
+
}
|
33
|
+
|
34
|
+
@media screen and (max-width: 767px) {
|
35
|
+
div.dt-buttons {
|
36
|
+
float: none;
|
37
|
+
width: 100%;
|
38
|
+
text-align: center;
|
39
|
+
margin-bottom: 0.5em;
|
40
|
+
|
41
|
+
a.btn {
|
42
|
+
float: none;
|
43
|
+
}
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
div.dt-buttons {
|
48
|
+
button.btn.processing,
|
49
|
+
div.btn.processing,
|
50
|
+
a.btn.processing {
|
51
|
+
@include dtb-processing();
|
52
|
+
}
|
53
|
+
}
|
@@ -0,0 +1,141 @@
|
|
1
|
+
|
2
|
+
@import 'mixins.scss';
|
3
|
+
@import 'common.scss';
|
4
|
+
|
5
|
+
button.dt-button,
|
6
|
+
div.dt-button,
|
7
|
+
a.dt-button {
|
8
|
+
position: relative;
|
9
|
+
display: inline-block;
|
10
|
+
box-sizing: border-box;
|
11
|
+
margin-right: 0.333em;
|
12
|
+
padding: 0.5em 1em;
|
13
|
+
border: 1px solid #999;
|
14
|
+
border-radius: 2px;
|
15
|
+
cursor: pointer;
|
16
|
+
font-size: 0.88em;
|
17
|
+
color: black;
|
18
|
+
//box-shadow: 1px 1px 3px #ccc;
|
19
|
+
white-space: nowrap;
|
20
|
+
overflow: hidden;
|
21
|
+
@include dtb-two-stop-gradient(white, #e9e9e9);
|
22
|
+
-webkit-user-select: none;
|
23
|
+
-moz-user-select: none;
|
24
|
+
-ms-user-select: none;
|
25
|
+
user-select: none;
|
26
|
+
text-decoration: none;
|
27
|
+
outline: none;
|
28
|
+
|
29
|
+
&.disabled {
|
30
|
+
color: #999;
|
31
|
+
border: 1px solid #d0d0d0;
|
32
|
+
cursor: default;
|
33
|
+
@include dtb-two-stop-gradient(#ffffff, #f9f9f9);
|
34
|
+
}
|
35
|
+
|
36
|
+
&:active:not(.disabled),
|
37
|
+
&.active:not(.disabled) {
|
38
|
+
@include dtb-two-stop-gradient(#f3f3f3, #e2e2e2);
|
39
|
+
box-shadow: inset 1px 1px 3px #999999;
|
40
|
+
|
41
|
+
&:hover:not(.disabled) {
|
42
|
+
box-shadow: inset 1px 1px 3px #999999;
|
43
|
+
@include dtb-two-stop-gradient(#eaeaea, #cccccc);
|
44
|
+
}
|
45
|
+
}
|
46
|
+
|
47
|
+
&:hover {
|
48
|
+
text-decoration: none;
|
49
|
+
}
|
50
|
+
|
51
|
+
&:hover:not(.disabled) {
|
52
|
+
border: 1px solid #666;
|
53
|
+
@include dtb-two-stop-gradient(#f9f9f9, #e0e0e0);
|
54
|
+
}
|
55
|
+
|
56
|
+
&:focus:not(.disabled) {
|
57
|
+
border: 1px solid #426c9e;
|
58
|
+
text-shadow: 0 1px 0 #c4def1;
|
59
|
+
outline: none;
|
60
|
+
@include dtb-two-stop-gradient(#bddef4, #79ace9);
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
|
65
|
+
.dt-button embed {
|
66
|
+
outline: none;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
div.dt-buttons {
|
71
|
+
position: relative;
|
72
|
+
float: left;
|
73
|
+
|
74
|
+
&.buttons-right {
|
75
|
+
float: right;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
div.dt-button-collection {
|
80
|
+
position: absolute;
|
81
|
+
top: 0;
|
82
|
+
left: 0;
|
83
|
+
width: 150px;
|
84
|
+
margin-top: 3px;
|
85
|
+
padding: 8px 8px 4px 8px;
|
86
|
+
border: 1px solid #ccc;
|
87
|
+
border: 1px solid rgba( 0, 0, 0, 0.4 );
|
88
|
+
background-color: white;
|
89
|
+
overflow: hidden;
|
90
|
+
z-index: 2002;
|
91
|
+
border-radius: 5px;
|
92
|
+
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
93
|
+
|
94
|
+
z-index: 2002;
|
95
|
+
|
96
|
+
button.dt-button,
|
97
|
+
div.dt-button,
|
98
|
+
a.dt-button {
|
99
|
+
position: relative;
|
100
|
+
left: 0;
|
101
|
+
right: 0;
|
102
|
+
|
103
|
+
display: block;
|
104
|
+
float: none;
|
105
|
+
margin-bottom: 4px;
|
106
|
+
margin-right: 0;
|
107
|
+
|
108
|
+
&:active:not(.disabled),
|
109
|
+
&.active:not(.disabled) {
|
110
|
+
@include dtb-two-stop-gradient(#f0f0f0, #dadada);
|
111
|
+
box-shadow: inset 1px 1px 3px #666;
|
112
|
+
}
|
113
|
+
}
|
114
|
+
|
115
|
+
@include dtb-fixed-collection();
|
116
|
+
}
|
117
|
+
|
118
|
+
div.dt-button-background {
|
119
|
+
position: fixed;
|
120
|
+
top: 0;
|
121
|
+
left: 0;
|
122
|
+
width: 100%;
|
123
|
+
height: 100%;
|
124
|
+
|
125
|
+
@include dtb-radial-gradient( rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7) );
|
126
|
+
|
127
|
+
z-index: 2001;
|
128
|
+
}
|
129
|
+
|
130
|
+
@media screen and (max-width: 640px) {
|
131
|
+
div.dt-buttons {
|
132
|
+
float: none !important;
|
133
|
+
text-align: center;
|
134
|
+
}
|
135
|
+
}
|
136
|
+
|
137
|
+
button.dt-button.processing,
|
138
|
+
div.dt-button.processing,
|
139
|
+
a.dt-button.processing {
|
140
|
+
@include dtb-processing();
|
141
|
+
}
|
@@ -0,0 +1,82 @@
|
|
1
|
+
|
2
|
+
@import 'mixins.scss';
|
3
|
+
@import 'common.scss';
|
4
|
+
|
5
|
+
ul.dt-buttons {
|
6
|
+
li {
|
7
|
+
margin: 0;
|
8
|
+
}
|
9
|
+
|
10
|
+
li.active a {
|
11
|
+
box-shadow: inset 0 0 10px rgba(0,0,0,.6);
|
12
|
+
}
|
13
|
+
}
|
14
|
+
|
15
|
+
ul.dt-buttons.button-group a {
|
16
|
+
margin-bottom: 0; // Foundation has a -2px margin, but that causes the
|
17
|
+
// active class to look wrong
|
18
|
+
}
|
19
|
+
|
20
|
+
ul.dt-button-collection.f-dropdown {
|
21
|
+
@include dtb-fixed-collection();
|
22
|
+
|
23
|
+
&.fixed {
|
24
|
+
max-width: none;
|
25
|
+
|
26
|
+
&:before,
|
27
|
+
&:after {
|
28
|
+
display: none;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
div.dt-button-background {
|
34
|
+
position: fixed;
|
35
|
+
top: 0;
|
36
|
+
left: 0;
|
37
|
+
width: 100%;
|
38
|
+
height: 100%;
|
39
|
+
z-index: 88;
|
40
|
+
}
|
41
|
+
|
42
|
+
@media screen and (max-width: 767px) {
|
43
|
+
ul.dt-buttons {
|
44
|
+
float: none;
|
45
|
+
width: 100%;
|
46
|
+
text-align: center;
|
47
|
+
margin-bottom: 0.5rem;
|
48
|
+
|
49
|
+
li {
|
50
|
+
float: none;
|
51
|
+
}
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
|
56
|
+
// Foundation 6
|
57
|
+
div.button-group.stacked.dropdown-pane {
|
58
|
+
margin-top: 2px;
|
59
|
+
padding: 1px;
|
60
|
+
z-index: 89;
|
61
|
+
|
62
|
+
a.button {
|
63
|
+
margin-bottom: 1px;
|
64
|
+
border-right: none;
|
65
|
+
|
66
|
+
&:last-child {
|
67
|
+
margin-bottom: 0;
|
68
|
+
}
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
div.dt-buttons {
|
73
|
+
button.button.processing,
|
74
|
+
div.button.processing,
|
75
|
+
a.button.processing {
|
76
|
+
@include dtb-processing();
|
77
|
+
|
78
|
+
color: rgba( 255, 255, 255, 0.2 );
|
79
|
+
border-top-color: white;
|
80
|
+
border-bottom-color: white;
|
81
|
+
}
|
82
|
+
}
|