Skip to content

Commit f2cfa60

Browse files
committed
Added support for exporting on: clipboard, csv, excel, pdf and print =]
1 parent 5066942 commit f2cfa60

File tree

88 files changed

+176604
-13577
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

88 files changed

+176604
-13577
lines changed

.c9/metadata/tab0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"filter":false,"title":"bash - \"ubuntu@shinaska109-datadeployprototype-5773126: ~/workspace\" ","tooltip":"bash - \"ubuntu@shinaska109-datadeployprototype-5773126: ~/workspace\" ","undoManager":{"mark":-1,"position":-1,"stack":[]},"terminal":{"id":"shinaska109@datadeployprototype_314","cwd":"","width":1074,"height":187,"scrollTop":-1},"timestamp":1515309448750,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"}
1+
{"filter":false,"title":"bash - \"ubuntu@shinaska109-datadeployprototype-5773126: ~/workspace\" ","tooltip":"bash - \"ubuntu@shinaska109-datadeployprototype-5773126: ~/workspace\" ","undoManager":{"mark":-1,"position":-1,"stack":[]},"terminal":{"id":"shinaska109@datadeployprototype_314","cwd":"","width":1074,"height":187,"scrollTop":1.7976931348623157e+308},"timestamp":1515309448750,"hash":"da39a3ee5e6b4b0d3255bfef95601890afd80709"}

.c9/metadata/tab12

Lines changed: 0 additions & 1 deletion
This file was deleted.

.c9/metadata/tab2

Lines changed: 0 additions & 1 deletion
This file was deleted.

.c9/metadata/tab5

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 161 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,161 @@
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+
ul.dt-button-collection.dropdown-menu .dt-button {
112+
border-radius: 0;
113+
}
114+
115+
div.dt-button-background {
116+
position: fixed;
117+
top: 0;
118+
left: 0;
119+
width: 100%;
120+
height: 100%;
121+
z-index: 2001;
122+
}
123+
124+
@media screen and (max-width: 767px) {
125+
div.dt-buttons {
126+
float: none;
127+
width: 100%;
128+
text-align: center;
129+
margin-bottom: 0.5em;
130+
}
131+
div.dt-buttons a.btn {
132+
float: none;
133+
}
134+
}
135+
div.dt-buttons button.btn.processing,
136+
div.dt-buttons div.btn.processing,
137+
div.dt-buttons a.btn.processing {
138+
color: rgba(0, 0, 0, 0.2);
139+
}
140+
div.dt-buttons button.btn.processing:after,
141+
div.dt-buttons div.btn.processing:after,
142+
div.dt-buttons a.btn.processing:after {
143+
position: absolute;
144+
top: 50%;
145+
left: 50%;
146+
width: 16px;
147+
height: 16px;
148+
margin: -8px 0 0 -8px;
149+
box-sizing: border-box;
150+
display: block;
151+
content: ' ';
152+
border: 2px solid #282828;
153+
border-radius: 50%;
154+
border-left-color: transparent;
155+
border-right-color: transparent;
156+
animation: dtb-spinner 1500ms infinite linear;
157+
-o-animation: dtb-spinner 1500ms infinite linear;
158+
-ms-animation: dtb-spinner 1500ms infinite linear;
159+
-webkit-animation: dtb-spinner 1500ms infinite linear;
160+
-moz-animation: dtb-spinner 1500ms infinite linear;
161+
}

datatable/Buttons-1.5.1/css/buttons.bootstrap.min.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)