jquery-datatables 1.10.12
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +23 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +27 -0
- data/README.md +118 -0
- data/Rakefile +166 -0
- data/app/assets/images/datatables/sort_asc.png +0 -0
- data/app/assets/images/datatables/sort_asc_disabled.png +0 -0
- data/app/assets/images/datatables/sort_both.png +0 -0
- data/app/assets/images/datatables/sort_desc.png +0 -0
- data/app/assets/images/datatables/sort_desc_disabled.png +0 -0
- data/app/assets/javascripts/datatables/dataTables.bootstrap.js +182 -0
- data/app/assets/javascripts/datatables/dataTables.bootstrap4.js +184 -0
- data/app/assets/javascripts/datatables/dataTables.foundation.js +174 -0
- data/app/assets/javascripts/datatables/dataTables.jqueryui.js +164 -0
- data/app/assets/javascripts/datatables/dataTables.material.js +191 -0
- data/app/assets/javascripts/datatables/dataTables.semanticui.js +208 -0
- data/app/assets/javascripts/datatables/dataTables.uikit.js +176 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.bootstrap.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.bootstrap4.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.foundation.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.jqueryui.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/autoFill.semanticui.js +43 -0
- data/app/assets/javascripts/datatables/extensions/AutoFill/dataTables.autoFill.js +1036 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap.js +68 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.bootstrap4.js +60 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.colVis.js +199 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.flash.js +1325 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.foundation.js +85 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.html5.js +1322 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.jqueryui.js +62 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.print.js +172 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/buttons.semanticui.js +57 -0
- data/app/assets/javascripts/datatables/extensions/Buttons/dataTables.buttons.js +1634 -0
- data/app/assets/javascripts/datatables/extensions/ColReorder/dataTables.colReorder.js +1335 -0
- data/app/assets/javascripts/datatables/extensions/FixedColumns/dataTables.fixedColumns.js +1623 -0
- data/app/assets/javascripts/datatables/extensions/FixedHeader/dataTables.fixedHeader.js +672 -0
- data/app/assets/javascripts/datatables/extensions/KeyTable/dataTables.keyTable.js +883 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/dataTables.responsive.js +1232 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap.js +81 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.bootstrap4.js +81 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.foundation.js +62 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.jqueryui.js +63 -0
- data/app/assets/javascripts/datatables/extensions/Responsive/responsive.semanticui.js +77 -0
- data/app/assets/javascripts/datatables/extensions/RowReorder/dataTables.rowReorder.js +709 -0
- data/app/assets/javascripts/datatables/extensions/Scroller/dataTables.scroller.js +1349 -0
- data/app/assets/javascripts/datatables/extensions/Select/dataTables.select.js +1109 -0
- data/app/assets/javascripts/datatables/jquery.dataTables.js +15278 -0
- data/app/assets/media/swf/flashExport.swf +0 -0
- data/app/assets/stylesheets/datatables/dataTables.bootstrap.css +185 -0
- data/app/assets/stylesheets/datatables/dataTables.bootstrap4.css +193 -0
- data/app/assets/stylesheets/datatables/dataTables.foundation.css +116 -0
- data/app/assets/stylesheets/datatables/dataTables.jqueryui.css +481 -0
- data/app/assets/stylesheets/datatables/dataTables.material.css +87 -0
- data/app/assets/stylesheets/datatables/dataTables.semanticui.css +103 -0
- data/app/assets/stylesheets/datatables/dataTables.uikit.css +146 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap.css +81 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.bootstrap4.css +81 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.dataTables.css +92 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.foundation.css +85 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.jqueryui.css +85 -0
- data/app/assets/stylesheets/datatables/extensions/AutoFill/autoFill.semanticui.css +81 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap.css +102 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.bootstrap4.css +163 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.dataTables.css +298 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.foundation.css +129 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.jqueryui.css +162 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/buttons.semanticui.css +114 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/common.scss +27 -0
- data/app/assets/stylesheets/datatables/extensions/Buttons/mixins.scss +89 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.bootstrap4.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.dataTables.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.foundation.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.jqueryui.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/ColReorder/colReorder.semanticui.css +11 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap.css +44 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.bootstrap4.css +44 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.dataTables.css +18 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.foundation.css +27 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.jqueryui.css +8 -0
- data/app/assets/stylesheets/datatables/extensions/FixedColumns/fixedColumns.semanticui.css +16 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.bootstrap.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.bootstrap4.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.dataTables.css +19 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.foundation.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.jqueryui.css +15 -0
- data/app/assets/stylesheets/datatables/extensions/FixedHeader/fixedHeader.semanticui.css +14 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.bootstrap4.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.dataTables.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.foundation.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.jqueryui.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/KeyTable/keyTable.semanticui.css +5 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.bootstrap4.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.dataTables.css +178 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.foundation.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.jqueryui.css +178 -0
- data/app/assets/stylesheets/datatables/extensions/Responsive/responsive.semanticui.css +181 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.bootstrap4.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.dataTables.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.foundation.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.jqueryui.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/rowReorder.semanticui.css +22 -0
- data/app/assets/stylesheets/datatables/extensions/RowReorder/semanticui.scss +5 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap.css +24 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.bootstrap4.css +24 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.dataTables.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.foundation.css +17 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.jqueryui.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/Scroller/scroller.semanticui.css +20 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap.css +110 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.bootstrap4.css +110 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.dataTables.css +100 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.foundation.css +112 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.jqueryui.css +100 -0
- data/app/assets/stylesheets/datatables/extensions/Select/select.semanticui.css +105 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables.css +452 -0
- data/app/assets/stylesheets/datatables/jquery.dataTables_themeroller.css +416 -0
- data/jquery-datatables.gemspec +27 -0
- data/lib/generators/jquery/datatables/install_generator.rb +63 -0
- data/lib/generators/jquery/datatables/templates/bootstrap.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap.js.tt +22 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/bootstrap4.js.tt +22 -0
- data/lib/generators/jquery/datatables/templates/foundation.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/foundation.js.tt +24 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/jqueryui.js.tt +18 -0
- data/lib/generators/jquery/datatables/templates/material.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/material.js.tt +19 -0
- data/lib/generators/jquery/datatables/templates/regular.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/regular.js.tt +18 -0
- data/lib/generators/jquery/datatables/templates/semanticui.css.tt +16 -0
- data/lib/generators/jquery/datatables/templates/semanticui.js.tt +22 -0
- data/lib/generators/jquery/datatables/templates/uikit.css.tt +15 -0
- data/lib/generators/jquery/datatables/templates/uikit.js.tt +19 -0
- data/lib/jquery-datatables.rb +26 -0
- data/lib/jquery-datatables/engine.rb +11 -0
- data/lib/jquery-datatables/version.rb +6 -0
- metadata +269 -0
@@ -0,0 +1,92 @@
|
|
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
|
+
}
|
@@ -0,0 +1,85 @@
|
|
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
|
+
}
|
@@ -0,0 +1,85 @@
|
|
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
|
+
}
|
@@ -0,0 +1,81 @@
|
|
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
|
+
}
|
@@ -0,0 +1,102 @@
|
|
1
|
+
div.dt-button-info {
|
2
|
+
position: fixed;
|
3
|
+
top: 50%;
|
4
|
+
left: 50%;
|
5
|
+
width: 400px;
|
6
|
+
margin-top: -100px;
|
7
|
+
margin-left: -200px;
|
8
|
+
background-color: white;
|
9
|
+
border: 2px solid #111;
|
10
|
+
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
|
11
|
+
border-radius: 3px;
|
12
|
+
text-align: center;
|
13
|
+
z-index: 21;
|
14
|
+
}
|
15
|
+
div.dt-button-info h2 {
|
16
|
+
padding: 0.5em;
|
17
|
+
margin: 0;
|
18
|
+
font-weight: normal;
|
19
|
+
border-bottom: 1px solid #ddd;
|
20
|
+
background-color: #f3f3f3;
|
21
|
+
}
|
22
|
+
div.dt-button-info > div {
|
23
|
+
padding: 1em;
|
24
|
+
}
|
25
|
+
|
26
|
+
ul.dt-button-collection.dropdown-menu {
|
27
|
+
display: block;
|
28
|
+
z-index: 2002;
|
29
|
+
-webkit-column-gap: 8px;
|
30
|
+
-moz-column-gap: 8px;
|
31
|
+
-ms-column-gap: 8px;
|
32
|
+
-o-column-gap: 8px;
|
33
|
+
column-gap: 8px;
|
34
|
+
}
|
35
|
+
ul.dt-button-collection.dropdown-menu.fixed {
|
36
|
+
position: fixed;
|
37
|
+
top: 50%;
|
38
|
+
left: 50%;
|
39
|
+
margin-left: -75px;
|
40
|
+
border-radius: 0;
|
41
|
+
}
|
42
|
+
ul.dt-button-collection.dropdown-menu.fixed.two-column {
|
43
|
+
margin-left: -150px;
|
44
|
+
}
|
45
|
+
ul.dt-button-collection.dropdown-menu.fixed.three-column {
|
46
|
+
margin-left: -225px;
|
47
|
+
}
|
48
|
+
ul.dt-button-collection.dropdown-menu.fixed.four-column {
|
49
|
+
margin-left: -300px;
|
50
|
+
}
|
51
|
+
ul.dt-button-collection.dropdown-menu > * {
|
52
|
+
-webkit-column-break-inside: avoid;
|
53
|
+
break-inside: avoid;
|
54
|
+
}
|
55
|
+
ul.dt-button-collection.dropdown-menu.two-column {
|
56
|
+
width: 300px;
|
57
|
+
padding-bottom: 1px;
|
58
|
+
-webkit-column-count: 2;
|
59
|
+
-moz-column-count: 2;
|
60
|
+
-ms-column-count: 2;
|
61
|
+
-o-column-count: 2;
|
62
|
+
column-count: 2;
|
63
|
+
}
|
64
|
+
ul.dt-button-collection.dropdown-menu.three-column {
|
65
|
+
width: 450px;
|
66
|
+
padding-bottom: 1px;
|
67
|
+
-webkit-column-count: 3;
|
68
|
+
-moz-column-count: 3;
|
69
|
+
-ms-column-count: 3;
|
70
|
+
-o-column-count: 3;
|
71
|
+
column-count: 3;
|
72
|
+
}
|
73
|
+
ul.dt-button-collection.dropdown-menu.four-column {
|
74
|
+
width: 600px;
|
75
|
+
padding-bottom: 1px;
|
76
|
+
-webkit-column-count: 4;
|
77
|
+
-moz-column-count: 4;
|
78
|
+
-ms-column-count: 4;
|
79
|
+
-o-column-count: 4;
|
80
|
+
column-count: 4;
|
81
|
+
}
|
82
|
+
|
83
|
+
div.dt-button-background {
|
84
|
+
position: fixed;
|
85
|
+
top: 0;
|
86
|
+
left: 0;
|
87
|
+
width: 100%;
|
88
|
+
height: 100%;
|
89
|
+
z-index: 2001;
|
90
|
+
}
|
91
|
+
|
92
|
+
@media screen and (max-width: 767px) {
|
93
|
+
div.dt-buttons {
|
94
|
+
float: none;
|
95
|
+
width: 100%;
|
96
|
+
text-align: center;
|
97
|
+
margin-bottom: 0.5em;
|
98
|
+
}
|
99
|
+
div.dt-buttons a.btn {
|
100
|
+
float: none;
|
101
|
+
}
|
102
|
+
}
|