pywebexec 2.4.8__py3-none-any.whl → 2.4.10__py3-none-any.whl
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.
- pywebexec/static/css/form.css +11 -1
- pywebexec/static/js/tablefilter.js +2 -2
- pywebexec/static/jsonform/deps/jquery-ui.js +3476 -0
- pywebexec/templates/index.html +1 -0
- pywebexec/version.py +2 -2
- {pywebexec-2.4.8.dist-info → pywebexec-2.4.10.dist-info}/METADATA +1 -1
- {pywebexec-2.4.8.dist-info → pywebexec-2.4.10.dist-info}/RECORD +11 -10
- {pywebexec-2.4.8.dist-info → pywebexec-2.4.10.dist-info}/WHEEL +0 -0
- {pywebexec-2.4.8.dist-info → pywebexec-2.4.10.dist-info}/entry_points.txt +0 -0
- {pywebexec-2.4.8.dist-info → pywebexec-2.4.10.dist-info}/licenses/LICENSE +0 -0
- {pywebexec-2.4.8.dist-info → pywebexec-2.4.10.dist-info}/top_level.txt +0 -0
pywebexec/static/css/form.css
CHANGED
@@ -13,6 +13,9 @@
|
|
13
13
|
.glyphicon-search:before {
|
14
14
|
content: "\e003";
|
15
15
|
}
|
16
|
+
.glyphicon-list::before {
|
17
|
+
content: "\e235"; /* 056 119 */
|
18
|
+
}
|
16
19
|
.glyphicon {
|
17
20
|
position: relative;
|
18
21
|
top: 1px;
|
@@ -60,7 +63,7 @@
|
|
60
63
|
}
|
61
64
|
.btn-default {
|
62
65
|
background-color: transparent;
|
63
|
-
padding: 3px
|
66
|
+
padding: 3px 0px 2px 3px;
|
64
67
|
color: #333;
|
65
68
|
/* border: 1px solid #ccc; */
|
66
69
|
/* color: #eee; */
|
@@ -148,6 +151,7 @@
|
|
148
151
|
li {
|
149
152
|
display: flex;
|
150
153
|
margin-bottom: 4px;
|
154
|
+
gap: 2px;
|
151
155
|
}
|
152
156
|
.controls input, select {
|
153
157
|
min-width: unset;
|
@@ -234,6 +238,12 @@
|
|
234
238
|
li > fieldset {
|
235
239
|
width: 100%;
|
236
240
|
margin-bottom: 3px;
|
241
|
+
display: flex;
|
242
|
+
gap: 5px;
|
243
|
+
}
|
244
|
+
.draggable {
|
245
|
+
font-size: 12px;
|
246
|
+
padding-top: 4px;
|
237
247
|
}
|
238
248
|
._jsonform-array-buttons {
|
239
249
|
text-align: right;
|
@@ -260,8 +260,8 @@ function exportToExcel(table) {
|
|
260
260
|
|
261
261
|
// Style header row
|
262
262
|
const headerRow = worksheet.getRow(1);
|
263
|
-
headerRow.font = { bold: true };
|
264
|
-
headerRow.alignment = { vertical: 'middle', horizontal: 'left' };
|
263
|
+
// headerRow.font = { bold: true };
|
264
|
+
// headerRow.alignment = { vertical: 'middle', horizontal: 'left' };
|
265
265
|
// headerRow.height = 20;
|
266
266
|
|
267
267
|
// Add table after all rows are defined
|