Welcome to mirror list, hosted at ThFree Co, Russian Federation.

datatable.css « templates « CoreHome « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 48fcf6824f8bb08d7a1345350c070b85be094bb8 (plain)
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
/*Overriding some dataTable css for better dashboard display*/
.widget .dataTableWrapper, 
.widget .dataTableAllColumnsWrapper,
.widget .dataTableGraphWrapper,
.widget .dataTableActionsWrapper,
.widget .dataTableGraphEvolutionWrapper {
	width: 100%;
}

.widget {
	z-index:1;
}

/* container of each table */
.dataTableWrapper {
	width: 450px;
	/* not more than 450px to make sure 2 tables can fit horizontally on a 1024 screen */
}
.dataTableAllColumnsWrapper {
	width: 535px;
}

.subdataTableWrapper{
	width: 95%;
}
.subdataTableAllColumnsWrapper {
	width: 95%;
}

.dataTableActionsWrapper {
	width: 500px;
}

.dataTableGraphWrapper {
	width: 500px;
}

.dataTableGraphEvolutionWrapper {
	width: 100%;
}

/* main data table */
table.dataTable {
	width: 100%;
	padding: 0;
	border-spacing: 0;
	margin: 0;
	font-size: 0.9em;
}

table.dataTable td.label,
table.subDataTable td.label,
table.dataTableActions td.label {
	width: 100%;
}

table.dataTable img,
table.subDataTable img,
table.dataTableActions img {
	vertical-align: middle;
}

table.dataTable img {
	border: 0;
	margin-right: 1em;
	margin-left: 0.5em;
}

table.dataTable tr.subDataTable {
	cursor: pointer;
}

table.dataTable th {
	margin: 0;
	color: #6D929B;
	border-right: 1px solid #C1DAD7;
	border-bottom: 1px solid #C1DAD7;
	border-top: 1px solid #C1DAD7;
	text-align: left;
	padding: 6px 6px 6px 12px;
	background: #D4E3ED url(images/bg_header.jpg) repeat-x;
}

table.dataTable th.columnSorted {
	font-weight: bold;
	padding-right: 20px;
}

table.dataTable td {
	border-right: 1px solid #C1DAD7;
	border-bottom: 1px solid #C1DAD7;
	border-left: 0;
	padding: 5px 5px 5px 12px;
	background: #fff;
}

table.dataTable td,table.dataTable td a {
	margin: 0;
	text-decoration: none;
	color: #4f6b72;
}

table.dataTable td.labeleven,table.dataTable td.columneven {
	background: #F9FAFA;
}

table.dataTable td.columneven {
	color: #797268;
}

table.dataTable td.labeleven {
	background-image: url(images/bullet2.gif);
	background-repeat: no-repeat;
	color: #797268;
}

table.dataTable td.labelodd {
	background: #fff url(images/bullet1.gif) no-repeat;
}

table.dataTable td.label,table.subActionsDataTable td.label,table.actionsDataTable td.label
{
	border-top: 0;
	border-left: 1px solid #C1DAD7;
}

table.dataTable th.label {
	border-left: 1px solid #C1DAD7;
}

/* the cell containing the subdatatable */
table.dataTable .cellSubDataTable {
	border-left: 1px solid #C1DAD7;
	padding: 0;
	margin: 0;
}

/* A link in a column in the DataTable */
table.dataTable td #urlLink {
	display: none;
}

/* SUBDATATABLE */ /* a datatable inside another datatable */
table.subDataTable {
	background: #FFFFFF;
	margin: 10px;
}

table.subDataTable td {
	border: 0;
}

table.subDataTable thead th {
	font-weight: normal;
	font-size: 1.1em;
	text-align: left;
	border: 0;
	border-bottom:1px solid #D1D1D1;
	border-right:1px solid #D1D1D1;
	border-top:1px solid #D1D1D1;
	padding: .3em 1em;
	color: #333333;
	background: #FFE9C6;
}

table.subDataTable td.labeleven,table.subDataTable td.labelodd {
	background-image: none;
}

table.subDataTable td {
	border-right: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
	border-left: 0;
}

table.subDataTable td,table.subDataTable td a {
	color: #615B53;
}

table.subDataTable td.labeleven,table.subDataTable td.columneven {
	color: #2D2A27;
}

table.subDataTable td.label {
	width: 80%;
}

table.subDataTable td.labelodd,table.subDataTable td.labelodd a {
	background: #ffffff;
}
table.subDataTable td.label {
	padding: 5px;
}
table.dataTable img {
	margin-left:0;
}
/* misc SPAN and DIV */
table thead div {
	
}

#sortIconContainer {
	float: right;
}

#sortIcon {
	margin: 0px;
	position: absolute;
}

#dataTablePages {
	color: #BFBFBF;
	font-weight: bold;
	margin: 10px;
	font-size: 0.9em;
}

#dataTableSearchPattern {
	display: inline;
	white-space: nowrap;
}

#dataTableSearchPattern input {
	font-size: 0.7em;
	padding: 2px;
	border: 1px solid #B3B3B3;
	color: #0C183A;
}

#dataTableSearchPattern input:hover {
	background: #F7F7FF none repeat scroll 0%;
}

#dataTableSearchPattern #keyword {
	background: transparent url(images/search.png) no-repeat scroll 4px
		center;
	padding: 3px 3px 3px 20px;
}

#dataTableExcludeLowPopulation,#dataTableNext,#dataTablePrevious {
	font-size: 0.9em;
	color: #184A83;
	text-decoration: underline;
	cursor: pointer;
}

.subDataTable#dataTableFeatures {
	padding-top: 0px;
	padding-bottom: 5px;
	width: 100%;
}

#dataTableFeatures {
	padding-top: 10px;
	padding-bottom: 10px;
	width: 100%;
	text-align: center;
}

#dataTableExcludeLowPopulation {
	float: right;
	font-size: 0.8em;
	color: #C3C6D8;
	text-align: right;
}

#dataTableNext,#dataTablePrevious,#dataTableSearchPattern,#loadingDataTable
{
	display: none;
}

.subDataTable #dataTableFooterIcons {
	height: 0px;
}

#dataTableFooterIcons {
	float: right;
	height: 18px;
}

#exportToFormat {
	float: right;
}

#dataTableFooterIconsShow {
	float: right;
}

#dataTableFooterIcons,#dataTableFooterIcons a {
	text-decoration: none;
	color: #8894B1;
	font-size:0.9em;
}

.dataTableSpacer {
	clear: both;
}

#loadingDataTable {
	float: left;
	font-size: 0.9em;
	color: #193B6C;
	padding: 0.5em;
}

/* Actions table */
table.dataTableActions tr td.labelodd {
	background-image: none;
}

/* levels higher than 4 have a default padding left */
tr.subActionsDataTable td.label,tr.actionsDataTable td.label {
	padding-left: 7em;
}

tr.level0 td.label {
	padding-left: +1.5em;
}

tr.level1 td.label {
	padding-left: +3.5em;
}

tr.level2 td.label {
	padding-left: +5.5em;
}

tr.level3 td.label {
	padding-left: +6.5em;
}

tr.level4 td.label {
	padding-left: +7em;
}

tr td.label img.plusMinus {
	margin-left: -1em;
	margin-right: 0em;
}

#emptyDatatable {
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: center;
	font-size: 0.9em;
	font-style: italic;
}