@liedekef/ftable 1.1.13 → 1.1.14
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/ftable.esm.js +5 -1
- package/ftable.js +5 -1
- package/ftable.min.js +1 -1
- package/ftable.umd.js +5 -1
- package/package.json +1 -1
- package/themes/basic/ftable_basic.css +74 -37
- package/themes/basic/ftable_basic.less +0 -61
- package/themes/basic/ftable_basic.min.css +1 -1
- package/themes/ftable_theme_base.less +86 -10
- package/themes/lightcolor/blue/ftable.css +75 -66
- package/themes/lightcolor/blue/ftable.min.css +1 -1
- package/themes/lightcolor/ftable_lightcolor_base.less +0 -71
- package/themes/lightcolor/gray/ftable.css +75 -66
- package/themes/lightcolor/gray/ftable.min.css +1 -1
- package/themes/lightcolor/green/ftable.css +75 -66
- package/themes/lightcolor/green/ftable.min.css +1 -1
- package/themes/lightcolor/orange/ftable.css +75 -66
- package/themes/lightcolor/orange/ftable.min.css +1 -1
- package/themes/lightcolor/red/ftable.css +75 -66
- package/themes/lightcolor/red/ftable.min.css +1 -1
- package/themes/metro/blue/ftable.css +75 -74
- package/themes/metro/blue/ftable.min.css +1 -1
- package/themes/metro/brown/ftable.css +75 -74
- package/themes/metro/brown/ftable.min.css +1 -1
- package/themes/metro/crimson/ftable.css +75 -74
- package/themes/metro/crimson/ftable.min.css +1 -1
- package/themes/metro/darkgray/ftable.css +75 -74
- package/themes/metro/darkgray/ftable.min.css +1 -1
- package/themes/metro/darkorange/ftable.css +75 -74
- package/themes/metro/darkorange/ftable.min.css +1 -1
- package/themes/metro/ftable_metro_base.less +0 -96
- package/themes/metro/green/ftable.css +75 -74
- package/themes/metro/green/ftable.min.css +1 -1
- package/themes/metro/lightgray/ftable.css +75 -74
- package/themes/metro/lightgray/ftable.min.css +1 -1
- package/themes/metro/pink/ftable.css +75 -74
- package/themes/metro/pink/ftable.min.css +1 -1
- package/themes/metro/purple/ftable.css +75 -74
- package/themes/metro/purple/ftable.min.css +1 -1
- package/themes/metro/red/ftable.css +75 -74
- package/themes/metro/red/ftable.min.css +1 -1
- package/themes/basic/clone.png +0 -0
- package/themes/basic/close.png +0 -0
- package/themes/basic/column-asc.png +0 -0
- package/themes/basic/column-desc.png +0 -0
- package/themes/basic/column-sortable.png +0 -0
- package/themes/basic/delete.png +0 -0
- package/themes/basic/edit.png +0 -0
- package/themes/lightcolor/add.png +0 -0
- package/themes/lightcolor/blue/loading.gif +0 -0
- package/themes/lightcolor/clone.png +0 -0
- package/themes/lightcolor/close.png +0 -0
- package/themes/lightcolor/column-asc.png +0 -0
- package/themes/lightcolor/column-desc.png +0 -0
- package/themes/lightcolor/column-sortable.png +0 -0
- package/themes/lightcolor/delete.png +0 -0
- package/themes/lightcolor/edit.png +0 -0
- package/themes/lightcolor/gray/loading.gif +0 -0
- package/themes/lightcolor/green/loading.gif +0 -0
- package/themes/lightcolor/orange/loading.gif +0 -0
- package/themes/lightcolor/red/loading.gif +0 -0
- package/themes/metro/add.png +0 -0
- package/themes/metro/blue/loading.gif +0 -0
- package/themes/metro/brown/loading.gif +0 -0
- package/themes/metro/clone.png +0 -0
- package/themes/metro/close.png +0 -0
- package/themes/metro/column-asc.png +0 -0
- package/themes/metro/column-desc.png +0 -0
- package/themes/metro/column-sortable.png +0 -0
- package/themes/metro/crimson/loading.gif +0 -0
- package/themes/metro/darkgray/loading.gif +0 -0
- package/themes/metro/darkorange/loading.gif +0 -0
- package/themes/metro/delete.png +0 -0
- package/themes/metro/edit.png +0 -0
- package/themes/metro/green/loading.gif +0 -0
- package/themes/metro/lightgray/loading.gif +0 -0
- package/themes/metro/pink/loading.gif +0 -0
- package/themes/metro/purple/loading.gif +0 -0
- package/themes/metro/red/loading.gif +0 -0
|
@@ -130,11 +130,6 @@
|
|
|
130
130
|
position: relative;
|
|
131
131
|
text-align: left;
|
|
132
132
|
|
|
133
|
-
.ftable-close-button
|
|
134
|
-
{
|
|
135
|
-
.dock(right);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
133
|
// Toolbar -------------------------------------------------------------
|
|
139
134
|
|
|
140
135
|
div.ftable-toolbar
|
|
@@ -161,20 +156,31 @@
|
|
|
161
156
|
vertical-align: middle;
|
|
162
157
|
width: 16px;
|
|
163
158
|
height: 16px;
|
|
159
|
+
|
|
164
160
|
}
|
|
165
161
|
|
|
162
|
+
span.ftable-toolbar-item-icon.ftable-toolbar-item-add-record {
|
|
163
|
+
display: inline-flex;
|
|
164
|
+
align-items: center;
|
|
165
|
+
background-color: transparent;
|
|
166
|
+
justify-content: center;
|
|
167
|
+
width: 16px;
|
|
168
|
+
height: 16px;
|
|
169
|
+
|
|
170
|
+
&::before {
|
|
171
|
+
content: "➕";
|
|
172
|
+
font-size: 14px;
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
|
|
166
176
|
span.ftable-toolbar-item-text
|
|
167
177
|
{
|
|
168
178
|
display: inline-block;
|
|
169
179
|
margin: 2px;
|
|
170
180
|
vertical-align: middle;
|
|
171
181
|
}
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
182
|
|
|
175
|
-
|
|
176
|
-
{
|
|
177
|
-
margin-right: 30px;
|
|
183
|
+
}
|
|
178
184
|
}
|
|
179
185
|
}
|
|
180
186
|
|
|
@@ -281,6 +287,55 @@
|
|
|
281
287
|
cursor: pointer;
|
|
282
288
|
}
|
|
283
289
|
}
|
|
290
|
+
|
|
291
|
+
.ftable-edit-command-button
|
|
292
|
+
{
|
|
293
|
+
width: 16px;
|
|
294
|
+
height: 16px;
|
|
295
|
+
background-color: transparent;
|
|
296
|
+
&::before {
|
|
297
|
+
content: "📝";
|
|
298
|
+
font-size: 14px;
|
|
299
|
+
display: flex;
|
|
300
|
+
align-items: center;
|
|
301
|
+
justify-content: center;
|
|
302
|
+
width: 100%;
|
|
303
|
+
height: 100%;
|
|
304
|
+
}
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.ftable-clone-command-button
|
|
308
|
+
{
|
|
309
|
+
width: 16px;
|
|
310
|
+
height: 16px;
|
|
311
|
+
background-color: transparent;
|
|
312
|
+
&::before {
|
|
313
|
+
content: "📋";
|
|
314
|
+
font-size: 14px;
|
|
315
|
+
display: flex;
|
|
316
|
+
align-items: center;
|
|
317
|
+
justify-content: center;
|
|
318
|
+
width: 100%;
|
|
319
|
+
height: 100%;
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.ftable-delete-command-button
|
|
324
|
+
{
|
|
325
|
+
width: 16px;
|
|
326
|
+
height: 16px;
|
|
327
|
+
background-color: transparent;
|
|
328
|
+
&::before {
|
|
329
|
+
content: "🗑️ ";
|
|
330
|
+
font-size: 14px;
|
|
331
|
+
display: flex;
|
|
332
|
+
align-items: center;
|
|
333
|
+
justify-content: center;
|
|
334
|
+
width: 100%;
|
|
335
|
+
height: 100%;
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
284
339
|
}
|
|
285
340
|
|
|
286
341
|
&.ftable-no-data-row
|
|
@@ -606,4 +661,25 @@
|
|
|
606
661
|
content: attr(data-yes);
|
|
607
662
|
}
|
|
608
663
|
|
|
664
|
+
.ftable-sortable-text {
|
|
665
|
+
padding-right: 20px; /* Space for sort indicator */
|
|
666
|
+
}
|
|
667
|
+
div.ftable-main-container table.ftable thead th.ftable-column-header-sortable div.ftable-column-header-container::after {
|
|
668
|
+
content: " ⇅";
|
|
669
|
+
position: absolute;
|
|
670
|
+
right: 3px;
|
|
671
|
+
top: 50%;
|
|
672
|
+
transform: translateY(-50%);
|
|
673
|
+
color: #999;
|
|
674
|
+
font-size: 1em;
|
|
675
|
+
}
|
|
676
|
+
div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-asc div.ftable-column-header-container::after {
|
|
677
|
+
content: " ⇡";
|
|
678
|
+
font-weight: bold;
|
|
679
|
+
}
|
|
680
|
+
div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-desc div.ftable-column-header-container::after {
|
|
681
|
+
content: " ⇣";
|
|
682
|
+
font-weight: bold;
|
|
683
|
+
}
|
|
684
|
+
|
|
609
685
|
}
|
|
@@ -7,12 +7,6 @@ div.ftable-main-container div.ftable-title {
|
|
|
7
7
|
position: relative;
|
|
8
8
|
text-align: left;
|
|
9
9
|
}
|
|
10
|
-
div.ftable-main-container div.ftable-title .ftable-close-button {
|
|
11
|
-
right: 0px;
|
|
12
|
-
top: 0px;
|
|
13
|
-
bottom: 0px;
|
|
14
|
-
position: absolute;
|
|
15
|
-
}
|
|
16
10
|
div.ftable-main-container div.ftable-title div.ftable-toolbar {
|
|
17
11
|
bottom: 0px;
|
|
18
12
|
right: 0px;
|
|
@@ -36,14 +30,23 @@ div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-it
|
|
|
36
30
|
width: 16px;
|
|
37
31
|
height: 16px;
|
|
38
32
|
}
|
|
33
|
+
div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-icon.ftable-toolbar-item-add-record {
|
|
34
|
+
display: inline-flex;
|
|
35
|
+
align-items: center;
|
|
36
|
+
background-color: transparent;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
width: 16px;
|
|
39
|
+
height: 16px;
|
|
40
|
+
}
|
|
41
|
+
div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-icon.ftable-toolbar-item-add-record::before {
|
|
42
|
+
content: "➕";
|
|
43
|
+
font-size: 14px;
|
|
44
|
+
}
|
|
39
45
|
div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-text {
|
|
40
46
|
display: inline-block;
|
|
41
47
|
margin: 2px;
|
|
42
48
|
vertical-align: middle;
|
|
43
49
|
}
|
|
44
|
-
div.ftable-main-container div.ftable-title .ftable-close-button + div.ftable-toolbar {
|
|
45
|
-
margin-right: 30px;
|
|
46
|
-
}
|
|
47
50
|
div.ftable-main-container table.ftable {
|
|
48
51
|
width: 100%;
|
|
49
52
|
}
|
|
@@ -118,6 +121,48 @@ div.ftable-main-container table.ftable tbody tr > td.ftable-selecting-column {
|
|
|
118
121
|
div.ftable-main-container table.ftable tbody tr > td.ftable-selecting-column input {
|
|
119
122
|
cursor: pointer;
|
|
120
123
|
}
|
|
124
|
+
div.ftable-main-container table.ftable tbody tr > td .ftable-edit-command-button {
|
|
125
|
+
width: 16px;
|
|
126
|
+
height: 16px;
|
|
127
|
+
background-color: transparent;
|
|
128
|
+
}
|
|
129
|
+
div.ftable-main-container table.ftable tbody tr > td .ftable-edit-command-button::before {
|
|
130
|
+
content: "📝";
|
|
131
|
+
font-size: 14px;
|
|
132
|
+
display: flex;
|
|
133
|
+
align-items: center;
|
|
134
|
+
justify-content: center;
|
|
135
|
+
width: 100%;
|
|
136
|
+
height: 100%;
|
|
137
|
+
}
|
|
138
|
+
div.ftable-main-container table.ftable tbody tr > td .ftable-clone-command-button {
|
|
139
|
+
width: 16px;
|
|
140
|
+
height: 16px;
|
|
141
|
+
background-color: transparent;
|
|
142
|
+
}
|
|
143
|
+
div.ftable-main-container table.ftable tbody tr > td .ftable-clone-command-button::before {
|
|
144
|
+
content: "📋";
|
|
145
|
+
font-size: 14px;
|
|
146
|
+
display: flex;
|
|
147
|
+
align-items: center;
|
|
148
|
+
justify-content: center;
|
|
149
|
+
width: 100%;
|
|
150
|
+
height: 100%;
|
|
151
|
+
}
|
|
152
|
+
div.ftable-main-container table.ftable tbody tr > td .ftable-delete-command-button {
|
|
153
|
+
width: 16px;
|
|
154
|
+
height: 16px;
|
|
155
|
+
background-color: transparent;
|
|
156
|
+
}
|
|
157
|
+
div.ftable-main-container table.ftable tbody tr > td .ftable-delete-command-button::before {
|
|
158
|
+
content: "🗑️ ";
|
|
159
|
+
font-size: 14px;
|
|
160
|
+
display: flex;
|
|
161
|
+
align-items: center;
|
|
162
|
+
justify-content: center;
|
|
163
|
+
width: 100%;
|
|
164
|
+
height: 100%;
|
|
165
|
+
}
|
|
121
166
|
div.ftable-main-container table.ftable tbody tr.ftable-no-data-row {
|
|
122
167
|
text-align: center;
|
|
123
168
|
}
|
|
@@ -326,6 +371,27 @@ div.ftable-column-selection-container ul.ftable-column-select-list li input[type
|
|
|
326
371
|
.ftable-yesno-check-input:checked ~ .ftable-yesno-check-text:before {
|
|
327
372
|
content: attr(data-yes);
|
|
328
373
|
}
|
|
374
|
+
.ftable-sortable-text {
|
|
375
|
+
padding-right: 20px;
|
|
376
|
+
/* Space for sort indicator */
|
|
377
|
+
}
|
|
378
|
+
div.ftable-main-container table.ftable thead th.ftable-column-header-sortable div.ftable-column-header-container::after {
|
|
379
|
+
content: " ⇅";
|
|
380
|
+
position: absolute;
|
|
381
|
+
right: 3px;
|
|
382
|
+
top: 50%;
|
|
383
|
+
transform: translateY(-50%);
|
|
384
|
+
color: #999;
|
|
385
|
+
font-size: 1em;
|
|
386
|
+
}
|
|
387
|
+
div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-asc div.ftable-column-header-container::after {
|
|
388
|
+
content: " ⇡";
|
|
389
|
+
font-weight: bold;
|
|
390
|
+
}
|
|
391
|
+
div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-desc div.ftable-column-header-container::after {
|
|
392
|
+
content: " ⇣";
|
|
393
|
+
font-weight: bold;
|
|
394
|
+
}
|
|
329
395
|
div.ftable-main-container {
|
|
330
396
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
331
397
|
font-size: 1em;
|
|
@@ -345,30 +411,12 @@ div.ftable-main-container div.ftable-title {
|
|
|
345
411
|
div.ftable-main-container div.ftable-title div.ftable-title-text {
|
|
346
412
|
font-weight: bold;
|
|
347
413
|
}
|
|
348
|
-
div.ftable-main-container div.ftable-title .ftable-close-button {
|
|
349
|
-
right: 6px;
|
|
350
|
-
top: 6px;
|
|
351
|
-
bottom: 6px;
|
|
352
|
-
position: absolute;
|
|
353
|
-
opacity: 0.8;
|
|
354
|
-
filter: alpha(opacity=80);
|
|
355
|
-
background: url('../close.png') no-repeat;
|
|
356
|
-
width: 22px;
|
|
357
|
-
height: 22px;
|
|
358
|
-
}
|
|
359
|
-
div.ftable-main-container div.ftable-title .ftable-close-button:hover {
|
|
360
|
-
opacity: 1;
|
|
361
|
-
filter: alpha(opacity=100);
|
|
362
|
-
}
|
|
363
414
|
div.ftable-main-container div.ftable-title div.ftable-toolbar {
|
|
364
415
|
bottom: 0px;
|
|
365
416
|
right: 0px;
|
|
366
417
|
position: absolute;
|
|
367
418
|
line-height: 26px;
|
|
368
419
|
}
|
|
369
|
-
div.ftable-main-container div.ftable-title div.ftable-toolbar span.ftable-toolbar-item.ftable-toolbar-item-add-record span.ftable-toolbar-item-icon {
|
|
370
|
-
background-image: url('../add.png');
|
|
371
|
-
}
|
|
372
420
|
div.ftable-main-container table.ftable {
|
|
373
421
|
border-collapse: collapse;
|
|
374
422
|
border-spacing: 0;
|
|
@@ -400,15 +448,6 @@ div.ftable-main-container table.ftable thead th.ftable-column-header span.ftable
|
|
|
400
448
|
div.ftable-main-container table.ftable thead th.ftable-column-header-select {
|
|
401
449
|
padding: 5px;
|
|
402
450
|
}
|
|
403
|
-
div.ftable-main-container table.ftable thead th.ftable-column-header-sortable div.ftable-column-header-container {
|
|
404
|
-
background: url('../column-sortable.png') no-repeat right;
|
|
405
|
-
}
|
|
406
|
-
div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-asc div.ftable-column-header-container {
|
|
407
|
-
background: url('../column-asc.png') no-repeat right;
|
|
408
|
-
}
|
|
409
|
-
div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-desc div.ftable-column-header-container {
|
|
410
|
-
background: url('../column-desc.png') no-repeat right;
|
|
411
|
-
}
|
|
412
451
|
div.ftable-main-container table.ftable tbody > tr {
|
|
413
452
|
padding: 2px;
|
|
414
453
|
background: #f8f8f8;
|
|
@@ -421,21 +460,6 @@ div.ftable-main-container table.ftable tbody > tr > td {
|
|
|
421
460
|
div.ftable-main-container table.ftable tbody > tr > td:first-child {
|
|
422
461
|
border-left: none;
|
|
423
462
|
}
|
|
424
|
-
div.ftable-main-container table.ftable tbody > tr > td .ftable-edit-command-button {
|
|
425
|
-
background: url('../edit.png') no-repeat;
|
|
426
|
-
width: 16px;
|
|
427
|
-
height: 16px;
|
|
428
|
-
}
|
|
429
|
-
div.ftable-main-container table.ftable tbody > tr > td .ftable-clone-command-button {
|
|
430
|
-
background: url('../clone.png') no-repeat;
|
|
431
|
-
width: 16px;
|
|
432
|
-
height: 16px;
|
|
433
|
-
}
|
|
434
|
-
div.ftable-main-container table.ftable tbody > tr > td .ftable-delete-command-button {
|
|
435
|
-
background: url('../delete.png') no-repeat;
|
|
436
|
-
width: 16px;
|
|
437
|
-
height: 16px;
|
|
438
|
-
}
|
|
439
463
|
div.ftable-main-container table.ftable tbody > tr.ftable-row-even {
|
|
440
464
|
background: #f0f0f0;
|
|
441
465
|
}
|
|
@@ -540,21 +564,6 @@ form.ftable-dialog-form {
|
|
|
540
564
|
form.ftable-dialog-form div.ftable-input-label {
|
|
541
565
|
font-weight: bold;
|
|
542
566
|
}
|
|
543
|
-
div.ftable-busy-message {
|
|
544
|
-
-webkit-text-shadow: 0 1px 0 #333;
|
|
545
|
-
text-shadow: 0 1px 0 #333;
|
|
546
|
-
-webkit-border-radius: 3px;
|
|
547
|
-
-moz-border-radius: 3px;
|
|
548
|
-
border-radius: 3px;
|
|
549
|
-
-webkit-box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
550
|
-
-moz-box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
551
|
-
box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
552
|
-
color: #fff;
|
|
553
|
-
border: 1px solid;
|
|
554
|
-
padding: 3px 5px 5px 27px;
|
|
555
|
-
background: url('../blue/loading.gif') no-repeat;
|
|
556
|
-
background-position: 5px;
|
|
557
|
-
}
|
|
558
567
|
div.ftable-column-selection-container {
|
|
559
568
|
-webkit-border-radius: 3px;
|
|
560
569
|
-moz-border-radius: 3px;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
div.ftable-main-container{position:relative}div.ftable-main-container div.ftable-title{position:relative;text-align:left}div.ftable-main-container div.ftable-title .ftable-close-button{right:0;top:0;bottom:0;position:absolute}div.ftable-main-container div.ftable-title div.ftable-toolbar{bottom:0;right:0;position:absolute;display:inline-block;margin-right:5px}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item{position:relative;display:inline-block;margin:0 0 0 5px;cursor:pointer;font-size:.9em;padding:2px;vertical-align:bottom}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-icon{display:inline-block;margin:2px;vertical-align:middle;width:16px;height:16px}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-text{display:inline-block;margin:2px;vertical-align:middle}div.ftable-main-container div.ftable-title .ftable-close-button+div.ftable-toolbar{margin-right:30px}div.ftable-main-container table.ftable{width:100%}div.ftable-main-container table.ftable thead th{padding:0 3px 0 6px;vertical-align:middle;text-align:left}div.ftable-main-container table.ftable thead th.ftable-column-header{height:1px}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container{position:relative;display:table;width:100%;height:100%!important}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container span.ftable-column-header-text{display:table-cell;vertical-align:middle;padding-top:4px;padding-bottom:3px}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container div.ftable-column-resize-handler{position:absolute;display:table-cell;vertical-align:middle;height:100%;width:8px;right:-8px;z-index:2;cursor:col-resize}div.ftable-main-container table.ftable thead th.ftable-command-column-header{text-align:center;width:1%}div.ftable-main-container table.ftable thead th.ftable-column-header-select{text-align:center;width:1%}div.ftable-main-container table.ftable thead th.ftable-column-header-select input{cursor:pointer}div.ftable-main-container table.ftable thead th.ftable-column-header-sortable{cursor:pointer}div.ftable-main-container table.ftable tbody tr>td .ftable-command-button{margin:5px;padding:0;cursor:pointer;border:none;display:inline}div.ftable-main-container table.ftable tbody tr>td .ftable-command-button span{display:none}div.ftable-main-container table.ftable tbody tr>td.ftable-command-column{text-align:center;vertical-align:middle}div.ftable-main-container table.ftable tbody tr>td.ftable-selecting-column{text-align:center;vertical-align:middle}div.ftable-main-container table.ftable tbody tr>td.ftable-selecting-column input{cursor:pointer}div.ftable-main-container table.ftable tbody tr.ftable-no-data-row{text-align:center}div.ftable-main-container>div.ftable-bottom-panel{position:relative;min-height:24px;text-align:left}div.ftable-main-container>div.ftable-bottom-panel div.ftable-right-area{right:0;top:0;bottom:0;position:absolute}div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list{display:inline-block}div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-first,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-last,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-next,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-previous,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-space{padding:2px 5px;display:inline-block;cursor:pointer}div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-space{cursor:default}div.ftable-main-container>div.ftable-bottom-panel span.ftable-page-size-change{margin-left:5px}div.ftable-main-container>div.ftable-bottom-panel span.ftable-goto-page{margin-left:5px}div.ftable-main-container>div.ftable-bottom-panel span.ftable-goto-page input[type=text]{width:22px}div.ftable-main-container>div.ftable-bottom-panel span.ftable-page-info{vertical-align:middle}div.ftable-main-container div.ftable-column-resize-bar{opacity:.5;position:absolute;width:1px;background-color:#000}form.ftable-dialog-form div.ftable-input-field-container{padding:2px 0 3px 0;border-bottom:1px solid #ddd}form.ftable-dialog-form div.ftable-input-field-container:last-child{border:none}form.ftable-dialog-form div.ftable-input-label{padding:2px 3px;font-size:1.1em;color:#666}form.ftable-dialog-form div.ftable-input{padding:2px}form.ftable-dialog-form span.ftable-option-text-clickable{position:relative;top:-2px}form.ftable-dialog-form div.ftable-textarea-input textarea{width:300px;min-height:60px}form.ftable-dialog-form div.ftable-checkbox-input span,form.ftable-dialog-form div.ftable-radio-input span{padding-left:4px}form.ftable-dialog-form div.ftable-checkbox-input input,form.ftable-dialog-form div.ftable-radio-input input,form.ftable-dialog-form span.ftable-option-text-clickable{cursor:pointer}.ftable-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);z-index:1000;display:none}.ftable-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background-color:#fff;padding:20px;border-radius:5px;box-shadow:0 2px 10px rgba(0,0,0,.3);z-index:1001;max-width:90%;max-height:90vh;overflow:auto}.ftable-modal-header{margin-bottom:15px;margin-top:0;padding-bottom:10px;border-bottom:1px solid #eee}.ftable-modal-footer{margin-top:15px;padding-top:10px;border-top:1px solid #eee;text-align:right}.ftable-modal-close{position:absolute;top:10px;right:10px;cursor:pointer;font-size:28px;font-weight:700;color:#aaa}.ftable-busy-modal{padding:0}.ftable-dialog-button{opacity:.8;border:1px solid #ccc;padding:5px;margin:5px}.ftable-dialog-button:hover{background-color:#dedede}div.ftable-busy-message{cursor:wait;margin:0}div.ftable-contextmenu-overlay{position:fixed;left:0;top:0;width:100%;height:100%;z-index:100}.ftable-table-div{display:block;overflow-x:auto}.ftable-table-div>table{overflow:hidden}.ftable-toolbarsearch{width:90%;min-width:fit-content}th.ftable-toolbarsearch-reset{text-align:center!important}div.ftable-column-selection-container{position:absolute;border:1px solid #c8c8c8;background:#fff;color:#000;z-index:101;padding:5px}div.ftable-column-selection-container ul.ftable-column-select-list{margin:0;padding:0;list-style:none}div.ftable-column-selection-container ul.ftable-column-select-list li{margin:0;padding:2px 0}div.ftable-column-selection-container ul.ftable-column-select-list li label span{position:relative;top:-1px;margin-left:4px}div.ftable-column-selection-container ul.ftable-column-select-list li input[type=checkbox]{cursor:pointer}.ftable-yesno-check-wrapper{display:flex;align-items:center}.ftable-yesno-check-text:before{content:attr(data-no)}.ftable-yesno-check-input:checked~.ftable-yesno-check-text:before{content:attr(data-yes)}div.ftable-main-container{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:1em;font-weight:400;color:#222}div.ftable-main-container div.ftable-title{-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;position:relative;line-height:34px;box-shadow:inset 0 1px 0 0 rgba(255,255,255,.5);padding-left:10px;border:1px solid}div.ftable-main-container div.ftable-title div.ftable-title-text{font-weight:700}div.ftable-main-container div.ftable-title .ftable-close-button{right:6px;top:6px;bottom:6px;position:absolute;opacity:.8;background:url('../close.png') no-repeat;width:22px;height:22px}div.ftable-main-container div.ftable-title .ftable-close-button:hover{opacity:1}div.ftable-main-container div.ftable-title div.ftable-toolbar{bottom:0;right:0;position:absolute;line-height:26px}div.ftable-main-container div.ftable-title div.ftable-toolbar span.ftable-toolbar-item.ftable-toolbar-item-add-record span.ftable-toolbar-item-icon{background-image:url('../add.png')}div.ftable-main-container table.ftable{border-collapse:collapse;border-spacing:0;border-top:0;border-right:1px solid #c8c8c8;border-bottom:1px solid #c8c8c8;border-left:1px solid #c8c8c8}div.ftable-main-container table.ftable thead{background:url('../bg-thead.png') repeat-x scroll top left #ddd;border-bottom:1px solid #c8c8c8}div.ftable-main-container table.ftable thead th{border-left:1px solid #fff;border-right:1px solid #c8c8c8}div.ftable-main-container table.ftable thead th:first-child{border-left:none}div.ftable-main-container table.ftable thead thth:last-child{border-right:none}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container{height:20px}div.ftable-main-container table.ftable thead th.ftable-column-header span.ftable-column-header-text{margin-top:3px}div.ftable-main-container table.ftable thead th.ftable-column-header-select{padding:5px}div.ftable-main-container table.ftable thead th.ftable-column-header-sortable div.ftable-column-header-container{background:url('../column-sortable.png') no-repeat right}div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-asc div.ftable-column-header-container{background:url('../column-asc.png') no-repeat right}div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-desc div.ftable-column-header-container{background:url('../column-desc.png') no-repeat right}div.ftable-main-container table.ftable tbody>tr{padding:2px;background:#f8f8f8;height:30px}div.ftable-main-container table.ftable tbody>tr>td{padding:5px;border-left:1px dotted #bebebe}div.ftable-main-container table.ftable tbody>tr>td:first-child{border-left:none}div.ftable-main-container table.ftable tbody>tr>td .ftable-edit-command-button{background:url('../edit.png') no-repeat;width:16px;height:16px}div.ftable-main-container table.ftable tbody>tr>td .ftable-clone-command-button{background:url('../clone.png') no-repeat;width:16px;height:16px}div.ftable-main-container table.ftable tbody>tr>td .ftable-delete-command-button{background:url('../delete.png') no-repeat;width:16px;height:16px}div.ftable-main-container table.ftable tbody>tr.ftable-row-even{background:#f0f0f0}div.ftable-main-container table.ftable tbody>tr:hover{background:#e8eaef}div.ftable-main-container table.ftable tbody>tr.ftable-row-selected{-webkit-text-shadow:0 1px 0 #333;text-shadow:0 1px 0 #333;color:#fcfcfc}div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td{background-color:#bbb;padding:2px 1px 2px 2px}div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td .ftable{border:none;border-bottom:1px solid #c8c8c8}div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td .ftable-bottom-panel,div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td .ftable-title{-webkit-border-radius:0px;-moz-border-radius:0;border-radius:0;border:none}div.ftable-main-container div.ftable-bottom-panel{-webkit-border-radius:0px 0px 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;padding:1px;background:#fff;border:1px solid #c8c8c8;border-top:none;min-height:24px;line-height:16px;font-size:.9em}div.ftable-main-container div.ftable-bottom-panel div.ftable-right-area{padding:2px}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list{margin:2px}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-first,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-last,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-next,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-previous,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-space{-webkit-text-shadow:0 1px 0 white;text-shadow:0 1px 0 #fff;background-color:#ebebeb;border-style:solid;border-width:1px;border-color:#fff #b5b5b5 #b5b5b5 #fff;padding:2px 5px}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-first:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-last:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-next:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-previous:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number:hover{background-color:#ddd}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active{-webkit-text-shadow:0 1px 0 #666;text-shadow:0 1px 0 #666;color:#fcfcfc}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled{opacity:.5}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled.ftable-page-number-active{opacity:1}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled:hover{background-color:#ebebeb}div.ftable-main-container div.ftable-bottom-panel .ftable-page-info{display:inline-block;padding:4px}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record{margin:3px}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a{font-weight:700;text-decoration:none}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a:hover{text-decoration:underline}form.ftable-dialog-form{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:1em;font-weight:400}form.ftable-dialog-form div.ftable-input-label{font-weight:700}div.ftable-busy-message{-webkit-text-shadow:0 1px 0 #333;text-shadow:0 1px 0 #333;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:2px 2px 4px rgba(50,51,50,.75);-moz-box-shadow:2px 2px 4px rgba(50,51,50,.75);box-shadow:2px 2px 4px rgba(50,51,50,.75);color:#fff;border:1px solid;padding:3px 5px 5px 27px;background:url('../blue/loading.gif') no-repeat;background-position:5px}div.ftable-column-selection-container{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:2px 2px 4px rgba(50,51,50,.75);-moz-box-shadow:2px 2px 4px rgba(50,51,50,.75);box-shadow:2px 2px 4px rgba(50,51,50,.75)}div.ftable-main-container div.ftable-title{background:#78b1ed;background:-moz-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#78b1ed),color-stop(100%,#417bb5));background:-webkit-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:-o-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:-ms-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:linear-gradient(to bottom,#78b1ed 0,#417bb5 100%);border-color:#2b5177}div.ftable-main-container div.ftable-title div.ftable-title-text{-webkit-text-shadow:0 1px 0 #666;text-shadow:0 1px 0 #666;color:#fff}div.ftable-main-container div.ftable-title div.ftable-toolbar span.ftable-toolbar-item{color:#fff}div.ftable-main-container div.ftable-title div.ftable-toolbar span.ftable-toolbar-item.ftable-toolbar-item-hover{background-color:#417bb5}div.ftable-main-container table.ftable tbody>tr.ftable-row-selected,div.ftable-main-container table.ftable tbody>tr.ftable-row-selected:hover{background-color:#5f9cdc}div.ftable-main-container table.ftable tbody>tr.ftable-row-created,div.ftable-main-container table.ftable tbody>tr.ftable-row-deleting,div.ftable-main-container table.ftable tbody>tr.ftable-row-updated{background-color:#5f9cdc}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active:hover{background-color:#2b5177;border-color:#092f55}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a{color:#2b5177}div.ftable-busy-message{border-color:#2b5177;background-color:#78b1ed}
|
|
1
|
+
div.ftable-main-container{position:relative}div.ftable-main-container div.ftable-title{position:relative;text-align:left}div.ftable-main-container div.ftable-title div.ftable-toolbar{bottom:0;right:0;position:absolute;display:inline-block;margin-right:5px}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item{position:relative;display:inline-block;margin:0 0 0 5px;cursor:pointer;font-size:.9em;padding:2px;vertical-align:bottom}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-icon{display:inline-block;margin:2px;vertical-align:middle;width:16px;height:16px}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-icon.ftable-toolbar-item-add-record{display:inline-flex;align-items:center;background-color:transparent;justify-content:center;width:16px;height:16px}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-icon.ftable-toolbar-item-add-record::before{content:"➕";font-size:14px}div.ftable-main-container div.ftable-title div.ftable-toolbar .ftable-toolbar-item span.ftable-toolbar-item-text{display:inline-block;margin:2px;vertical-align:middle}div.ftable-main-container table.ftable{width:100%}div.ftable-main-container table.ftable thead th{padding:0 3px 0 6px;vertical-align:middle;text-align:left}div.ftable-main-container table.ftable thead th.ftable-column-header{height:1px}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container{position:relative;display:table;width:100%;height:100%!important}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container span.ftable-column-header-text{display:table-cell;vertical-align:middle;padding-top:4px;padding-bottom:3px}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container div.ftable-column-resize-handler{position:absolute;display:table-cell;vertical-align:middle;height:100%;width:8px;right:-8px;z-index:2;cursor:col-resize}div.ftable-main-container table.ftable thead th.ftable-command-column-header{text-align:center;width:1%}div.ftable-main-container table.ftable thead th.ftable-column-header-select{text-align:center;width:1%}div.ftable-main-container table.ftable thead th.ftable-column-header-select input{cursor:pointer}div.ftable-main-container table.ftable thead th.ftable-column-header-sortable{cursor:pointer}div.ftable-main-container table.ftable tbody tr>td .ftable-command-button{margin:5px;padding:0;cursor:pointer;border:none;display:inline}div.ftable-main-container table.ftable tbody tr>td .ftable-command-button span{display:none}div.ftable-main-container table.ftable tbody tr>td.ftable-command-column{text-align:center;vertical-align:middle}div.ftable-main-container table.ftable tbody tr>td.ftable-selecting-column{text-align:center;vertical-align:middle}div.ftable-main-container table.ftable tbody tr>td.ftable-selecting-column input{cursor:pointer}div.ftable-main-container table.ftable tbody tr>td .ftable-edit-command-button{width:16px;height:16px;background-color:transparent}div.ftable-main-container table.ftable tbody tr>td .ftable-edit-command-button::before{content:"📝";font-size:14px;display:flex;align-items:center;justify-content:center;width:100%;height:100%}div.ftable-main-container table.ftable tbody tr>td .ftable-clone-command-button{width:16px;height:16px;background-color:transparent}div.ftable-main-container table.ftable tbody tr>td .ftable-clone-command-button::before{content:"📋";font-size:14px;display:flex;align-items:center;justify-content:center;width:100%;height:100%}div.ftable-main-container table.ftable tbody tr>td .ftable-delete-command-button{width:16px;height:16px;background-color:transparent}div.ftable-main-container table.ftable tbody tr>td .ftable-delete-command-button::before{content:"🗑️ ";font-size:14px;display:flex;align-items:center;justify-content:center;width:100%;height:100%}div.ftable-main-container table.ftable tbody tr.ftable-no-data-row{text-align:center}div.ftable-main-container>div.ftable-bottom-panel{position:relative;min-height:24px;text-align:left}div.ftable-main-container>div.ftable-bottom-panel div.ftable-right-area{right:0;top:0;bottom:0;position:absolute}div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list{display:inline-block}div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-first,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-last,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-next,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-previous,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-space{padding:2px 5px;display:inline-block;cursor:pointer}div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled,div.ftable-main-container>div.ftable-bottom-panel .ftable-page-list .ftable-page-number-space{cursor:default}div.ftable-main-container>div.ftable-bottom-panel span.ftable-page-size-change{margin-left:5px}div.ftable-main-container>div.ftable-bottom-panel span.ftable-goto-page{margin-left:5px}div.ftable-main-container>div.ftable-bottom-panel span.ftable-goto-page input[type=text]{width:22px}div.ftable-main-container>div.ftable-bottom-panel span.ftable-page-info{vertical-align:middle}div.ftable-main-container div.ftable-column-resize-bar{opacity:.5;position:absolute;width:1px;background-color:#000}form.ftable-dialog-form div.ftable-input-field-container{padding:2px 0 3px 0;border-bottom:1px solid #ddd}form.ftable-dialog-form div.ftable-input-field-container:last-child{border:none}form.ftable-dialog-form div.ftable-input-label{padding:2px 3px;font-size:1.1em;color:#666}form.ftable-dialog-form div.ftable-input{padding:2px}form.ftable-dialog-form span.ftable-option-text-clickable{position:relative;top:-2px}form.ftable-dialog-form div.ftable-textarea-input textarea{width:300px;min-height:60px}form.ftable-dialog-form div.ftable-checkbox-input span,form.ftable-dialog-form div.ftable-radio-input span{padding-left:4px}form.ftable-dialog-form div.ftable-checkbox-input input,form.ftable-dialog-form div.ftable-radio-input input,form.ftable-dialog-form span.ftable-option-text-clickable{cursor:pointer}.ftable-modal-overlay{position:fixed;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,.5);z-index:1000;display:none}.ftable-modal{position:fixed;top:50%;left:50%;transform:translate(-50%,-50%);background-color:#fff;padding:20px;border-radius:5px;box-shadow:0 2px 10px rgba(0,0,0,.3);z-index:1001;max-width:90%;max-height:90vh;overflow:auto}.ftable-modal-header{margin-bottom:15px;margin-top:0;padding-bottom:10px;border-bottom:1px solid #eee}.ftable-modal-footer{margin-top:15px;padding-top:10px;border-top:1px solid #eee;text-align:right}.ftable-modal-close{position:absolute;top:10px;right:10px;cursor:pointer;font-size:28px;font-weight:700;color:#aaa}.ftable-busy-modal{padding:0}.ftable-dialog-button{opacity:.8;border:1px solid #ccc;padding:5px;margin:5px}.ftable-dialog-button:hover{background-color:#dedede}div.ftable-busy-message{cursor:wait;margin:0}div.ftable-contextmenu-overlay{position:fixed;left:0;top:0;width:100%;height:100%;z-index:100}.ftable-table-div{display:block;overflow-x:auto}.ftable-table-div>table{overflow:hidden}.ftable-toolbarsearch{width:90%;min-width:fit-content}th.ftable-toolbarsearch-reset{text-align:center!important}div.ftable-column-selection-container{position:absolute;border:1px solid #c8c8c8;background:#fff;color:#000;z-index:101;padding:5px}div.ftable-column-selection-container ul.ftable-column-select-list{margin:0;padding:0;list-style:none}div.ftable-column-selection-container ul.ftable-column-select-list li{margin:0;padding:2px 0}div.ftable-column-selection-container ul.ftable-column-select-list li label span{position:relative;top:-1px;margin-left:4px}div.ftable-column-selection-container ul.ftable-column-select-list li input[type=checkbox]{cursor:pointer}.ftable-yesno-check-wrapper{display:flex;align-items:center}.ftable-yesno-check-text:before{content:attr(data-no)}.ftable-yesno-check-input:checked~.ftable-yesno-check-text:before{content:attr(data-yes)}.ftable-sortable-text{padding-right:20px}div.ftable-main-container table.ftable thead th.ftable-column-header-sortable div.ftable-column-header-container::after{content:" ⇅";position:absolute;right:3px;top:50%;transform:translateY(-50%);color:#999;font-size:1em}div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-asc div.ftable-column-header-container::after{content:" ⇡";font-weight:700}div.ftable-main-container table.ftable thead th.ftable-column-header-sorted-desc div.ftable-column-header-container::after{content:" ⇣";font-weight:700}div.ftable-main-container{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:1em;font-weight:400;color:#222}div.ftable-main-container div.ftable-title{-webkit-border-radius:3px 3px 0 0;-moz-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;position:relative;line-height:34px;box-shadow:inset 0 1px 0 0 rgba(255,255,255,.5);padding-left:10px;border:1px solid}div.ftable-main-container div.ftable-title div.ftable-title-text{font-weight:700}div.ftable-main-container div.ftable-title div.ftable-toolbar{bottom:0;right:0;position:absolute;line-height:26px}div.ftable-main-container table.ftable{border-collapse:collapse;border-spacing:0;border-top:0;border-right:1px solid #c8c8c8;border-bottom:1px solid #c8c8c8;border-left:1px solid #c8c8c8}div.ftable-main-container table.ftable thead{background:url('../bg-thead.png') repeat-x scroll top left #ddd;border-bottom:1px solid #c8c8c8}div.ftable-main-container table.ftable thead th{border-left:1px solid #fff;border-right:1px solid #c8c8c8}div.ftable-main-container table.ftable thead th:first-child{border-left:none}div.ftable-main-container table.ftable thead thth:last-child{border-right:none}div.ftable-main-container table.ftable thead th.ftable-column-header div.ftable-column-header-container{height:20px}div.ftable-main-container table.ftable thead th.ftable-column-header span.ftable-column-header-text{margin-top:3px}div.ftable-main-container table.ftable thead th.ftable-column-header-select{padding:5px}div.ftable-main-container table.ftable tbody>tr{padding:2px;background:#f8f8f8;height:30px}div.ftable-main-container table.ftable tbody>tr>td{padding:5px;border-left:1px dotted #bebebe}div.ftable-main-container table.ftable tbody>tr>td:first-child{border-left:none}div.ftable-main-container table.ftable tbody>tr.ftable-row-even{background:#f0f0f0}div.ftable-main-container table.ftable tbody>tr:hover{background:#e8eaef}div.ftable-main-container table.ftable tbody>tr.ftable-row-selected{-webkit-text-shadow:0 1px 0 #333;text-shadow:0 1px 0 #333;color:#fcfcfc}div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td{background-color:#bbb;padding:2px 1px 2px 2px}div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td .ftable{border:none;border-bottom:1px solid #c8c8c8}div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td .ftable-bottom-panel,div.ftable-main-container table.ftable tbody>tr.ftable-child-row>td .ftable-title{-webkit-border-radius:0px;-moz-border-radius:0;border-radius:0;border:none}div.ftable-main-container div.ftable-bottom-panel{-webkit-border-radius:0px 0px 3px 3px;-moz-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px;padding:1px;background:#fff;border:1px solid #c8c8c8;border-top:none;min-height:24px;line-height:16px;font-size:.9em}div.ftable-main-container div.ftable-bottom-panel div.ftable-right-area{padding:2px}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list{margin:2px}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-first,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-last,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-next,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-previous,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-space{-webkit-text-shadow:0 1px 0 white;text-shadow:0 1px 0 #fff;background-color:#ebebeb;border-style:solid;border-width:1px;border-color:#fff #b5b5b5 #b5b5b5 #fff;padding:2px 5px}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-first:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-last:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-next:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-previous:hover,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number:hover{background-color:#ddd}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active{-webkit-text-shadow:0 1px 0 #666;text-shadow:0 1px 0 #666;color:#fcfcfc}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled{opacity:.5}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled.ftable-page-number-active{opacity:1}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-disabled:hover{background-color:#ebebeb}div.ftable-main-container div.ftable-bottom-panel .ftable-page-info{display:inline-block;padding:4px}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record{margin:3px}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a{font-weight:700;text-decoration:none}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a:hover{text-decoration:underline}form.ftable-dialog-form{font-family:Verdana,Arial,Helvetica,sans-serif;font-size:1em;font-weight:400}form.ftable-dialog-form div.ftable-input-label{font-weight:700}div.ftable-column-selection-container{-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;-webkit-box-shadow:2px 2px 4px rgba(50,51,50,.75);-moz-box-shadow:2px 2px 4px rgba(50,51,50,.75);box-shadow:2px 2px 4px rgba(50,51,50,.75)}div.ftable-main-container div.ftable-title{background:#78b1ed;background:-moz-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#78b1ed),color-stop(100%,#417bb5));background:-webkit-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:-o-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:-ms-linear-gradient(top,#78b1ed 0,#417bb5 100%);background:linear-gradient(to bottom,#78b1ed 0,#417bb5 100%);border-color:#2b5177}div.ftable-main-container div.ftable-title div.ftable-title-text{-webkit-text-shadow:0 1px 0 #666;text-shadow:0 1px 0 #666;color:#fff}div.ftable-main-container div.ftable-title div.ftable-toolbar span.ftable-toolbar-item{color:#fff}div.ftable-main-container div.ftable-title div.ftable-toolbar span.ftable-toolbar-item.ftable-toolbar-item-hover{background-color:#417bb5}div.ftable-main-container table.ftable tbody>tr.ftable-row-selected,div.ftable-main-container table.ftable tbody>tr.ftable-row-selected:hover{background-color:#5f9cdc}div.ftable-main-container table.ftable tbody>tr.ftable-row-created,div.ftable-main-container table.ftable tbody>tr.ftable-row-deleting,div.ftable-main-container table.ftable tbody>tr.ftable-row-updated{background-color:#5f9cdc}div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active,div.ftable-main-container div.ftable-bottom-panel .ftable-page-list .ftable-page-number-active:hover{background-color:#2b5177;border-color:#092f55}div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a{color:#2b5177}div.ftable-busy-message{border-color:#2b5177;background-color:#78b1ed}
|
|
@@ -33,37 +33,12 @@
|
|
|
33
33
|
font-weight: bold;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.ftable-close-button
|
|
37
|
-
{
|
|
38
|
-
.dock(right, 6px);
|
|
39
|
-
.opacity(0.8);
|
|
40
|
-
background: url('close.png') no-repeat;
|
|
41
|
-
width: 22px;
|
|
42
|
-
height: 22px;
|
|
43
|
-
|
|
44
|
-
&:hover
|
|
45
|
-
{
|
|
46
|
-
.opacity(1);
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
|
|
50
36
|
// Toolbar -------------------------------------------------------------
|
|
51
37
|
|
|
52
38
|
div.ftable-toolbar
|
|
53
39
|
{
|
|
54
40
|
.dock(bottom-right);
|
|
55
41
|
line-height:26px;
|
|
56
|
-
|
|
57
|
-
span.ftable-toolbar-item
|
|
58
|
-
{
|
|
59
|
-
&.ftable-toolbar-item-add-record
|
|
60
|
-
{
|
|
61
|
-
span.ftable-toolbar-item-icon
|
|
62
|
-
{
|
|
63
|
-
background-image: url('add.png');
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
}
|
|
67
42
|
}
|
|
68
43
|
}
|
|
69
44
|
|
|
@@ -118,20 +93,6 @@
|
|
|
118
93
|
padding: 5px;
|
|
119
94
|
}
|
|
120
95
|
|
|
121
|
-
&.ftable-column-header-sortable div.ftable-column-header-container
|
|
122
|
-
{
|
|
123
|
-
background: url('column-sortable.png') no-repeat right;
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
&.ftable-column-header-sorted-asc div.ftable-column-header-container
|
|
127
|
-
{
|
|
128
|
-
background: url('column-asc.png') no-repeat right;
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
&.ftable-column-header-sorted-desc div.ftable-column-header-container
|
|
132
|
-
{
|
|
133
|
-
background: url('column-desc.png') no-repeat right;
|
|
134
|
-
}
|
|
135
96
|
}
|
|
136
97
|
}
|
|
137
98
|
|
|
@@ -153,26 +114,6 @@
|
|
|
153
114
|
border-left: none;
|
|
154
115
|
}
|
|
155
116
|
|
|
156
|
-
.ftable-edit-command-button
|
|
157
|
-
{
|
|
158
|
-
background: url('edit.png') no-repeat;
|
|
159
|
-
width: 16px;
|
|
160
|
-
height: 16px;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.ftable-clone-command-button
|
|
164
|
-
{
|
|
165
|
-
background: url('clone.png') no-repeat;
|
|
166
|
-
width: 16px;
|
|
167
|
-
height: 16px;
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
.ftable-delete-command-button
|
|
171
|
-
{
|
|
172
|
-
background: url('delete.png') no-repeat;
|
|
173
|
-
width: 16px;
|
|
174
|
-
height: 16px;
|
|
175
|
-
}
|
|
176
117
|
}
|
|
177
118
|
|
|
178
119
|
&.ftable-row-even
|
|
@@ -318,18 +259,6 @@
|
|
|
318
259
|
}
|
|
319
260
|
}
|
|
320
261
|
|
|
321
|
-
div.ftable-busy-message
|
|
322
|
-
{
|
|
323
|
-
.text-shadow(0 1px 0 #333);
|
|
324
|
-
.border-radius(3px);
|
|
325
|
-
.box-shadow(2px 2px 4px rgba(50, 51, 50, 0.75));
|
|
326
|
-
color: #fff;
|
|
327
|
-
border: 1px solid;
|
|
328
|
-
padding: 3px 5px 5px 27px;
|
|
329
|
-
background: url('@{theme-folder}/loading.gif') no-repeat;
|
|
330
|
-
background-position: 5px;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
262
|
div.ftable-column-selection-container
|
|
334
263
|
{
|
|
335
264
|
.border-radius(3px);
|