@hpcc-js/dgrid 3.7.5 → 3.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +43 -43
- package/README.md +31 -31
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.umd.cjs +1 -1
- package/dist/index.umd.cjs.map +1 -1
- package/package.json +5 -5
- package/src/Common.css +587 -587
- package/src/Common.ts +178 -178
- package/src/DBStore.ts +91 -91
- package/src/DatasourceStore.ts +127 -127
- package/src/DatasourceTable.ts +62 -62
- package/src/RowFormatter.ts +147 -147
- package/src/Table.ts +263 -263
- package/src/__package__.ts +3 -3
- package/src/__tests__/index.ts +1 -1
- package/src/__tests__/test1.ts +50 -50
- package/src/dgrid-shim.ts +20 -20
- package/src/i18n.js +11 -11
- package/src/index.ts +10 -10
package/src/Common.css
CHANGED
|
@@ -1,588 +1,588 @@
|
|
|
1
|
-
.dijitTooltip {
|
|
2
|
-
position: absolute;
|
|
3
|
-
z-index: 2000;
|
|
4
|
-
display: block;
|
|
5
|
-
|
|
6
|
-
left: 0;
|
|
7
|
-
top: -10000px;
|
|
8
|
-
overflow: visible;
|
|
9
|
-
|
|
10
|
-
font-family: Verdana, Geneva, sans-serif;
|
|
11
|
-
font-size: 12px;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
.dijitTooltipContainer {
|
|
15
|
-
border: solid black 2px;
|
|
16
|
-
background: #b8b5b5;
|
|
17
|
-
color: black;
|
|
18
|
-
font-size: small;
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
.dijitTooltipFocusNode {
|
|
22
|
-
padding: 2px 2px 2px 2px;
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
.dijitTooltipConnector {
|
|
26
|
-
position: absolute;
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
.dj_a11y .dijitTooltipConnector {
|
|
30
|
-
display: none;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.dijitTooltipData {
|
|
34
|
-
display: none;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.dijitTooltip {
|
|
38
|
-
/* the outermost dom node, holding the connector and container */
|
|
39
|
-
background: transparent;
|
|
40
|
-
/* make the area on the sides of the arrow transparent */
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
.dijitTooltipContainer {
|
|
44
|
-
background-color: #424242;
|
|
45
|
-
opacity: 1;
|
|
46
|
-
-ms-filter: none;
|
|
47
|
-
filter: none;
|
|
48
|
-
padding: 4px 8px;
|
|
49
|
-
border-radius: 3px;
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
.dijitTooltip .dijitTooltipContainer {
|
|
53
|
-
color: #fff;
|
|
54
|
-
border: 0 none;
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
.dijitTooltipConnector {
|
|
58
|
-
/* the arrow */
|
|
59
|
-
z-index: 2;
|
|
60
|
-
width: auto;
|
|
61
|
-
height: auto;
|
|
62
|
-
opacity: 1;
|
|
63
|
-
-ms-filter: none;
|
|
64
|
-
filter: none;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
.dijitTooltipABRight .dijitTooltipConnector {
|
|
68
|
-
/* above or below tooltip, but the arrow appears on the right,
|
|
69
|
-
and the right edges of target and tooltip are aligned rather than the left */
|
|
70
|
-
left: auto !important;
|
|
71
|
-
right: 8px;
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
.dijitTooltipBelow {
|
|
75
|
-
/* leave room for arrow above content */
|
|
76
|
-
padding-top: 4px;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.dijitTooltipBelow .dijitTooltipConnector {
|
|
80
|
-
/* the arrow piece for tooltips below an element */
|
|
81
|
-
top: 0;
|
|
82
|
-
left: 8px;
|
|
83
|
-
border-bottom: 4px solid #424242;
|
|
84
|
-
border-left: 4px solid transparent;
|
|
85
|
-
border-right: 4px solid transparent;
|
|
86
|
-
border-top: 0;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.dijitTooltipAbove {
|
|
90
|
-
/* leave room for arrow below content */
|
|
91
|
-
padding-bottom: 4px;
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
.dijitTooltipAbove .dijitTooltipConnector {
|
|
95
|
-
/* the arrow piece for tooltips above an element */
|
|
96
|
-
bottom: 0;
|
|
97
|
-
left: 8px;
|
|
98
|
-
border-top: 4px solid #424242;
|
|
99
|
-
border-left: 4px solid transparent;
|
|
100
|
-
border-right: 4px solid transparent;
|
|
101
|
-
border-bottom: 0;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
.dijitTooltipLeft {
|
|
105
|
-
padding-right: 4px;
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.dijitTooltipLeft .dijitTooltipConnector {
|
|
109
|
-
/* the arrow piece for tooltips to the left of an element, bottom borders aligned */
|
|
110
|
-
right: 0;
|
|
111
|
-
border-left: 4px solid #424242;
|
|
112
|
-
border-bottom: 4px solid transparent;
|
|
113
|
-
border-top: 4px solid transparent;
|
|
114
|
-
border-right: 0;
|
|
115
|
-
}
|
|
116
|
-
|
|
117
|
-
.dijitTooltipRight {
|
|
118
|
-
padding-left: 4px;
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
.dijitTooltipRight .dijitTooltipConnector {
|
|
122
|
-
/* the arrow piece for tooltips to the right of an element, bottom borders aligned */
|
|
123
|
-
left: 0;
|
|
124
|
-
border-bottom: 4px solid transparent;
|
|
125
|
-
border-top: 4px solid transparent;
|
|
126
|
-
border-right: 4px solid #424242;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
.dgrid {
|
|
130
|
-
position: relative;
|
|
131
|
-
overflow: hidden;
|
|
132
|
-
border: 1px solid #ddd;
|
|
133
|
-
height: 30em;
|
|
134
|
-
display: block;
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
.dgrid-header {
|
|
138
|
-
background-color: #eee;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.dgrid-header-row {
|
|
142
|
-
position: absolute;
|
|
143
|
-
right: 17px;
|
|
144
|
-
left: 0;
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
.dgrid-header-scroll {
|
|
148
|
-
position: absolute;
|
|
149
|
-
top: 0;
|
|
150
|
-
right: 0;
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.dgrid-footer {
|
|
154
|
-
position: absolute;
|
|
155
|
-
bottom: 0;
|
|
156
|
-
width: 100%;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
.dgrid-header-hidden {
|
|
160
|
-
font-size: 0;
|
|
161
|
-
height: 0 !important;
|
|
162
|
-
border-top: none !important;
|
|
163
|
-
border-bottom: none !important;
|
|
164
|
-
margin-top: 0 !important;
|
|
165
|
-
margin-bottom: 0 !important;
|
|
166
|
-
padding-top: 0 !important;
|
|
167
|
-
padding-bottom: 0 !important;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.dgrid-footer-hidden {
|
|
171
|
-
display: none;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.dgrid-sortable {
|
|
175
|
-
cursor: pointer;
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
.dgrid-header,
|
|
179
|
-
.dgrid-header-row,
|
|
180
|
-
.dgrid-footer {
|
|
181
|
-
overflow: hidden;
|
|
182
|
-
background-color: #eee;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
.dgrid-row-table {
|
|
186
|
-
border-collapse: collapse;
|
|
187
|
-
border: none;
|
|
188
|
-
table-layout: fixed;
|
|
189
|
-
empty-cells: show;
|
|
190
|
-
width: 100%;
|
|
191
|
-
height: 100%;
|
|
192
|
-
}
|
|
193
|
-
|
|
194
|
-
.dgrid-cell {
|
|
195
|
-
padding: 3px;
|
|
196
|
-
text-align: left;
|
|
197
|
-
overflow: hidden;
|
|
198
|
-
vertical-align: top;
|
|
199
|
-
border: 1px solid #ddd;
|
|
200
|
-
border-top-style: none;
|
|
201
|
-
-webkit-box-sizing: border-box;
|
|
202
|
-
-moz-box-sizing: border-box;
|
|
203
|
-
box-sizing: border-box;
|
|
204
|
-
text-overflow: ellipsis;
|
|
205
|
-
white-space: nowrap;
|
|
206
|
-
}
|
|
207
|
-
|
|
208
|
-
.dgrid-content {
|
|
209
|
-
position: relative;
|
|
210
|
-
height: 99%;
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
.dgrid-scroller {
|
|
214
|
-
overflow-x: auto;
|
|
215
|
-
overflow-y: scroll;
|
|
216
|
-
position: absolute;
|
|
217
|
-
top: 0px;
|
|
218
|
-
margin-top: 25px;
|
|
219
|
-
bottom: 0px;
|
|
220
|
-
width: 100%;
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
.dgrid-preload {
|
|
224
|
-
font-size: 0;
|
|
225
|
-
line-height: 0;
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.dgrid-loading {
|
|
229
|
-
position: relative;
|
|
230
|
-
height: 100%;
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
.dgrid-above {
|
|
234
|
-
position: absolute;
|
|
235
|
-
bottom: 0;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.ui-icon {
|
|
239
|
-
width: 12px;
|
|
240
|
-
height: 16px;
|
|
241
|
-
background-image: url(data:image/png;base64,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);
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.dgrid-sort-arrow {
|
|
245
|
-
background-position: -64px -16px;
|
|
246
|
-
display: block;
|
|
247
|
-
float: right;
|
|
248
|
-
margin: 0 4px 0 5px;
|
|
249
|
-
height: 12px;
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
.dgrid-sort-up .dgrid-sort-arrow {
|
|
253
|
-
background-position: 0px -16px;
|
|
254
|
-
}
|
|
255
|
-
|
|
256
|
-
.dgrid-selected {
|
|
257
|
-
background-color: #bbb;
|
|
258
|
-
}
|
|
259
|
-
|
|
260
|
-
.dgrid-input {
|
|
261
|
-
width: 99%;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
html.has-mozilla .dgrid .dgrid-row:focus,
|
|
265
|
-
html.has-mozilla .dgrid .dgrid-cell:focus {
|
|
266
|
-
outline: 1px dotted;
|
|
267
|
-
}
|
|
268
|
-
|
|
269
|
-
html.has-mozilla .dgrid-focus {
|
|
270
|
-
outline-offset: -1px;
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
.dgrid-scrollbar-measure {
|
|
274
|
-
width: 100px;
|
|
275
|
-
height: 100px;
|
|
276
|
-
overflow: scroll;
|
|
277
|
-
position: absolute;
|
|
278
|
-
top: -9999px;
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
.dgrid-autoheight {
|
|
282
|
-
height: auto;
|
|
283
|
-
}
|
|
284
|
-
|
|
285
|
-
.dgrid-autoheight .dgrid-scroller {
|
|
286
|
-
position: relative;
|
|
287
|
-
overflow-y: hidden;
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
.dgrid-autoheight .dgrid-header-scroll {
|
|
291
|
-
display: none;
|
|
292
|
-
}
|
|
293
|
-
|
|
294
|
-
.dgrid-autoheight .dgrid-header {
|
|
295
|
-
right: 0;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.dgrid-column-set {
|
|
299
|
-
overflow: hidden;
|
|
300
|
-
width: 100%;
|
|
301
|
-
position: relative;
|
|
302
|
-
height: 100%;
|
|
303
|
-
-ms-touch-action: pan-y;
|
|
304
|
-
touch-action: pan-y;
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
.dgrid-column-set-cell {
|
|
308
|
-
vertical-align: top;
|
|
309
|
-
height: 100%;
|
|
310
|
-
}
|
|
311
|
-
|
|
312
|
-
.dgrid-column-set-scroller-container {
|
|
313
|
-
font-size: 0;
|
|
314
|
-
position: absolute;
|
|
315
|
-
bottom: 0;
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
.dgrid-autoheight .dgrid-column-set-scroller-container {
|
|
319
|
-
position: relative;
|
|
320
|
-
}
|
|
321
|
-
|
|
322
|
-
.dgrid-column-set-scroller {
|
|
323
|
-
display: inline-block;
|
|
324
|
-
overflow-x: auto;
|
|
325
|
-
overflow-y: hidden;
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
.dgrid-column-set-scroller-content {
|
|
329
|
-
height: 1px;
|
|
330
|
-
}
|
|
331
|
-
|
|
332
|
-
.ui-icon-triangle-1-e {
|
|
333
|
-
background-position: -32px -16px;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
.ui-icon-triangle-1-se {
|
|
337
|
-
background-position: -48px -16px;
|
|
338
|
-
}
|
|
339
|
-
|
|
340
|
-
.dgrid-expando-icon {
|
|
341
|
-
width: 16px;
|
|
342
|
-
height: 16px;
|
|
343
|
-
}
|
|
344
|
-
|
|
345
|
-
.dgrid-tree-container {
|
|
346
|
-
-webkit-transition-duration: 0.3s;
|
|
347
|
-
-moz-transition-duration: 0.3s;
|
|
348
|
-
-o-transition-duration: 0.3s;
|
|
349
|
-
-ms-transition-duration: 0.3s;
|
|
350
|
-
transition-duration: 0.3s;
|
|
351
|
-
overflow: hidden;
|
|
352
|
-
}
|
|
353
|
-
|
|
354
|
-
.dgrid-tree-container.dgrid-tree-resetting {
|
|
355
|
-
-webkit-transition-duration: 0;
|
|
356
|
-
-moz-transition-duration: 0;
|
|
357
|
-
-o-transition-duration: 0;
|
|
358
|
-
-ms-transition-duration: 0;
|
|
359
|
-
transition-duration: 0;
|
|
360
|
-
}
|
|
361
|
-
|
|
362
|
-
.dgrid-hider-toggle {
|
|
363
|
-
background-position: 0 -192px;
|
|
364
|
-
background-color: transparent;
|
|
365
|
-
border: none;
|
|
366
|
-
cursor: pointer;
|
|
367
|
-
position: absolute;
|
|
368
|
-
right: 0;
|
|
369
|
-
top: 0;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
.dgrid-rtl-swap .dgrid-hider-toggle {
|
|
373
|
-
right: auto;
|
|
374
|
-
left: 0;
|
|
375
|
-
}
|
|
376
|
-
|
|
377
|
-
.dgrid-hider-menu {
|
|
378
|
-
position: absolute;
|
|
379
|
-
top: 0;
|
|
380
|
-
right: 17px;
|
|
381
|
-
width: 184px;
|
|
382
|
-
background-color: #fff;
|
|
383
|
-
border: 1px solid #000;
|
|
384
|
-
z-index: 99999;
|
|
385
|
-
padding: 4px;
|
|
386
|
-
overflow-x: hidden;
|
|
387
|
-
overflow-y: auto;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.dgrid-rtl-swap .dgrid-hider-menu {
|
|
391
|
-
right: auto;
|
|
392
|
-
left: 17px;
|
|
393
|
-
}
|
|
394
|
-
|
|
395
|
-
.dgrid-hider-menu-row {
|
|
396
|
-
position: relative;
|
|
397
|
-
padding: 2px;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
.dgrid-hider-menu-check {
|
|
401
|
-
position: absolute;
|
|
402
|
-
top: 2px;
|
|
403
|
-
left: 2px;
|
|
404
|
-
padding: 0;
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.dgrid-hider-menu-label {
|
|
408
|
-
display: block;
|
|
409
|
-
padding-left: 20px;
|
|
410
|
-
}
|
|
411
|
-
|
|
412
|
-
.dgrid-header .dojoDndTarget .dgrid-cell {
|
|
413
|
-
display: table-cell;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
.dgrid-header .dojoDndItemBefore {
|
|
417
|
-
border-left: 2px dotted #000 !important;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.dgrid-header .dojoDndItemAfter {
|
|
421
|
-
border-right: 2px dotted #000 !important;
|
|
422
|
-
}
|
|
423
|
-
|
|
424
|
-
.dgrid-column-resizer {
|
|
425
|
-
cursor: col-resize;
|
|
426
|
-
position: absolute;
|
|
427
|
-
width: 2px;
|
|
428
|
-
background-color: #666;
|
|
429
|
-
z-index: 1000;
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
.dgrid-resize-handle {
|
|
433
|
-
height: 100px;
|
|
434
|
-
width: 0;
|
|
435
|
-
position: absolute;
|
|
436
|
-
right: -4px;
|
|
437
|
-
top: -4px;
|
|
438
|
-
cursor: col-resize;
|
|
439
|
-
z-index: 999;
|
|
440
|
-
border-left: 8px solid transparent;
|
|
441
|
-
outline: none;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
.dgrid-resize-header-container {
|
|
445
|
-
height: 100%;
|
|
446
|
-
}
|
|
447
|
-
|
|
448
|
-
.dgrid-resize-guard {
|
|
449
|
-
cursor: col-resize;
|
|
450
|
-
position: absolute;
|
|
451
|
-
bottom: 0;
|
|
452
|
-
left: 0;
|
|
453
|
-
right: 0;
|
|
454
|
-
top: 0;
|
|
455
|
-
}
|
|
456
|
-
|
|
457
|
-
html.has-touch .dgrid-resize-handle {
|
|
458
|
-
border-left: 20px solid transparent;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
|
-
html.has-touch .dgrid-column-resizer {
|
|
462
|
-
width: 2px;
|
|
463
|
-
}
|
|
464
|
-
|
|
465
|
-
.dgrid-resize-header-container {
|
|
466
|
-
position: relative;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
.dgrid-header .dgrid-cell {
|
|
470
|
-
overflow: hidden;
|
|
471
|
-
}
|
|
472
|
-
|
|
473
|
-
.dgrid-spacer-row {
|
|
474
|
-
height: 0;
|
|
475
|
-
}
|
|
476
|
-
|
|
477
|
-
.dgrid-spacer-row th {
|
|
478
|
-
padding-top: 0;
|
|
479
|
-
padding-bottom: 0;
|
|
480
|
-
border-top: none;
|
|
481
|
-
border-bottom: none;
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
.dgrid-status {
|
|
485
|
-
padding: 2px;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
.dgrid-pagination .dgrid-status {
|
|
489
|
-
float: left;
|
|
490
|
-
}
|
|
491
|
-
|
|
492
|
-
.dgrid-pagination .dgrid-navigation,
|
|
493
|
-
.dgrid-pagination .dgrid-page-size {
|
|
494
|
-
float: right;
|
|
495
|
-
}
|
|
496
|
-
|
|
497
|
-
.dgrid-navigation .dgrid-page-link {
|
|
498
|
-
cursor: pointer;
|
|
499
|
-
font-weight: bold;
|
|
500
|
-
text-decoration: none;
|
|
501
|
-
color: inherit;
|
|
502
|
-
padding: 0 4px;
|
|
503
|
-
}
|
|
504
|
-
|
|
505
|
-
.dgrid-first,
|
|
506
|
-
.dgrid-last,
|
|
507
|
-
.dgrid-next,
|
|
508
|
-
.dgrid-previous {
|
|
509
|
-
font-size: 130%;
|
|
510
|
-
}
|
|
511
|
-
|
|
512
|
-
.dgrid-pagination .dgrid-page-disabled {
|
|
513
|
-
color: #aaa;
|
|
514
|
-
cursor: default;
|
|
515
|
-
}
|
|
516
|
-
|
|
517
|
-
.dgrid-page-input {
|
|
518
|
-
margin-top: 1px;
|
|
519
|
-
width: 2em;
|
|
520
|
-
text-align: center;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
.dgrid-page-size {
|
|
524
|
-
margin: 1px 4px 0 4px;
|
|
525
|
-
}
|
|
526
|
-
|
|
527
|
-
.dgrid-rtl-swap .dgrid-header-row {
|
|
528
|
-
right: 0;
|
|
529
|
-
left: 17px;
|
|
530
|
-
}
|
|
531
|
-
|
|
532
|
-
.dgrid-rtl-swap .dgrid-header-scroll {
|
|
533
|
-
left: 0px;
|
|
534
|
-
right: auto;
|
|
535
|
-
}
|
|
536
|
-
|
|
537
|
-
.dgrid-rtl .dgrid-cell {
|
|
538
|
-
text-align: right;
|
|
539
|
-
}
|
|
540
|
-
|
|
541
|
-
.dgrid-rtl .dgrid-sort-arrow {
|
|
542
|
-
float: left;
|
|
543
|
-
margin: 0 5px 0 4px;
|
|
544
|
-
}
|
|
545
|
-
|
|
546
|
-
.dgrid-rtl .ui-icon-triangle-1-e {
|
|
547
|
-
background-position: -96px -16px;
|
|
548
|
-
}
|
|
549
|
-
|
|
550
|
-
.dgrid-rtl .ui-icon-triangle-1-se {
|
|
551
|
-
background-position: -80px -16px;
|
|
552
|
-
}
|
|
553
|
-
|
|
554
|
-
.dgrid-rtl .dgrid-pagination .dgrid-status {
|
|
555
|
-
float: right;
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
.dgrid-rtl .dgrid-pagination .dgrid-page-size {
|
|
559
|
-
float: right;
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
.dgrid-rtl .dgrid-pagination .dgrid-navigation {
|
|
563
|
-
float: left;
|
|
564
|
-
}
|
|
565
|
-
|
|
566
|
-
.dgrid-rtl.dgrid-autoheight .dgrid-header {
|
|
567
|
-
left: 0;
|
|
568
|
-
}
|
|
569
|
-
|
|
570
|
-
.dgrid_Table .placeholder {
|
|
571
|
-
border: none;
|
|
572
|
-
padding: 0px;
|
|
573
|
-
overflow: hidden;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
.dgrid_Table .dgrid-fakeline {
|
|
577
|
-
border: 0px;
|
|
578
|
-
border-bottom: 1px solid rgb(221, 221, 221);
|
|
579
|
-
margin: 0px;
|
|
580
|
-
margin-left: -3px;
|
|
581
|
-
margin-top: 2px;
|
|
582
|
-
margin-right: -3px;
|
|
583
|
-
margin-bottom: 2px;
|
|
584
|
-
}
|
|
585
|
-
|
|
586
|
-
.dgrid_Table .dgrid-sortable .dgrid-sort-arrow.ui-icon {
|
|
587
|
-
margin: 0px;
|
|
1
|
+
.dijitTooltip {
|
|
2
|
+
position: absolute;
|
|
3
|
+
z-index: 2000;
|
|
4
|
+
display: block;
|
|
5
|
+
|
|
6
|
+
left: 0;
|
|
7
|
+
top: -10000px;
|
|
8
|
+
overflow: visible;
|
|
9
|
+
|
|
10
|
+
font-family: Verdana, Geneva, sans-serif;
|
|
11
|
+
font-size: 12px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.dijitTooltipContainer {
|
|
15
|
+
border: solid black 2px;
|
|
16
|
+
background: #b8b5b5;
|
|
17
|
+
color: black;
|
|
18
|
+
font-size: small;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.dijitTooltipFocusNode {
|
|
22
|
+
padding: 2px 2px 2px 2px;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.dijitTooltipConnector {
|
|
26
|
+
position: absolute;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.dj_a11y .dijitTooltipConnector {
|
|
30
|
+
display: none;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.dijitTooltipData {
|
|
34
|
+
display: none;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.dijitTooltip {
|
|
38
|
+
/* the outermost dom node, holding the connector and container */
|
|
39
|
+
background: transparent;
|
|
40
|
+
/* make the area on the sides of the arrow transparent */
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.dijitTooltipContainer {
|
|
44
|
+
background-color: #424242;
|
|
45
|
+
opacity: 1;
|
|
46
|
+
-ms-filter: none;
|
|
47
|
+
filter: none;
|
|
48
|
+
padding: 4px 8px;
|
|
49
|
+
border-radius: 3px;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.dijitTooltip .dijitTooltipContainer {
|
|
53
|
+
color: #fff;
|
|
54
|
+
border: 0 none;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.dijitTooltipConnector {
|
|
58
|
+
/* the arrow */
|
|
59
|
+
z-index: 2;
|
|
60
|
+
width: auto;
|
|
61
|
+
height: auto;
|
|
62
|
+
opacity: 1;
|
|
63
|
+
-ms-filter: none;
|
|
64
|
+
filter: none;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
.dijitTooltipABRight .dijitTooltipConnector {
|
|
68
|
+
/* above or below tooltip, but the arrow appears on the right,
|
|
69
|
+
and the right edges of target and tooltip are aligned rather than the left */
|
|
70
|
+
left: auto !important;
|
|
71
|
+
right: 8px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.dijitTooltipBelow {
|
|
75
|
+
/* leave room for arrow above content */
|
|
76
|
+
padding-top: 4px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.dijitTooltipBelow .dijitTooltipConnector {
|
|
80
|
+
/* the arrow piece for tooltips below an element */
|
|
81
|
+
top: 0;
|
|
82
|
+
left: 8px;
|
|
83
|
+
border-bottom: 4px solid #424242;
|
|
84
|
+
border-left: 4px solid transparent;
|
|
85
|
+
border-right: 4px solid transparent;
|
|
86
|
+
border-top: 0;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.dijitTooltipAbove {
|
|
90
|
+
/* leave room for arrow below content */
|
|
91
|
+
padding-bottom: 4px;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.dijitTooltipAbove .dijitTooltipConnector {
|
|
95
|
+
/* the arrow piece for tooltips above an element */
|
|
96
|
+
bottom: 0;
|
|
97
|
+
left: 8px;
|
|
98
|
+
border-top: 4px solid #424242;
|
|
99
|
+
border-left: 4px solid transparent;
|
|
100
|
+
border-right: 4px solid transparent;
|
|
101
|
+
border-bottom: 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.dijitTooltipLeft {
|
|
105
|
+
padding-right: 4px;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
.dijitTooltipLeft .dijitTooltipConnector {
|
|
109
|
+
/* the arrow piece for tooltips to the left of an element, bottom borders aligned */
|
|
110
|
+
right: 0;
|
|
111
|
+
border-left: 4px solid #424242;
|
|
112
|
+
border-bottom: 4px solid transparent;
|
|
113
|
+
border-top: 4px solid transparent;
|
|
114
|
+
border-right: 0;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
.dijitTooltipRight {
|
|
118
|
+
padding-left: 4px;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.dijitTooltipRight .dijitTooltipConnector {
|
|
122
|
+
/* the arrow piece for tooltips to the right of an element, bottom borders aligned */
|
|
123
|
+
left: 0;
|
|
124
|
+
border-bottom: 4px solid transparent;
|
|
125
|
+
border-top: 4px solid transparent;
|
|
126
|
+
border-right: 4px solid #424242;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
.dgrid {
|
|
130
|
+
position: relative;
|
|
131
|
+
overflow: hidden;
|
|
132
|
+
border: 1px solid #ddd;
|
|
133
|
+
height: 30em;
|
|
134
|
+
display: block;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.dgrid-header {
|
|
138
|
+
background-color: #eee;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.dgrid-header-row {
|
|
142
|
+
position: absolute;
|
|
143
|
+
right: 17px;
|
|
144
|
+
left: 0;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.dgrid-header-scroll {
|
|
148
|
+
position: absolute;
|
|
149
|
+
top: 0;
|
|
150
|
+
right: 0;
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.dgrid-footer {
|
|
154
|
+
position: absolute;
|
|
155
|
+
bottom: 0;
|
|
156
|
+
width: 100%;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.dgrid-header-hidden {
|
|
160
|
+
font-size: 0;
|
|
161
|
+
height: 0 !important;
|
|
162
|
+
border-top: none !important;
|
|
163
|
+
border-bottom: none !important;
|
|
164
|
+
margin-top: 0 !important;
|
|
165
|
+
margin-bottom: 0 !important;
|
|
166
|
+
padding-top: 0 !important;
|
|
167
|
+
padding-bottom: 0 !important;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.dgrid-footer-hidden {
|
|
171
|
+
display: none;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.dgrid-sortable {
|
|
175
|
+
cursor: pointer;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.dgrid-header,
|
|
179
|
+
.dgrid-header-row,
|
|
180
|
+
.dgrid-footer {
|
|
181
|
+
overflow: hidden;
|
|
182
|
+
background-color: #eee;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.dgrid-row-table {
|
|
186
|
+
border-collapse: collapse;
|
|
187
|
+
border: none;
|
|
188
|
+
table-layout: fixed;
|
|
189
|
+
empty-cells: show;
|
|
190
|
+
width: 100%;
|
|
191
|
+
height: 100%;
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.dgrid-cell {
|
|
195
|
+
padding: 3px;
|
|
196
|
+
text-align: left;
|
|
197
|
+
overflow: hidden;
|
|
198
|
+
vertical-align: top;
|
|
199
|
+
border: 1px solid #ddd;
|
|
200
|
+
border-top-style: none;
|
|
201
|
+
-webkit-box-sizing: border-box;
|
|
202
|
+
-moz-box-sizing: border-box;
|
|
203
|
+
box-sizing: border-box;
|
|
204
|
+
text-overflow: ellipsis;
|
|
205
|
+
white-space: nowrap;
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
.dgrid-content {
|
|
209
|
+
position: relative;
|
|
210
|
+
height: 99%;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.dgrid-scroller {
|
|
214
|
+
overflow-x: auto;
|
|
215
|
+
overflow-y: scroll;
|
|
216
|
+
position: absolute;
|
|
217
|
+
top: 0px;
|
|
218
|
+
margin-top: 25px;
|
|
219
|
+
bottom: 0px;
|
|
220
|
+
width: 100%;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
.dgrid-preload {
|
|
224
|
+
font-size: 0;
|
|
225
|
+
line-height: 0;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.dgrid-loading {
|
|
229
|
+
position: relative;
|
|
230
|
+
height: 100%;
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
.dgrid-above {
|
|
234
|
+
position: absolute;
|
|
235
|
+
bottom: 0;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.ui-icon {
|
|
239
|
+
width: 12px;
|
|
240
|
+
height: 16px;
|
|
241
|
+
background-image: url(data:image/png;base64,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);
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
.dgrid-sort-arrow {
|
|
245
|
+
background-position: -64px -16px;
|
|
246
|
+
display: block;
|
|
247
|
+
float: right;
|
|
248
|
+
margin: 0 4px 0 5px;
|
|
249
|
+
height: 12px;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.dgrid-sort-up .dgrid-sort-arrow {
|
|
253
|
+
background-position: 0px -16px;
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
.dgrid-selected {
|
|
257
|
+
background-color: #bbb;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
.dgrid-input {
|
|
261
|
+
width: 99%;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
html.has-mozilla .dgrid .dgrid-row:focus,
|
|
265
|
+
html.has-mozilla .dgrid .dgrid-cell:focus {
|
|
266
|
+
outline: 1px dotted;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
html.has-mozilla .dgrid-focus {
|
|
270
|
+
outline-offset: -1px;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
.dgrid-scrollbar-measure {
|
|
274
|
+
width: 100px;
|
|
275
|
+
height: 100px;
|
|
276
|
+
overflow: scroll;
|
|
277
|
+
position: absolute;
|
|
278
|
+
top: -9999px;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
.dgrid-autoheight {
|
|
282
|
+
height: auto;
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
.dgrid-autoheight .dgrid-scroller {
|
|
286
|
+
position: relative;
|
|
287
|
+
overflow-y: hidden;
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
.dgrid-autoheight .dgrid-header-scroll {
|
|
291
|
+
display: none;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.dgrid-autoheight .dgrid-header {
|
|
295
|
+
right: 0;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.dgrid-column-set {
|
|
299
|
+
overflow: hidden;
|
|
300
|
+
width: 100%;
|
|
301
|
+
position: relative;
|
|
302
|
+
height: 100%;
|
|
303
|
+
-ms-touch-action: pan-y;
|
|
304
|
+
touch-action: pan-y;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.dgrid-column-set-cell {
|
|
308
|
+
vertical-align: top;
|
|
309
|
+
height: 100%;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.dgrid-column-set-scroller-container {
|
|
313
|
+
font-size: 0;
|
|
314
|
+
position: absolute;
|
|
315
|
+
bottom: 0;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.dgrid-autoheight .dgrid-column-set-scroller-container {
|
|
319
|
+
position: relative;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
.dgrid-column-set-scroller {
|
|
323
|
+
display: inline-block;
|
|
324
|
+
overflow-x: auto;
|
|
325
|
+
overflow-y: hidden;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.dgrid-column-set-scroller-content {
|
|
329
|
+
height: 1px;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.ui-icon-triangle-1-e {
|
|
333
|
+
background-position: -32px -16px;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.ui-icon-triangle-1-se {
|
|
337
|
+
background-position: -48px -16px;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
.dgrid-expando-icon {
|
|
341
|
+
width: 16px;
|
|
342
|
+
height: 16px;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.dgrid-tree-container {
|
|
346
|
+
-webkit-transition-duration: 0.3s;
|
|
347
|
+
-moz-transition-duration: 0.3s;
|
|
348
|
+
-o-transition-duration: 0.3s;
|
|
349
|
+
-ms-transition-duration: 0.3s;
|
|
350
|
+
transition-duration: 0.3s;
|
|
351
|
+
overflow: hidden;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.dgrid-tree-container.dgrid-tree-resetting {
|
|
355
|
+
-webkit-transition-duration: 0;
|
|
356
|
+
-moz-transition-duration: 0;
|
|
357
|
+
-o-transition-duration: 0;
|
|
358
|
+
-ms-transition-duration: 0;
|
|
359
|
+
transition-duration: 0;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
.dgrid-hider-toggle {
|
|
363
|
+
background-position: 0 -192px;
|
|
364
|
+
background-color: transparent;
|
|
365
|
+
border: none;
|
|
366
|
+
cursor: pointer;
|
|
367
|
+
position: absolute;
|
|
368
|
+
right: 0;
|
|
369
|
+
top: 0;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.dgrid-rtl-swap .dgrid-hider-toggle {
|
|
373
|
+
right: auto;
|
|
374
|
+
left: 0;
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
.dgrid-hider-menu {
|
|
378
|
+
position: absolute;
|
|
379
|
+
top: 0;
|
|
380
|
+
right: 17px;
|
|
381
|
+
width: 184px;
|
|
382
|
+
background-color: #fff;
|
|
383
|
+
border: 1px solid #000;
|
|
384
|
+
z-index: 99999;
|
|
385
|
+
padding: 4px;
|
|
386
|
+
overflow-x: hidden;
|
|
387
|
+
overflow-y: auto;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.dgrid-rtl-swap .dgrid-hider-menu {
|
|
391
|
+
right: auto;
|
|
392
|
+
left: 17px;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.dgrid-hider-menu-row {
|
|
396
|
+
position: relative;
|
|
397
|
+
padding: 2px;
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
.dgrid-hider-menu-check {
|
|
401
|
+
position: absolute;
|
|
402
|
+
top: 2px;
|
|
403
|
+
left: 2px;
|
|
404
|
+
padding: 0;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
.dgrid-hider-menu-label {
|
|
408
|
+
display: block;
|
|
409
|
+
padding-left: 20px;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
.dgrid-header .dojoDndTarget .dgrid-cell {
|
|
413
|
+
display: table-cell;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
.dgrid-header .dojoDndItemBefore {
|
|
417
|
+
border-left: 2px dotted #000 !important;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
.dgrid-header .dojoDndItemAfter {
|
|
421
|
+
border-right: 2px dotted #000 !important;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.dgrid-column-resizer {
|
|
425
|
+
cursor: col-resize;
|
|
426
|
+
position: absolute;
|
|
427
|
+
width: 2px;
|
|
428
|
+
background-color: #666;
|
|
429
|
+
z-index: 1000;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.dgrid-resize-handle {
|
|
433
|
+
height: 100px;
|
|
434
|
+
width: 0;
|
|
435
|
+
position: absolute;
|
|
436
|
+
right: -4px;
|
|
437
|
+
top: -4px;
|
|
438
|
+
cursor: col-resize;
|
|
439
|
+
z-index: 999;
|
|
440
|
+
border-left: 8px solid transparent;
|
|
441
|
+
outline: none;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
.dgrid-resize-header-container {
|
|
445
|
+
height: 100%;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.dgrid-resize-guard {
|
|
449
|
+
cursor: col-resize;
|
|
450
|
+
position: absolute;
|
|
451
|
+
bottom: 0;
|
|
452
|
+
left: 0;
|
|
453
|
+
right: 0;
|
|
454
|
+
top: 0;
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
html.has-touch .dgrid-resize-handle {
|
|
458
|
+
border-left: 20px solid transparent;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
html.has-touch .dgrid-column-resizer {
|
|
462
|
+
width: 2px;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.dgrid-resize-header-container {
|
|
466
|
+
position: relative;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
.dgrid-header .dgrid-cell {
|
|
470
|
+
overflow: hidden;
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
.dgrid-spacer-row {
|
|
474
|
+
height: 0;
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
.dgrid-spacer-row th {
|
|
478
|
+
padding-top: 0;
|
|
479
|
+
padding-bottom: 0;
|
|
480
|
+
border-top: none;
|
|
481
|
+
border-bottom: none;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
.dgrid-status {
|
|
485
|
+
padding: 2px;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.dgrid-pagination .dgrid-status {
|
|
489
|
+
float: left;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.dgrid-pagination .dgrid-navigation,
|
|
493
|
+
.dgrid-pagination .dgrid-page-size {
|
|
494
|
+
float: right;
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.dgrid-navigation .dgrid-page-link {
|
|
498
|
+
cursor: pointer;
|
|
499
|
+
font-weight: bold;
|
|
500
|
+
text-decoration: none;
|
|
501
|
+
color: inherit;
|
|
502
|
+
padding: 0 4px;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
.dgrid-first,
|
|
506
|
+
.dgrid-last,
|
|
507
|
+
.dgrid-next,
|
|
508
|
+
.dgrid-previous {
|
|
509
|
+
font-size: 130%;
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
.dgrid-pagination .dgrid-page-disabled {
|
|
513
|
+
color: #aaa;
|
|
514
|
+
cursor: default;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.dgrid-page-input {
|
|
518
|
+
margin-top: 1px;
|
|
519
|
+
width: 2em;
|
|
520
|
+
text-align: center;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.dgrid-page-size {
|
|
524
|
+
margin: 1px 4px 0 4px;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.dgrid-rtl-swap .dgrid-header-row {
|
|
528
|
+
right: 0;
|
|
529
|
+
left: 17px;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.dgrid-rtl-swap .dgrid-header-scroll {
|
|
533
|
+
left: 0px;
|
|
534
|
+
right: auto;
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
.dgrid-rtl .dgrid-cell {
|
|
538
|
+
text-align: right;
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
.dgrid-rtl .dgrid-sort-arrow {
|
|
542
|
+
float: left;
|
|
543
|
+
margin: 0 5px 0 4px;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
.dgrid-rtl .ui-icon-triangle-1-e {
|
|
547
|
+
background-position: -96px -16px;
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
.dgrid-rtl .ui-icon-triangle-1-se {
|
|
551
|
+
background-position: -80px -16px;
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
.dgrid-rtl .dgrid-pagination .dgrid-status {
|
|
555
|
+
float: right;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
.dgrid-rtl .dgrid-pagination .dgrid-page-size {
|
|
559
|
+
float: right;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.dgrid-rtl .dgrid-pagination .dgrid-navigation {
|
|
563
|
+
float: left;
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
.dgrid-rtl.dgrid-autoheight .dgrid-header {
|
|
567
|
+
left: 0;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
.dgrid_Table .placeholder {
|
|
571
|
+
border: none;
|
|
572
|
+
padding: 0px;
|
|
573
|
+
overflow: hidden;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.dgrid_Table .dgrid-fakeline {
|
|
577
|
+
border: 0px;
|
|
578
|
+
border-bottom: 1px solid rgb(221, 221, 221);
|
|
579
|
+
margin: 0px;
|
|
580
|
+
margin-left: -3px;
|
|
581
|
+
margin-top: 2px;
|
|
582
|
+
margin-right: -3px;
|
|
583
|
+
margin-bottom: 2px;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
.dgrid_Table .dgrid-sortable .dgrid-sort-arrow.ui-icon {
|
|
587
|
+
margin: 0px;
|
|
588
588
|
}
|