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,129 @@
|
|
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-buttons li {
|
27
|
+
margin: 0;
|
28
|
+
}
|
29
|
+
ul.dt-buttons li.active a {
|
30
|
+
box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
|
31
|
+
}
|
32
|
+
|
33
|
+
ul.dt-buttons.button-group a {
|
34
|
+
margin-bottom: 0;
|
35
|
+
}
|
36
|
+
|
37
|
+
ul.dt-button-collection.f-dropdown {
|
38
|
+
-webkit-column-gap: 8px;
|
39
|
+
-moz-column-gap: 8px;
|
40
|
+
-ms-column-gap: 8px;
|
41
|
+
-o-column-gap: 8px;
|
42
|
+
column-gap: 8px;
|
43
|
+
}
|
44
|
+
ul.dt-button-collection.f-dropdown.fixed {
|
45
|
+
position: fixed;
|
46
|
+
top: 50%;
|
47
|
+
left: 50%;
|
48
|
+
margin-left: -75px;
|
49
|
+
border-radius: 0;
|
50
|
+
}
|
51
|
+
ul.dt-button-collection.f-dropdown.fixed.two-column {
|
52
|
+
margin-left: -150px;
|
53
|
+
}
|
54
|
+
ul.dt-button-collection.f-dropdown.fixed.three-column {
|
55
|
+
margin-left: -225px;
|
56
|
+
}
|
57
|
+
ul.dt-button-collection.f-dropdown.fixed.four-column {
|
58
|
+
margin-left: -300px;
|
59
|
+
}
|
60
|
+
ul.dt-button-collection.f-dropdown > * {
|
61
|
+
-webkit-column-break-inside: avoid;
|
62
|
+
break-inside: avoid;
|
63
|
+
}
|
64
|
+
ul.dt-button-collection.f-dropdown.two-column {
|
65
|
+
width: 300px;
|
66
|
+
padding-bottom: 1px;
|
67
|
+
-webkit-column-count: 2;
|
68
|
+
-moz-column-count: 2;
|
69
|
+
-ms-column-count: 2;
|
70
|
+
-o-column-count: 2;
|
71
|
+
column-count: 2;
|
72
|
+
}
|
73
|
+
ul.dt-button-collection.f-dropdown.three-column {
|
74
|
+
width: 450px;
|
75
|
+
padding-bottom: 1px;
|
76
|
+
-webkit-column-count: 3;
|
77
|
+
-moz-column-count: 3;
|
78
|
+
-ms-column-count: 3;
|
79
|
+
-o-column-count: 3;
|
80
|
+
column-count: 3;
|
81
|
+
}
|
82
|
+
ul.dt-button-collection.f-dropdown.four-column {
|
83
|
+
width: 600px;
|
84
|
+
padding-bottom: 1px;
|
85
|
+
-webkit-column-count: 4;
|
86
|
+
-moz-column-count: 4;
|
87
|
+
-ms-column-count: 4;
|
88
|
+
-o-column-count: 4;
|
89
|
+
column-count: 4;
|
90
|
+
}
|
91
|
+
ul.dt-button-collection.f-dropdown.fixed {
|
92
|
+
max-width: none;
|
93
|
+
}
|
94
|
+
ul.dt-button-collection.f-dropdown.fixed:before, ul.dt-button-collection.f-dropdown.fixed:after {
|
95
|
+
display: none;
|
96
|
+
}
|
97
|
+
|
98
|
+
div.dt-button-background {
|
99
|
+
position: fixed;
|
100
|
+
top: 0;
|
101
|
+
left: 0;
|
102
|
+
width: 100%;
|
103
|
+
height: 100%;
|
104
|
+
z-index: 88;
|
105
|
+
}
|
106
|
+
|
107
|
+
@media screen and (max-width: 767px) {
|
108
|
+
ul.dt-buttons {
|
109
|
+
float: none;
|
110
|
+
width: 100%;
|
111
|
+
text-align: center;
|
112
|
+
margin-bottom: 0.5rem;
|
113
|
+
}
|
114
|
+
ul.dt-buttons li {
|
115
|
+
float: none;
|
116
|
+
}
|
117
|
+
}
|
118
|
+
div.button-group.stacked.dropdown-pane {
|
119
|
+
margin-top: 2px;
|
120
|
+
padding: 1px;
|
121
|
+
z-index: 89;
|
122
|
+
}
|
123
|
+
div.button-group.stacked.dropdown-pane a.button {
|
124
|
+
margin-bottom: 1px;
|
125
|
+
border-right: none;
|
126
|
+
}
|
127
|
+
div.button-group.stacked.dropdown-pane a.button:last-child {
|
128
|
+
margin-bottom: 0;
|
129
|
+
}
|
@@ -0,0 +1,162 @@
|
|
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
|
+
div.dt-buttons {
|
27
|
+
position: relative;
|
28
|
+
float: left;
|
29
|
+
}
|
30
|
+
div.dt-buttons .dt-button {
|
31
|
+
margin-right: 0;
|
32
|
+
}
|
33
|
+
div.dt-buttons .dt-button span.ui-icon {
|
34
|
+
display: inline-block;
|
35
|
+
vertical-align: middle;
|
36
|
+
margin-top: -2px;
|
37
|
+
}
|
38
|
+
div.dt-buttons .dt-button:active {
|
39
|
+
outline: none;
|
40
|
+
}
|
41
|
+
div.dt-buttons .dt-button:hover > span {
|
42
|
+
background-color: rgba(0, 0, 0, 0.05);
|
43
|
+
}
|
44
|
+
|
45
|
+
div.dt-button-collection {
|
46
|
+
position: absolute;
|
47
|
+
top: 0;
|
48
|
+
left: 0;
|
49
|
+
width: 150px;
|
50
|
+
margin-top: 3px;
|
51
|
+
padding: 8px 8px 4px 8px;
|
52
|
+
border: 1px solid #ccc;
|
53
|
+
border: 1px solid rgba(0, 0, 0, 0.4);
|
54
|
+
background-color: #f3f3f3;
|
55
|
+
background-color: rgba(255, 255, 255, 0.3);
|
56
|
+
overflow: hidden;
|
57
|
+
z-index: 2002;
|
58
|
+
border-radius: 5px;
|
59
|
+
box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
|
60
|
+
z-index: 2002;
|
61
|
+
-webkit-column-gap: 8px;
|
62
|
+
-moz-column-gap: 8px;
|
63
|
+
-ms-column-gap: 8px;
|
64
|
+
-o-column-gap: 8px;
|
65
|
+
column-gap: 8px;
|
66
|
+
-webkit-column-gap: 0;
|
67
|
+
-moz-column-gap: 0;
|
68
|
+
-ms-column-gap: 0;
|
69
|
+
-o-column-gap: 0;
|
70
|
+
column-gap: 0;
|
71
|
+
}
|
72
|
+
div.dt-button-collection .dt-button {
|
73
|
+
position: relative;
|
74
|
+
left: 0;
|
75
|
+
right: 0;
|
76
|
+
display: block;
|
77
|
+
float: none;
|
78
|
+
margin-right: 0;
|
79
|
+
}
|
80
|
+
div.dt-button-collection .dt-button:last-child {
|
81
|
+
margin-bottom: 4px;
|
82
|
+
}
|
83
|
+
div.dt-button-collection .dt-button:hover > span {
|
84
|
+
background-color: rgba(0, 0, 0, 0.05);
|
85
|
+
}
|
86
|
+
div.dt-button-collection.fixed {
|
87
|
+
position: fixed;
|
88
|
+
top: 50%;
|
89
|
+
left: 50%;
|
90
|
+
margin-left: -75px;
|
91
|
+
border-radius: 0;
|
92
|
+
}
|
93
|
+
div.dt-button-collection.fixed.two-column {
|
94
|
+
margin-left: -150px;
|
95
|
+
}
|
96
|
+
div.dt-button-collection.fixed.three-column {
|
97
|
+
margin-left: -225px;
|
98
|
+
}
|
99
|
+
div.dt-button-collection.fixed.four-column {
|
100
|
+
margin-left: -300px;
|
101
|
+
}
|
102
|
+
div.dt-button-collection > * {
|
103
|
+
-webkit-column-break-inside: avoid;
|
104
|
+
break-inside: avoid;
|
105
|
+
}
|
106
|
+
div.dt-button-collection.two-column {
|
107
|
+
width: 300px;
|
108
|
+
padding-bottom: 1px;
|
109
|
+
-webkit-column-count: 2;
|
110
|
+
-moz-column-count: 2;
|
111
|
+
-ms-column-count: 2;
|
112
|
+
-o-column-count: 2;
|
113
|
+
column-count: 2;
|
114
|
+
}
|
115
|
+
div.dt-button-collection.three-column {
|
116
|
+
width: 450px;
|
117
|
+
padding-bottom: 1px;
|
118
|
+
-webkit-column-count: 3;
|
119
|
+
-moz-column-count: 3;
|
120
|
+
-ms-column-count: 3;
|
121
|
+
-o-column-count: 3;
|
122
|
+
column-count: 3;
|
123
|
+
}
|
124
|
+
div.dt-button-collection.four-column {
|
125
|
+
width: 600px;
|
126
|
+
padding-bottom: 1px;
|
127
|
+
-webkit-column-count: 4;
|
128
|
+
-moz-column-count: 4;
|
129
|
+
-ms-column-count: 4;
|
130
|
+
-o-column-count: 4;
|
131
|
+
column-count: 4;
|
132
|
+
}
|
133
|
+
|
134
|
+
div.dt-button-background {
|
135
|
+
position: fixed;
|
136
|
+
top: 0;
|
137
|
+
left: 0;
|
138
|
+
width: 100%;
|
139
|
+
height: 100%;
|
140
|
+
background: rgba(0, 0, 0, 0.7);
|
141
|
+
/* Fallback */
|
142
|
+
background: -ms-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
143
|
+
/* IE10 Consumer Preview */
|
144
|
+
background: -moz-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
145
|
+
/* Firefox */
|
146
|
+
background: -o-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
147
|
+
/* Opera */
|
148
|
+
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)));
|
149
|
+
/* Webkit (Safari/Chrome 10) */
|
150
|
+
background: -webkit-radial-gradient(center, ellipse farthest-corner, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
151
|
+
/* Webkit (Chrome 11+) */
|
152
|
+
background: radial-gradient(ellipse farthest-corner at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
|
153
|
+
/* W3C Markup, IE10 Release Preview */
|
154
|
+
z-index: 2001;
|
155
|
+
}
|
156
|
+
|
157
|
+
@media screen and (max-width: 640px) {
|
158
|
+
div.dt-buttons {
|
159
|
+
float: none !important;
|
160
|
+
text-align: center;
|
161
|
+
}
|
162
|
+
}
|
@@ -0,0 +1,114 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
div.dt-button-info {
|
3
|
+
position: fixed;
|
4
|
+
top: 50%;
|
5
|
+
left: 50%;
|
6
|
+
width: 400px;
|
7
|
+
margin-top: -100px;
|
8
|
+
margin-left: -200px;
|
9
|
+
background-color: white;
|
10
|
+
border: 2px solid #111;
|
11
|
+
box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
|
12
|
+
border-radius: 3px;
|
13
|
+
text-align: center;
|
14
|
+
z-index: 21;
|
15
|
+
}
|
16
|
+
div.dt-button-info h2 {
|
17
|
+
padding: 0.5em;
|
18
|
+
margin: 0;
|
19
|
+
font-weight: normal;
|
20
|
+
border-bottom: 1px solid #ddd;
|
21
|
+
background-color: #f3f3f3;
|
22
|
+
}
|
23
|
+
div.dt-button-info > div {
|
24
|
+
padding: 1em;
|
25
|
+
}
|
26
|
+
|
27
|
+
div.dt-button-collection {
|
28
|
+
position: absolute;
|
29
|
+
top: 0;
|
30
|
+
left: 0;
|
31
|
+
width: 150px;
|
32
|
+
margin-top: 3px !important;
|
33
|
+
z-index: 2002;
|
34
|
+
background: white;
|
35
|
+
-webkit-column-gap: 8px;
|
36
|
+
-moz-column-gap: 8px;
|
37
|
+
-ms-column-gap: 8px;
|
38
|
+
-o-column-gap: 8px;
|
39
|
+
column-gap: 8px;
|
40
|
+
}
|
41
|
+
div.dt-button-collection.fixed {
|
42
|
+
position: fixed;
|
43
|
+
top: 50%;
|
44
|
+
left: 50%;
|
45
|
+
margin-left: -75px;
|
46
|
+
border-radius: 0;
|
47
|
+
}
|
48
|
+
div.dt-button-collection.fixed.two-column {
|
49
|
+
margin-left: -150px;
|
50
|
+
}
|
51
|
+
div.dt-button-collection.fixed.three-column {
|
52
|
+
margin-left: -225px;
|
53
|
+
}
|
54
|
+
div.dt-button-collection.fixed.four-column {
|
55
|
+
margin-left: -300px;
|
56
|
+
}
|
57
|
+
div.dt-button-collection > * {
|
58
|
+
-webkit-column-break-inside: avoid;
|
59
|
+
break-inside: avoid;
|
60
|
+
}
|
61
|
+
div.dt-button-collection.two-column {
|
62
|
+
width: 300px;
|
63
|
+
padding-bottom: 1px;
|
64
|
+
-webkit-column-count: 2;
|
65
|
+
-moz-column-count: 2;
|
66
|
+
-ms-column-count: 2;
|
67
|
+
-o-column-count: 2;
|
68
|
+
column-count: 2;
|
69
|
+
}
|
70
|
+
div.dt-button-collection.three-column {
|
71
|
+
width: 450px;
|
72
|
+
padding-bottom: 1px;
|
73
|
+
-webkit-column-count: 3;
|
74
|
+
-moz-column-count: 3;
|
75
|
+
-ms-column-count: 3;
|
76
|
+
-o-column-count: 3;
|
77
|
+
column-count: 3;
|
78
|
+
}
|
79
|
+
div.dt-button-collection.four-column {
|
80
|
+
width: 600px;
|
81
|
+
padding-bottom: 1px;
|
82
|
+
-webkit-column-count: 4;
|
83
|
+
-moz-column-count: 4;
|
84
|
+
-ms-column-count: 4;
|
85
|
+
-o-column-count: 4;
|
86
|
+
column-count: 4;
|
87
|
+
}
|
88
|
+
|
89
|
+
button.buttons-collection.ui.button span:after {
|
90
|
+
display: inline-block;
|
91
|
+
content: "▾";
|
92
|
+
padding-left: 0.5em;
|
93
|
+
}
|
94
|
+
|
95
|
+
div.dt-button-background {
|
96
|
+
position: fixed;
|
97
|
+
top: 0;
|
98
|
+
left: 0;
|
99
|
+
width: 100%;
|
100
|
+
height: 100%;
|
101
|
+
z-index: 2001;
|
102
|
+
}
|
103
|
+
|
104
|
+
@media screen and (max-width: 767px) {
|
105
|
+
div.dt-buttons {
|
106
|
+
float: none;
|
107
|
+
width: 100%;
|
108
|
+
text-align: center;
|
109
|
+
margin-bottom: 0.5em;
|
110
|
+
}
|
111
|
+
div.dt-buttons a.btn {
|
112
|
+
float: none;
|
113
|
+
}
|
114
|
+
}
|
@@ -0,0 +1,27 @@
|
|
1
|
+
|
2
|
+
div.dt-button-info {
|
3
|
+
position: fixed;
|
4
|
+
top: 50%;
|
5
|
+
left: 50%;
|
6
|
+
width: 400px;
|
7
|
+
margin-top: -100px;
|
8
|
+
margin-left: -200px;
|
9
|
+
background-color: white;
|
10
|
+
border: 2px solid #111;
|
11
|
+
box-shadow: 3px 3px 8px rgba( 0, 0, 0, 0.3);
|
12
|
+
border-radius: 3px;
|
13
|
+
text-align: center;
|
14
|
+
z-index: 21;
|
15
|
+
|
16
|
+
h2 {
|
17
|
+
padding: 0.5em;
|
18
|
+
margin: 0;
|
19
|
+
font-weight: normal;
|
20
|
+
border-bottom: 1px solid #ddd;
|
21
|
+
background-color: #f3f3f3;
|
22
|
+
}
|
23
|
+
|
24
|
+
> div {
|
25
|
+
padding: 1em;
|
26
|
+
}
|
27
|
+
}
|
@@ -0,0 +1,89 @@
|
|
1
|
+
|
2
|
+
@mixin dtb-two-stop-gradient($fromColor, $toColor) {
|
3
|
+
background-color: $toColor; /* Fallback */
|
4
|
+
background-image: -webkit-linear-gradient(top, $fromColor 0%, $toColor 100%); /* Chrome 10+, Saf5.1+, iOS 5+ */
|
5
|
+
background-image: -moz-linear-gradient(top, $fromColor 0%, $toColor 100%); /* FF3.6 */
|
6
|
+
background-image: -ms-linear-gradient(top, $fromColor 0%, $toColor 100%); /* IE10 */
|
7
|
+
background-image: -o-linear-gradient(top, $fromColor 0%, $toColor 100%); /* Opera 11.10+ */
|
8
|
+
background-image: linear-gradient(to bottom, $fromColor 0%, $toColor 100%);
|
9
|
+
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#{nth( $fromColor, 1 )}', EndColorStr='#{nth( $toColor, 1 )}');
|
10
|
+
}
|
11
|
+
|
12
|
+
@mixin dtb-radial-gradient ($fromColor, $toColor ) {
|
13
|
+
background: $toColor; /* Fallback */
|
14
|
+
background: -ms-radial-gradient(center, ellipse farthest-corner, $fromColor 0%, $toColor 100%); /* IE10 Consumer Preview */
|
15
|
+
background: -moz-radial-gradient(center, ellipse farthest-corner, $fromColor 0%, $toColor 100%); /* Firefox */
|
16
|
+
background: -o-radial-gradient(center, ellipse farthest-corner, $fromColor 0%, $toColor 100%); /* Opera */
|
17
|
+
background: -webkit-gradient(radial, center center, 0, center center, 497, color-stop(0, $fromColor), color-stop(1, $toColor)); /* Webkit (Safari/Chrome 10) */
|
18
|
+
background: -webkit-radial-gradient(center, ellipse farthest-corner, $fromColor 0%, $toColor 100%); /* Webkit (Chrome 11+) */
|
19
|
+
background: radial-gradient(ellipse farthest-corner at center, $fromColor 0%, $toColor 100%); /* W3C Markup, IE10 Release Preview */
|
20
|
+
}
|
21
|
+
|
22
|
+
|
23
|
+
@mixin dtb-fixed-collection {
|
24
|
+
// Fixed positioning feature
|
25
|
+
&.fixed {
|
26
|
+
position: fixed;
|
27
|
+
top: 50%;
|
28
|
+
left: 50%;
|
29
|
+
margin-left: -75px;
|
30
|
+
border-radius: 0;
|
31
|
+
|
32
|
+
&.two-column {
|
33
|
+
margin-left: -150px;
|
34
|
+
}
|
35
|
+
|
36
|
+
&.three-column {
|
37
|
+
margin-left: -225px;
|
38
|
+
}
|
39
|
+
|
40
|
+
&.four-column {
|
41
|
+
margin-left: -300px;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
|
45
|
+
// Multi-column layout feature
|
46
|
+
-webkit-column-gap: 8px;
|
47
|
+
-moz-column-gap: 8px;
|
48
|
+
-ms-column-gap: 8px;
|
49
|
+
-o-column-gap: 8px;
|
50
|
+
column-gap: 8px;
|
51
|
+
|
52
|
+
> * {
|
53
|
+
-webkit-column-break-inside: avoid;
|
54
|
+
break-inside: avoid;
|
55
|
+
}
|
56
|
+
|
57
|
+
&.two-column {
|
58
|
+
width: 300px;
|
59
|
+
padding-bottom: 1px;
|
60
|
+
|
61
|
+
-webkit-column-count: 2;
|
62
|
+
-moz-column-count: 2;
|
63
|
+
-ms-column-count: 2;
|
64
|
+
-o-column-count: 2;
|
65
|
+
column-count: 2;
|
66
|
+
}
|
67
|
+
|
68
|
+
&.three-column {
|
69
|
+
width: 450px;
|
70
|
+
padding-bottom: 1px;
|
71
|
+
|
72
|
+
-webkit-column-count: 3;
|
73
|
+
-moz-column-count: 3;
|
74
|
+
-ms-column-count: 3;
|
75
|
+
-o-column-count: 3;
|
76
|
+
column-count: 3;
|
77
|
+
}
|
78
|
+
|
79
|
+
&.four-column {
|
80
|
+
width: 600px;
|
81
|
+
padding-bottom: 1px;
|
82
|
+
|
83
|
+
-webkit-column-count: 4;
|
84
|
+
-moz-column-count: 4;
|
85
|
+
-ms-column-count: 4;
|
86
|
+
-o-column-count: 4;
|
87
|
+
column-count: 4;
|
88
|
+
}
|
89
|
+
}
|