ep_data_tables 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +202 -0
- package/README.md +77 -0
- package/collectContentPre.js +87 -0
- package/ep.json +28 -0
- package/locales/en.json +45 -0
- package/package.json +47 -0
- package/static/css/caret.css +13 -0
- package/static/css/datatables-editor.css +167 -0
- package/static/css/table-menu.css +100 -0
- package/static/js/client_hooks.js +4441 -0
- package/static/js/collector_hooks.js +13 -0
- package/static/js/datatables-renderer.js +157 -0
- package/static/js/index.js +45 -0
- package/static/js/initialisation.js +249 -0
- package/templates/datatablesEditbarButtons.ejs +50 -0
- package/templates/datatablesScripts.ejs +16 -0
- package/templates/datatablesScriptsTimeslider.ejs +1 -0
- package/templates/styles.ejs +1 -0
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
#table-menu-button button:before {
|
|
2
|
+
content: "\F0CE";
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
#table-context-menu {
|
|
6
|
+
display: none;
|
|
7
|
+
position: fixed !important;
|
|
8
|
+
z-index: 9999999 !important;
|
|
9
|
+
background-color: #f1f1f1;
|
|
10
|
+
border: 1px solid #d3d3d3;
|
|
11
|
+
border-radius: 4px;
|
|
12
|
+
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
13
|
+
padding: 5px 0;
|
|
14
|
+
min-width: 160px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
#table-context-menu ul {
|
|
18
|
+
list-style-type: none;
|
|
19
|
+
margin: 0;
|
|
20
|
+
padding: 5px 0;
|
|
21
|
+
border-bottom: 1px solid #d3d3d3;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
#table-context-menu ul:last-child {
|
|
25
|
+
border-bottom: none;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
#table-context-menu .menu-item {
|
|
29
|
+
padding: 2px 10px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
#table-context-menu .menu-item:hover {
|
|
33
|
+
background-color: #e6e6e6;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
#table-context-menu .menu-item a {
|
|
37
|
+
color: #333;
|
|
38
|
+
text-decoration: none;
|
|
39
|
+
display: block;
|
|
40
|
+
padding: 5px;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
#create-table-container {
|
|
44
|
+
display: none;
|
|
45
|
+
position: fixed !important;
|
|
46
|
+
z-index: 99999999 !important;
|
|
47
|
+
background-color: #f1f1f1;
|
|
48
|
+
border: 1px solid #d3d3d3;
|
|
49
|
+
border-radius: 4px;
|
|
50
|
+
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
51
|
+
padding: 10px;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
#tbl_prop_create_table:after {
|
|
55
|
+
content: none;
|
|
56
|
+
display: none;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
#new-table-size {
|
|
60
|
+
text-align: center;
|
|
61
|
+
padding: 5px;
|
|
62
|
+
margin-bottom: 5px;
|
|
63
|
+
font-weight: bold;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
#new-table-size-selector {
|
|
67
|
+
border-collapse: collapse;
|
|
68
|
+
background-color: #fff;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
#new-table-size-selector td {
|
|
72
|
+
width: 15px;
|
|
73
|
+
height: 15px;
|
|
74
|
+
border: 1px solid #ccc;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
#new-table-size-selector td.selected {
|
|
78
|
+
background-color: #c4e3f3;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
#table-context-menu ul {
|
|
82
|
+
display: block !important;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.table-context-menu {
|
|
86
|
+
font-size: 12px;
|
|
87
|
+
border-radius: 4px;
|
|
88
|
+
background: #f7f7f7;
|
|
89
|
+
box-shadow: 0 1px 8px 0 rgba(7, 25, 41, 0.2);
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
/* Button styling */
|
|
93
|
+
#table-menu-button button {
|
|
94
|
+
background-repeat: no-repeat;
|
|
95
|
+
background-position: center;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.buttonicon-table {
|
|
99
|
+
background-image: url('../img/table.png');
|
|
100
|
+
}
|