@liedekef/ftable 1.1.6 → 1.1.7
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 +41 -159
- package/ftable.js +42 -160
- package/ftable.min.js +3 -3
- package/ftable.umd.js +42 -160
- package/package.json +1 -1
- package/themes/basic/ftable_basic.css +25 -25
- package/themes/basic/ftable_basic.min.css +1 -1
- package/themes/ftable_theme_base.less +35 -35
- package/themes/lightcolor/blue/ftable.css +33 -33
- package/themes/lightcolor/blue/ftable.min.css +1 -1
- package/themes/lightcolor/ftable_lightcolor_base.less +6 -5
- package/themes/lightcolor/gray/ftable.css +33 -33
- package/themes/lightcolor/gray/ftable.min.css +1 -1
- package/themes/lightcolor/green/ftable.css +33 -33
- package/themes/lightcolor/green/ftable.min.css +1 -1
- package/themes/lightcolor/orange/ftable.css +33 -33
- package/themes/lightcolor/orange/ftable.min.css +1 -1
- package/themes/lightcolor/red/ftable.css +33 -33
- package/themes/lightcolor/red/ftable.min.css +1 -1
- package/themes/metro/blue/ftable.css +25 -25
- package/themes/metro/blue/ftable.min.css +1 -1
- package/themes/metro/brown/ftable.css +25 -25
- package/themes/metro/brown/ftable.min.css +1 -1
- package/themes/metro/crimson/ftable.css +25 -25
- package/themes/metro/crimson/ftable.min.css +1 -1
- package/themes/metro/darkgray/ftable.css +25 -25
- package/themes/metro/darkgray/ftable.min.css +1 -1
- package/themes/metro/darkorange/ftable.css +25 -25
- package/themes/metro/darkorange/ftable.min.css +1 -1
- package/themes/metro/green/ftable.css +25 -25
- package/themes/metro/green/ftable.min.css +1 -1
- package/themes/metro/lightgray/ftable.css +25 -25
- package/themes/metro/lightgray/ftable.min.css +1 -1
- package/themes/metro/pink/ftable.css +25 -25
- package/themes/metro/pink/ftable.min.css +1 -1
- package/themes/metro/purple/ftable.css +25 -25
- package/themes/metro/purple/ftable.min.css +1 -1
- package/themes/metro/red/ftable.css +25 -25
- package/themes/metro/red/ftable.min.css +1 -1
package/ftable.umd.js
CHANGED
|
@@ -4,9 +4,7 @@
|
|
|
4
4
|
typeof define === 'function' && define.amd ? define(factory) :
|
|
5
5
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.FTable = factory());
|
|
6
6
|
}(this, (function () {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
const FTABLE_DEFAULT_MESSAGES = {
|
|
7
|
+
const FTABLE_DEFAULT_MESSAGES = {
|
|
10
8
|
serverCommunicationError: 'An error occurred while communicating to the server.',
|
|
11
9
|
loadingMessage: 'Loading records...',
|
|
12
10
|
noDataAvailable: 'No data available!',
|
|
@@ -753,7 +751,9 @@ class FTableFormBuilder {
|
|
|
753
751
|
}
|
|
754
752
|
|
|
755
753
|
try {
|
|
756
|
-
const response =
|
|
754
|
+
const response = this.options.forcePost
|
|
755
|
+
? await FTableHttpClient.post(url)
|
|
756
|
+
: await FTableHttpClient.get(url);
|
|
757
757
|
const options = response.Options || response.options || response || [];
|
|
758
758
|
|
|
759
759
|
// Only cache if noCache is false
|
|
@@ -1359,10 +1359,14 @@ class FTable extends FTableEventEmitter {
|
|
|
1359
1359
|
this.element = typeof element === 'string' ?
|
|
1360
1360
|
document.querySelector(element) : element;
|
|
1361
1361
|
|
|
1362
|
+
if (!this.element) {
|
|
1363
|
+
return;
|
|
1364
|
+
}
|
|
1365
|
+
|
|
1362
1366
|
// Prevent double initialization
|
|
1363
|
-
if (element.ftableInstance) {
|
|
1367
|
+
if (this.element.ftableInstance) {
|
|
1364
1368
|
//console.warn('FTable is already initialized on this element. Using that.');
|
|
1365
|
-
return element.ftableInstance;
|
|
1369
|
+
return this.element.ftableInstance;
|
|
1366
1370
|
}
|
|
1367
1371
|
|
|
1368
1372
|
this.options = this.mergeOptions(options);
|
|
@@ -1399,6 +1403,7 @@ class FTable extends FTableEventEmitter {
|
|
|
1399
1403
|
logLevel: FTableLogger.LOG_LEVELS.WARN,
|
|
1400
1404
|
actions: {},
|
|
1401
1405
|
fields: {},
|
|
1406
|
+
forcePost: true,
|
|
1402
1407
|
animationsEnabled: true,
|
|
1403
1408
|
loadingAnimationDelay: 1000,
|
|
1404
1409
|
defaultDateLocale: '',
|
|
@@ -2525,13 +2530,15 @@ class FTable extends FTableEventEmitter {
|
|
|
2525
2530
|
// Create overlay to capture clicks outside menu
|
|
2526
2531
|
this.elements.columnSelectionOverlay = FTableDOMHelper.create('div', {
|
|
2527
2532
|
className: 'ftable-contextmenu-overlay',
|
|
2528
|
-
parent: this.elements.mainContainer
|
|
2533
|
+
//parent: this.elements.mainContainer
|
|
2534
|
+
parent: document.body
|
|
2529
2535
|
});
|
|
2530
2536
|
|
|
2531
2537
|
// Create the menu
|
|
2532
2538
|
this.elements.columnSelectionMenu = FTableDOMHelper.create('div', {
|
|
2533
2539
|
className: 'ftable-column-selection-container',
|
|
2534
|
-
parent: this.elements.columnSelectionOverlay
|
|
2540
|
+
//parent: this.elements.columnSelectionOverlay
|
|
2541
|
+
parent: document.body
|
|
2535
2542
|
});
|
|
2536
2543
|
|
|
2537
2544
|
// Populate menu with column options
|
|
@@ -2617,29 +2624,36 @@ class FTable extends FTableEventEmitter {
|
|
|
2617
2624
|
}
|
|
2618
2625
|
|
|
2619
2626
|
positionColumnSelectionMenu(e) {
|
|
2620
|
-
const
|
|
2621
|
-
const menuWidth = 200; // Approximate menu width
|
|
2622
|
-
const menuHeight = this.columnList.length * 30 + 20; // Approximate height
|
|
2627
|
+
const self = this;
|
|
2623
2628
|
|
|
2624
|
-
|
|
2625
|
-
let
|
|
2629
|
+
// Use clientX/clientY (relative to viewport)
|
|
2630
|
+
let left = e.clientX;
|
|
2631
|
+
let top = e.clientY;
|
|
2626
2632
|
|
|
2627
|
-
//
|
|
2628
|
-
|
|
2629
|
-
left = Math.max(0, containerRect.width - menuWidth);
|
|
2630
|
-
}
|
|
2633
|
+
// Define minimum width
|
|
2634
|
+
const minWidth = 100;
|
|
2631
2635
|
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
}
|
|
2636
|
+
// Position the menu
|
|
2637
|
+
self.elements.columnSelectionMenu.style.position = 'absolute';
|
|
2638
|
+
self.elements.columnSelectionMenu.style.left = `${left}px`;
|
|
2639
|
+
self.elements.columnSelectionMenu.style.top = `${top}px`;
|
|
2640
|
+
self.elements.columnSelectionMenu.style.minWidth = `${minWidth}px`;
|
|
2641
|
+
self.elements.columnSelectionMenu.style.boxSizing = 'border-box';
|
|
2642
|
+
|
|
2643
|
+
// Optional: Adjust if menu would overflow right edge
|
|
2644
|
+
const menuWidth = self.elements.columnSelectionMenu.offsetWidth;
|
|
2645
|
+
const windowWidth = window.innerWidth;
|
|
2635
2646
|
|
|
2636
|
-
|
|
2637
|
-
|
|
2647
|
+
if (left + menuWidth > windowWidth) {
|
|
2648
|
+
left = Math.max(10, windowWidth - menuWidth - 10); // 10px margin
|
|
2649
|
+
self.elements.columnSelectionMenu.style.left = `${left}px`;
|
|
2650
|
+
}
|
|
2638
2651
|
}
|
|
2639
2652
|
|
|
2640
2653
|
hideColumnSelectionMenu() {
|
|
2641
2654
|
if (this.elements.columnSelectionOverlay) {
|
|
2642
2655
|
this.elements.columnSelectionOverlay.remove();
|
|
2656
|
+
this.elements.columnSelectionMenu.remove();
|
|
2643
2657
|
this.elements.columnSelectionOverlay = null;
|
|
2644
2658
|
this.elements.columnSelectionMenu = null;
|
|
2645
2659
|
}
|
|
@@ -2882,7 +2896,9 @@ class FTable extends FTableEventEmitter {
|
|
|
2882
2896
|
if (typeof listAction === 'function') {
|
|
2883
2897
|
data = await listAction(params);
|
|
2884
2898
|
} else if (typeof listAction === 'string') {
|
|
2885
|
-
data =
|
|
2899
|
+
data = this.options.forcePost
|
|
2900
|
+
? await FTableHttpClient.post(listAction, params)
|
|
2901
|
+
: await FTableHttpClient.get(listAction, params);
|
|
2886
2902
|
} else {
|
|
2887
2903
|
throw new Error('No valid listAction provided');
|
|
2888
2904
|
}
|
|
@@ -4416,7 +4432,9 @@ class FTable extends FTableEventEmitter {
|
|
|
4416
4432
|
...params
|
|
4417
4433
|
};
|
|
4418
4434
|
|
|
4419
|
-
const response =
|
|
4435
|
+
const response = this.options.forcePost
|
|
4436
|
+
? await FTableHttpClient.post(url, fullParams)
|
|
4437
|
+
: await FTableHttpClient.get(url, fullParams);
|
|
4420
4438
|
|
|
4421
4439
|
if (!response || !response.Record) {
|
|
4422
4440
|
throw new Error('Invalid response or missing Record');
|
|
@@ -4718,141 +4736,5 @@ class FTable extends FTableEventEmitter {
|
|
|
4718
4736
|
}
|
|
4719
4737
|
}
|
|
4720
4738
|
|
|
4721
|
-
// Export for use
|
|
4722
|
-
//window.FTable = FTable;
|
|
4723
|
-
|
|
4724
|
-
// Usage example:
|
|
4725
|
-
/*
|
|
4726
|
-
const table = new FTable('#myTable', {
|
|
4727
|
-
title: 'My Data Table',
|
|
4728
|
-
paging: true,
|
|
4729
|
-
pageSize: 25,
|
|
4730
|
-
sorting: true,
|
|
4731
|
-
selecting: true,
|
|
4732
|
-
actions: {
|
|
4733
|
-
listAction: '/api/users',
|
|
4734
|
-
createAction: '/api/users',
|
|
4735
|
-
updateAction: '/api/users',
|
|
4736
|
-
deleteAction: '/api/users'
|
|
4737
|
-
},
|
|
4738
|
-
fields: {
|
|
4739
|
-
id: { key: true, list: false },
|
|
4740
|
-
name: {
|
|
4741
|
-
title: 'Name',
|
|
4742
|
-
type: 'text',
|
|
4743
|
-
inputAttributes: "maxlength=100 required"
|
|
4744
|
-
},
|
|
4745
|
-
email: {
|
|
4746
|
-
title: 'Email',
|
|
4747
|
-
type: 'email',
|
|
4748
|
-
width: '40%',
|
|
4749
|
-
inputAttributes: {
|
|
4750
|
-
pattern: '[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$'
|
|
4751
|
-
}
|
|
4752
|
-
},
|
|
4753
|
-
created: { title: 'Created', type: 'date', width: '30%' }
|
|
4754
|
-
},
|
|
4755
|
-
toolbarsearch: true,
|
|
4756
|
-
childTable: {
|
|
4757
|
-
title: 'Child Records',
|
|
4758
|
-
actions: {
|
|
4759
|
-
listAction: '/api/users/{id}/orders', // {id} will be replaced with parent record id
|
|
4760
|
-
createAction: '/api/users/{id}/orders',
|
|
4761
|
-
updateAction: '/api/orders',
|
|
4762
|
-
deleteAction: '/api/orders'
|
|
4763
|
-
},
|
|
4764
|
-
fields: {
|
|
4765
|
-
orderId: { key: true, list: false },
|
|
4766
|
-
orderDate: { title: 'Date', type: 'date' },
|
|
4767
|
-
amount: { title: 'Amount', type: 'number' }
|
|
4768
|
-
}
|
|
4769
|
-
},
|
|
4770
|
-
childTableColumnsVisible: true,
|
|
4771
|
-
|
|
4772
|
-
});
|
|
4773
|
-
|
|
4774
|
-
// Or dynamic child table
|
|
4775
|
-
childTable: async function(parentRecord) {
|
|
4776
|
-
return {
|
|
4777
|
-
title: `Orders for ${parentRecord.name}`,
|
|
4778
|
-
actions: {
|
|
4779
|
-
listAction: `/api/users/${parentRecord.id}/orders`
|
|
4780
|
-
},
|
|
4781
|
-
fields: {
|
|
4782
|
-
// Dynamic fields based on parent
|
|
4783
|
-
}
|
|
4784
|
-
};
|
|
4785
|
-
}
|
|
4786
|
-
|
|
4787
|
-
// function for select options
|
|
4788
|
-
fields: {
|
|
4789
|
-
assignee: {
|
|
4790
|
-
title: 'Assigned To',
|
|
4791
|
-
type: 'select',
|
|
4792
|
-
options: async function(params) {
|
|
4793
|
-
// params contains dependsOnValue, dependsOnField, etc.
|
|
4794
|
-
const department = params.dependsOnValue;
|
|
4795
|
-
const response = await fetch(`/api/users?department=${department}`);
|
|
4796
|
-
return response.json();
|
|
4797
|
-
},
|
|
4798
|
-
dependsOn: 'department'
|
|
4799
|
-
}
|
|
4800
|
-
}
|
|
4801
|
-
|
|
4802
|
-
// child table:
|
|
4803
|
-
phoneNumbers: {
|
|
4804
|
-
title: 'Phones',
|
|
4805
|
-
display: (data) => {
|
|
4806
|
-
const img = document.createElement('img');
|
|
4807
|
-
img.className = 'child-opener-image';
|
|
4808
|
-
img.src = '/Content/images/Misc/phone.png';
|
|
4809
|
-
img.title = 'Edit phone numbers';
|
|
4810
|
-
img.style.cursor = 'pointer';
|
|
4811
|
-
|
|
4812
|
-
parentRow = img.closest('tr');
|
|
4813
|
-
img.addEventListener('click', () => {
|
|
4814
|
-
e.stopPropagation();
|
|
4815
|
-
if (parentRow.childRow) {
|
|
4816
|
-
myTable.closeChildTable(parentRow);
|
|
4817
|
-
} else {
|
|
4818
|
-
myTable.openChildTable( parentRow, {
|
|
4819
|
-
title: `${data.record.Name} - Phone numbers`,
|
|
4820
|
-
actions: {
|
|
4821
|
-
listAction: `/PagingPerson/PhoneList?PersonId=${data.record.PersonId}`,
|
|
4822
|
-
deleteAction: '/PagingPerson/DeletePhone',
|
|
4823
|
-
updateAction: '/PagingPerson/UpdatePhone',
|
|
4824
|
-
createAction: `/PagingPerson/CreatePhone?PersonId=${data.record.PersonId}`
|
|
4825
|
-
},
|
|
4826
|
-
fields: {
|
|
4827
|
-
PhoneId: { key: true },
|
|
4828
|
-
Number: { title: 'Number', type: 'text' },
|
|
4829
|
-
Type: { title: 'Type', options: { 0: 'Home', 1: 'Work', 2: 'Mobile' } }
|
|
4830
|
-
}
|
|
4831
|
-
}, (childTable) => {
|
|
4832
|
-
console.log('Child table created');
|
|
4833
|
-
};
|
|
4834
|
-
}
|
|
4835
|
-
});
|
|
4836
|
-
img.addEventListener('click', (e) => {
|
|
4837
|
-
e.stopPropagation();
|
|
4838
|
-
if (parentRow.childRow) {
|
|
4839
|
-
myTable.closeChildTable(parentRow);
|
|
4840
|
-
} else {
|
|
4841
|
-
myTable.openChildTable(parentRow, childOptions);
|
|
4842
|
-
}
|
|
4843
|
-
});
|
|
4844
|
-
|
|
4845
|
-
return img;
|
|
4846
|
-
}
|
|
4847
|
-
}
|
|
4848
|
-
|
|
4849
|
-
// Clear specific options cache
|
|
4850
|
-
table.clearOptionsCache('/api/countries');
|
|
4851
|
-
|
|
4852
|
-
table.load();
|
|
4853
|
-
*/
|
|
4854
|
-
|
|
4855
|
-
window.FTable = FTable;
|
|
4856
|
-
|
|
4857
4739
|
return FTable;
|
|
4858
4740
|
})));
|
package/package.json
CHANGED
|
@@ -172,31 +172,6 @@ div.ftable-main-container div.ftable-column-resize-bar {
|
|
|
172
172
|
width: 1px;
|
|
173
173
|
background-color: #000;
|
|
174
174
|
}
|
|
175
|
-
div.ftable-main-container div.ftable-column-selection-container {
|
|
176
|
-
position: absolute;
|
|
177
|
-
border: 1px solid #C8C8C8;
|
|
178
|
-
background: #fff;
|
|
179
|
-
color: #000;
|
|
180
|
-
z-index: 101;
|
|
181
|
-
padding: 5px;
|
|
182
|
-
}
|
|
183
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list {
|
|
184
|
-
margin: 0px;
|
|
185
|
-
padding: 0px;
|
|
186
|
-
list-style: none;
|
|
187
|
-
}
|
|
188
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li {
|
|
189
|
-
margin: 0px;
|
|
190
|
-
padding: 2px 0px;
|
|
191
|
-
}
|
|
192
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li label span {
|
|
193
|
-
position: relative;
|
|
194
|
-
top: -1px;
|
|
195
|
-
margin-left: 4px;
|
|
196
|
-
}
|
|
197
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li input[type="checkbox"] {
|
|
198
|
-
cursor: pointer;
|
|
199
|
-
}
|
|
200
175
|
form.ftable-dialog-form div.ftable-input-field-container {
|
|
201
176
|
padding: 2px 0px 3px 0px;
|
|
202
177
|
border-bottom: 1px solid #ddd;
|
|
@@ -318,6 +293,31 @@ div.ftable-contextmenu-overlay {
|
|
|
318
293
|
th.ftable-toolbarsearch-reset {
|
|
319
294
|
text-align: center !important;
|
|
320
295
|
}
|
|
296
|
+
div.ftable-column-selection-container {
|
|
297
|
+
position: absolute;
|
|
298
|
+
border: 1px solid #C8C8C8;
|
|
299
|
+
background: #fff;
|
|
300
|
+
color: #000;
|
|
301
|
+
z-index: 101;
|
|
302
|
+
padding: 5px;
|
|
303
|
+
}
|
|
304
|
+
div.ftable-column-selection-container ul.ftable-column-select-list {
|
|
305
|
+
margin: 0px;
|
|
306
|
+
padding: 0px;
|
|
307
|
+
list-style: none;
|
|
308
|
+
}
|
|
309
|
+
div.ftable-column-selection-container ul.ftable-column-select-list li {
|
|
310
|
+
margin: 0px;
|
|
311
|
+
padding: 2px 0px;
|
|
312
|
+
}
|
|
313
|
+
div.ftable-column-selection-container ul.ftable-column-select-list li label span {
|
|
314
|
+
position: relative;
|
|
315
|
+
top: -1px;
|
|
316
|
+
margin-left: 4px;
|
|
317
|
+
}
|
|
318
|
+
div.ftable-column-selection-container ul.ftable-column-select-list li input[type="checkbox"] {
|
|
319
|
+
cursor: pointer;
|
|
320
|
+
}
|
|
321
321
|
div.ftable-main-container div.ftable-title div.ftable-title-text {
|
|
322
322
|
font-size: 16px;
|
|
323
323
|
font-weight: bold;
|
|
@@ -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}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}
|
|
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}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}div.ftable-main-container div.ftable-title div.ftable-title-text{font-size:16px;font-weight:700}div.ftable-main-container div.ftable-title .ftable-close-button{background:url('close.png') no-repeat;width:16px;height:16px}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>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-busy-message{color:#000;background-color:#ddd;font-size:1.25em}
|
|
@@ -367,41 +367,6 @@
|
|
|
367
367
|
background-color: #000;
|
|
368
368
|
}
|
|
369
369
|
|
|
370
|
-
div.ftable-column-selection-container
|
|
371
|
-
{
|
|
372
|
-
position: absolute;
|
|
373
|
-
border: 1px solid #C8C8C8;
|
|
374
|
-
background: #fff;
|
|
375
|
-
color: #000;
|
|
376
|
-
z-index: 101;
|
|
377
|
-
padding: 5px;
|
|
378
|
-
|
|
379
|
-
ul.ftable-column-select-list
|
|
380
|
-
{
|
|
381
|
-
.clear-list-styles;
|
|
382
|
-
|
|
383
|
-
li
|
|
384
|
-
{
|
|
385
|
-
margin: 0px;
|
|
386
|
-
padding: 2px 0px;
|
|
387
|
-
|
|
388
|
-
label
|
|
389
|
-
{
|
|
390
|
-
span
|
|
391
|
-
{
|
|
392
|
-
position: relative;
|
|
393
|
-
top: -1px;
|
|
394
|
-
margin-left: 4px;
|
|
395
|
-
}
|
|
396
|
-
}
|
|
397
|
-
|
|
398
|
-
input[type="checkbox"]
|
|
399
|
-
{
|
|
400
|
-
cursor: pointer;
|
|
401
|
-
}
|
|
402
|
-
}
|
|
403
|
-
}
|
|
404
|
-
}
|
|
405
370
|
}
|
|
406
371
|
|
|
407
372
|
form.ftable-dialog-form
|
|
@@ -591,4 +556,39 @@
|
|
|
591
556
|
text-align: center !important;
|
|
592
557
|
}
|
|
593
558
|
|
|
559
|
+
div.ftable-column-selection-container
|
|
560
|
+
{
|
|
561
|
+
position: absolute;
|
|
562
|
+
border: 1px solid #C8C8C8;
|
|
563
|
+
background: #fff;
|
|
564
|
+
color: #000;
|
|
565
|
+
z-index: 101;
|
|
566
|
+
padding: 5px;
|
|
567
|
+
|
|
568
|
+
ul.ftable-column-select-list
|
|
569
|
+
{
|
|
570
|
+
.clear-list-styles;
|
|
571
|
+
|
|
572
|
+
li
|
|
573
|
+
{
|
|
574
|
+
margin: 0px;
|
|
575
|
+
padding: 2px 0px;
|
|
576
|
+
|
|
577
|
+
label
|
|
578
|
+
{
|
|
579
|
+
span
|
|
580
|
+
{
|
|
581
|
+
position: relative;
|
|
582
|
+
top: -1px;
|
|
583
|
+
margin-left: 4px;
|
|
584
|
+
}
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
input[type="checkbox"]
|
|
588
|
+
{
|
|
589
|
+
cursor: pointer;
|
|
590
|
+
}
|
|
591
|
+
}
|
|
592
|
+
}
|
|
593
|
+
}
|
|
594
594
|
}
|
|
@@ -169,31 +169,6 @@ div.ftable-main-container div.ftable-column-resize-bar {
|
|
|
169
169
|
width: 1px;
|
|
170
170
|
background-color: #000;
|
|
171
171
|
}
|
|
172
|
-
div.ftable-main-container div.ftable-column-selection-container {
|
|
173
|
-
position: absolute;
|
|
174
|
-
border: 1px solid #C8C8C8;
|
|
175
|
-
background: #fff;
|
|
176
|
-
color: #000;
|
|
177
|
-
z-index: 101;
|
|
178
|
-
padding: 5px;
|
|
179
|
-
}
|
|
180
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list {
|
|
181
|
-
margin: 0px;
|
|
182
|
-
padding: 0px;
|
|
183
|
-
list-style: none;
|
|
184
|
-
}
|
|
185
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li {
|
|
186
|
-
margin: 0px;
|
|
187
|
-
padding: 2px 0px;
|
|
188
|
-
}
|
|
189
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li label span {
|
|
190
|
-
position: relative;
|
|
191
|
-
top: -1px;
|
|
192
|
-
margin-left: 4px;
|
|
193
|
-
}
|
|
194
|
-
div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li input[type="checkbox"] {
|
|
195
|
-
cursor: pointer;
|
|
196
|
-
}
|
|
197
172
|
form.ftable-dialog-form div.ftable-input-field-container {
|
|
198
173
|
padding: 2px 0px 3px 0px;
|
|
199
174
|
border-bottom: 1px solid #ddd;
|
|
@@ -315,6 +290,31 @@ div.ftable-contextmenu-overlay {
|
|
|
315
290
|
th.ftable-toolbarsearch-reset {
|
|
316
291
|
text-align: center !important;
|
|
317
292
|
}
|
|
293
|
+
div.ftable-column-selection-container {
|
|
294
|
+
position: absolute;
|
|
295
|
+
border: 1px solid #C8C8C8;
|
|
296
|
+
background: #fff;
|
|
297
|
+
color: #000;
|
|
298
|
+
z-index: 101;
|
|
299
|
+
padding: 5px;
|
|
300
|
+
}
|
|
301
|
+
div.ftable-column-selection-container ul.ftable-column-select-list {
|
|
302
|
+
margin: 0px;
|
|
303
|
+
padding: 0px;
|
|
304
|
+
list-style: none;
|
|
305
|
+
}
|
|
306
|
+
div.ftable-column-selection-container ul.ftable-column-select-list li {
|
|
307
|
+
margin: 0px;
|
|
308
|
+
padding: 2px 0px;
|
|
309
|
+
}
|
|
310
|
+
div.ftable-column-selection-container ul.ftable-column-select-list li label span {
|
|
311
|
+
position: relative;
|
|
312
|
+
top: -1px;
|
|
313
|
+
margin-left: 4px;
|
|
314
|
+
}
|
|
315
|
+
div.ftable-column-selection-container ul.ftable-column-select-list li input[type="checkbox"] {
|
|
316
|
+
cursor: pointer;
|
|
317
|
+
}
|
|
318
318
|
div.ftable-main-container {
|
|
319
319
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
320
320
|
font-size: 1em;
|
|
@@ -521,14 +521,6 @@ div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a {
|
|
|
521
521
|
div.ftable-main-container div.ftable-bottom-panel span.ftable-add-record a:hover {
|
|
522
522
|
text-decoration: underline;
|
|
523
523
|
}
|
|
524
|
-
div.ftable-main-container div.ftable-column-selection-container {
|
|
525
|
-
-webkit-border-radius: 3px;
|
|
526
|
-
-moz-border-radius: 3px;
|
|
527
|
-
border-radius: 3px;
|
|
528
|
-
-webkit-box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
529
|
-
-moz-box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
530
|
-
box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
531
|
-
}
|
|
532
524
|
form.ftable-dialog-form {
|
|
533
525
|
font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
534
526
|
font-size: 1em;
|
|
@@ -552,6 +544,14 @@ div.ftable-busy-message {
|
|
|
552
544
|
background: url('../blue/loading.gif') no-repeat;
|
|
553
545
|
background-position: 5px;
|
|
554
546
|
}
|
|
547
|
+
div.ftable-column-selection-container {
|
|
548
|
+
-webkit-border-radius: 3px;
|
|
549
|
+
-moz-border-radius: 3px;
|
|
550
|
+
border-radius: 3px;
|
|
551
|
+
-webkit-box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
552
|
+
-moz-box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
553
|
+
box-shadow: 2px 2px 4px rgba(50, 51, 50, 0.75);
|
|
554
|
+
}
|
|
555
555
|
div.ftable-main-container div.ftable-title {
|
|
556
556
|
background: #78b1ed;
|
|
557
557
|
background: -moz-linear-gradient(top, #78b1ed 0%, #417bb5 100%);
|
|
@@ -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}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}div.ftable-main-container div.ftable-column-selection-container{position:absolute;border:1px solid #c8c8c8;background:#fff;color:#000;z-index:101;padding:5px}div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list{margin:0;padding:0;list-style:none}div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li{margin:0;padding:2px 0}div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li label span{position:relative;top:-1px;margin-left:4px}div.ftable-main-container div.ftable-column-selection-container ul.ftable-column-select-list li input[type=checkbox]{cursor:pointer}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-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}div.ftable-main-container 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)}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-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 .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}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}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}
|
|
@@ -306,11 +306,6 @@
|
|
|
306
306
|
}
|
|
307
307
|
}
|
|
308
308
|
|
|
309
|
-
div.ftable-column-selection-container
|
|
310
|
-
{
|
|
311
|
-
.border-radius(3px);
|
|
312
|
-
.box-shadow(2px 2px 4px rgba(50, 51, 50, 0.75));
|
|
313
|
-
}
|
|
314
309
|
}
|
|
315
310
|
|
|
316
311
|
form.ftable-dialog-form
|
|
@@ -334,4 +329,10 @@
|
|
|
334
329
|
background: url('@{theme-folder}/loading.gif') no-repeat;
|
|
335
330
|
background-position: 5px;
|
|
336
331
|
}
|
|
332
|
+
|
|
333
|
+
div.ftable-column-selection-container
|
|
334
|
+
{
|
|
335
|
+
.border-radius(3px);
|
|
336
|
+
.box-shadow(2px 2px 4px rgba(50, 51, 50, 0.75));
|
|
337
|
+
}
|
|
337
338
|
}
|