Blame view

static/plugins/datatables/extensions/TableTools/css/dataTables.tableTools.css 10.5 KB
831eac332   zhuzhenchao   add file
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
  /*
   * File:        TableTools.css
   * Description: Styles for TableTools 2
   * Author:      Allan Jardine (www.sprymedia.co.uk)
   * Language:    Javascript
   * License:     GPL v2 / 3 point BSD
   * Project:     DataTables
   * 
   * Copyright 2009-2012 Allan Jardine, all rights reserved.
   *
   * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
   *
   * CSS name space:
   *   DTTT                  DataTables TableTools
   *
   * Style sheet provides:
   *   CONTAINER             TableTools container element and styles applying to all components
   *   BUTTON_STYLES         Action specific button styles
   *   SELECTING             Row selection styles
   *   COLLECTIONS           Drop down list (collection) styles
   *   PRINTING              Print display styles
   */
  
  
  /*
   * CONTAINER
   * TableTools container element and styles applying to all components
   */
  div.DTTT_container {
  	position: relative;
  	float: right;
  	margin-bottom: 1em;
  }
  
  @media screen and (max-width: 640px) {
  	div.DTTT_container {
  		float: none !important;
  		text-align: center;
  	}
  
  	div.DTTT_container:after {
  		visibility: hidden;
  		display: block;
  		content: "";
  		clear: both;
  		height: 0;
  	}
  }
  
  
  button.DTTT_button,
  div.DTTT_button,
  a.DTTT_button {
  	position: relative;
  	display: inline-block;
  	margin-right: 3px;
  	padding: 5px 8px;
  	border: 1px solid #999;
  	cursor: pointer;
  	*cursor: hand;
  	font-size: 0.88em;
  	color: black !important;
  
  	-webkit-border-radius: 2px;
  	   -moz-border-radius: 2px;
  	    -ms-border-radius: 2px;
  	     -o-border-radius: 2px;
  	        border-radius: 2px;
  
  	-webkit-box-shadow: 1px 1px 3px #ccc;
  	   -moz-box-shadow: 1px 1px 3px #ccc;
  	    -ms-box-shadow: 1px 1px 3px #ccc;
  	     -o-box-shadow: 1px 1px 3px #ccc;
  	        box-shadow: 1px 1px 3px #ccc;
  
  	/* Generated by http://www.colorzilla.com/gradient-editor/ */
  	background: #ffffff; /* Old browsers */
  	background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
  	background:    -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
  	background:     -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
  	background:      -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
  	background:         linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
  }
  
  
  /* Buttons are cunning border-box sizing - we can't just use that for A and DIV due to IE6/7 */
  button.DTTT_button {
  	height: 30px;
  	padding: 3px 8px;
  }
  
  .DTTT_button embed { 
  	outline: none;
  }
  
  button.DTTT_button:hover:not(.DTTT_disabled),
  div.DTTT_button:hover:not(.DTTT_disabled),
  a.DTTT_button:hover:not(.DTTT_disabled) {
  	border: 1px solid #666;
  	text-decoration: none !important;
  
  	-webkit-box-shadow: 1px 1px 3px #999;
  	   -moz-box-shadow: 1px 1px 3px #999;
  	    -ms-box-shadow: 1px 1px 3px #999;
  	     -o-box-shadow: 1px 1px 3px #999;
  	        box-shadow: 1px 1px 3px #999;
  
  	background: #f3f3f3; /* Old browsers */
  	background: -webkit-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Chrome10+,Safari5.1+ */
  	background:    -moz-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* FF3.6+ */
  	background:     -ms-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* IE10+ */
  	background:      -o-linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* Opera 11.10+ */
  	background:         linear-gradient(top, #f3f3f3 0%,#e2e2e2 89%,#f4f4f4 100%); /* W3C */
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
  }
  
  button.DTTT_button:focus,
  div.DTTT_button:focus,
  a.DTTT_button:focus {
  	border: 1px solid #426c9e;
  	text-shadow: 0 1px 0 #c4def1;
  	outline: none;
  
  	background-color: #a3d0ef 100%;
  	background-image: -webkit-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
  	background-image:    -moz-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
  	background-image:     -ms-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
  	background-image:      -o-linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
  	background-image:         linear-gradient(top, #a3d0ef 0%, #79ace9 65%, #a3d0ef 100%);
  	filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,StartColorStr='#a3d0ef', EndColorStr='#a3d0ef');
  }
  
  button.DTTT_button:active:not(.DTTT_disabled),
  div.DTTT_button:active:not(.DTTT_disabled),
  a.DTTT_button:active:not(.DTTT_disabled) {
  	-webkit-box-shadow: inset 1px 1px 3px #999999;
  	-moz-box-shadow: inset 1px 1px 3px #999999;
  	box-shadow: inset 1px 1px 3px #999999;
  }
  
  button.DTTT_disabled,
  div.DTTT_disabled,
  a.DTTT_disabled {
  	color: #999 !important;
  	border: 1px solid #d0d0d0;
  	cursor: default;
  	background: #ffffff; /* Old browsers */
  	background: -webkit-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Chrome10+,Safari5.1+ */
  	background:    -moz-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* FF3.6+ */
  	background:     -ms-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* IE10+ */
  	background:      -o-linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* Opera 11.10+ */
  	background:         linear-gradient(top, #ffffff 0%,#f9f9f9 89%,#fafafa 100%); /* W3C */
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fafafa',GradientType=0 ); /* IE6-9 */
  }
  
  
  
  /*
   * BUTTON_STYLES
   * Action specific button styles
   * If you want images - comment this back in
  
  a.DTTT_button_csv,
  a.DTTT_button_xls,
  a.DTTT_button_copy,
  a.DTTT_button_pdf,
  a.DTTT_button_print {
  	padding-right: 0px;
  }
  
  a.DTTT_button_csv span,
  a.DTTT_button_xls span,
  a.DTTT_button_copy span,
  a.DTTT_button_pdf span,
  a.DTTT_button_print span {
  	display: inline-block;
  	height: 24px;
  	line-height: 24px;
  	padding-right: 30px;
  }
  
  
  a.DTTT_button_csv span { background: url(../images/csv.png) no-repeat bottom right; }
  a.DTTT_button_csv:hover span { background: url(../images/csv_hover.png) no-repeat center right; }
  
  a.DTTT_button_xls span { background: url(../images/xls.png) no-repeat center right; }
  a.DTTT_button_xls:hover span { background: #f0f0f0 url(../images/xls_hover.png) no-repeat center right; }
  
  a.DTTT_button_copy span { background: url(../images/copy.png) no-repeat center right; }
  a.DTTT_button_copy:hover span { background: #f0f0f0 url(../images/copy_hover.png) no-repeat center right; }
  
  a.DTTT_button_pdf span { background: url(../images/pdf.png) no-repeat center right; }
  a.DTTT_button_pdf:hover span { background: #f0f0f0 url(../images/pdf_hover.png) no-repeat center right; }
  
  a.DTTT_button_print span { background: url(../images/print.png) no-repeat center right; }
  a.DTTT_button_print:hover span { background: #f0f0f0 url(../images/print_hover.png) no-repeat center right; }
  
   */
  
  button.DTTT_button_collection span {
  	padding-right: 17px;
  	background: url(../images/collection.png) no-repeat center right;
  }
  
  button.DTTT_button_collection:hover span {
  	padding-right: 17px;
  	background: #f0f0f0 url(../images/collection_hover.png) no-repeat center right;
  }
  
  
  /*
   * SELECTING
   * Row selection styles
   */
  table.DTTT_selectable tbody tr {
  	cursor: pointer;
  	*cursor: hand;
  }
  
  table.dataTable tr.DTTT_selected.odd {
  	background-color: #9FAFD1;
  }
  
  table.dataTable tr.DTTT_selected.odd td.sorting_1 {
  	background-color: #9FAFD1;
  }
  
  table.dataTable tr.DTTT_selected.odd td.sorting_2 {
  	background-color: #9FAFD1;
  }
  
  table.dataTable tr.DTTT_selected.odd td.sorting_3 {
  	background-color: #9FAFD1;
  }
  
  
  table.dataTable tr.DTTT_selected.even {
  	background-color: #B0BED9;
  }
  
  table.dataTable tr.DTTT_selected.even td.sorting_1 {
  	background-color: #B0BED9;
  }
  
  table.dataTable tr.DTTT_selected.even td.sorting_2 {
  	background-color: #B0BED9;
  }
  
  table.dataTable tr.DTTT_selected.even td.sorting_3 {
  	background-color: #B0BED9;
  }
  
  
  /*
   * COLLECTIONS
   * Drop down list (collection) styles
   */
  
  div.DTTT_collection {
  	width: 150px;
  	padding: 8px 8px 4px 8px;
  	border: 1px solid #ccc;
  	border: 1px solid rgba( 0, 0, 0, 0.4 );
  	background-color: #f3f3f3;
  	background-color: rgba( 255, 255, 255, 0.3 );
  	overflow: hidden;
  	z-index: 2002;
  
  	-webkit-border-radius: 5px;
  	   -moz-border-radius: 5px;
  	    -ms-border-radius: 5px;
  	     -o-border-radius: 5px;
  	        border-radius: 5px;
  	
  	-webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  	   -moz-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  	    -ms-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  	     -o-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  	        box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  }
  
  div.DTTT_collection_background {
  	background: black;
  	z-index: 2001;
  }
  
  div.DTTT_collection button.DTTT_button,
  div.DTTT_collection div.DTTT_button,
  div.DTTT_collection a.DTTT_button {
  	position: relative;
  	left: 0;
  	right: 0;
  
  	display: block;
  	float: none;
  	margin-bottom: 4px;
  	
  	-webkit-box-shadow: 1px 1px 3px #999;
  	   -moz-box-shadow: 1px 1px 3px #999;
  	    -ms-box-shadow: 1px 1px 3px #999;
  	     -o-box-shadow: 1px 1px 3px #999;
  	        box-shadow: 1px 1px 3px #999;
  }
  
  
  /*
   * PRINTING
   * Print display styles
   */
  
  .DTTT_print_info {
  	position: fixed;
  	top: 50%;
  	left: 50%;
  	width: 400px;
  	height: 150px;
  	margin-left: -200px;
  	margin-top: -75px;
  	text-align: center;
  	color: #333;
  	padding: 10px 30px;
  
  	background: #ffffff; /* Old browsers */
  	background: -webkit-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Chrome10+,Safari5.1+ */
  	background:    -moz-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* FF3.6+ */
  	background:     -ms-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* IE10+ */
  	background:      -o-linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* Opera 11.10+ */
  	background:         linear-gradient(top, #ffffff 0%,#f3f3f3 89%,#f9f9f9 100%); /* W3C */
  	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f9f9f9',GradientType=0 ); /* IE6-9 */
  	
  	opacity: 0.95;
  
  	border: 1px solid black;
  	border: 1px solid rgba(0, 0, 0, 0.5);
  	
  	-webkit-border-radius: 6px;
  	   -moz-border-radius: 6px;
  	    -ms-border-radius: 6px;
  	     -o-border-radius: 6px;
  	        border-radius: 6px;
  	
  	-webkit-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  	   -moz-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  	    -ms-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  	     -o-box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  	        box-shadow: 0 3px 7px rgba(0, 0, 0, 0.5);
  }
  
  .DTTT_print_info h6 {
  	font-weight: normal;
  	font-size: 28px;
  	line-height: 28px;
  	margin: 1em;
  }
  
  .DTTT_print_info p {
  	font-size: 14px;
  	line-height: 20px;
  }