beta-glozic-workflow 1.0.0

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.
@@ -0,0 +1,363 @@
1
+ .hide {
2
+ display: none !important;
3
+ }
4
+
5
+ #workflow-node-designer-wrapper-area {
6
+ background-image: radial-gradient(circle at 1px 1px, #000 1px, transparent 0);
7
+ background-size: 20px 20px;
8
+ margin: 0;
9
+ }
10
+
11
+ .table-workflow-version i {
12
+ cursor: pointer !important;
13
+ }
14
+
15
+ .worflow-design-tab .panel-heading {
16
+ position: absolute !important;
17
+ left: 0px !important;
18
+ width: 100% !important;
19
+ top: -45px !important;
20
+ border-bottom: 2px solid !important;
21
+ }
22
+
23
+ .worflow-design-panel {
24
+ flex-direction: row !important;
25
+ right: 0 !important;
26
+ top: 50px !important;
27
+ position: absolute !important;
28
+ z-index: 99 !important;
29
+ width: 100% !important;
30
+ width: 100% !important;
31
+ max-width: 100% !important;
32
+ }
33
+
34
+ .workflow-node-designer-container {
35
+ margin-top: 0;
36
+ background-color: #fff;
37
+ }
38
+
39
+ .workflow-node-designer-container #designer-taskpalette-canvas {
40
+ position: absolute;
41
+ }
42
+
43
+ .workflow-node-designer-container .designer-function-btns {
44
+ display: flex;
45
+ flex-direction: row;
46
+ right: 0;
47
+ top: 70px;
48
+ position: absolute;
49
+ z-index: 99;
50
+ }
51
+
52
+ .workflow-node-designer-container .designer-function-btns .function-button {
53
+ background-color: #e0e0e0;
54
+ color: #574751;
55
+ margin-right: 10px;
56
+ width: 80px;
57
+ height: 30px;
58
+ line-height: 30px;
59
+ border: 1px solid #0d47a1;
60
+ text-align: center;
61
+ border-radius: 4px;
62
+ cursor: pointer;
63
+ }
64
+
65
+ .workflow-node-designer-container .designer-function-btns .function-button:hover {
66
+ background-color: #757575;
67
+ color: #fff;
68
+ }
69
+
70
+ .workflow-node-designer-container .designer-flowchart-setting-tab {
71
+ padding: 1.5rem 1rem;
72
+ }
73
+
74
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner {
75
+ display: flex;
76
+ flex-wrap: wrap;
77
+ }
78
+
79
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-detail {
80
+ flex: 1;
81
+ padding: 15px;
82
+ }
83
+
84
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-variables {
85
+ flex: 1;
86
+ padding: 15px;
87
+ }
88
+
89
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-variables .designer-flowchart-variables-title {
90
+ font-size: 21px;
91
+ border-bottom: 1px solid #e5e5e5;
92
+ margin-bottom: 20px;
93
+ display: flex;
94
+ }
95
+
96
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-variables .designer-flowchart-variables-title span:not(.fa) {
97
+ flex: 1;
98
+ }
99
+
100
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-variables .designer-flowchart-variables-title .fa {
101
+ color: #ff9800;
102
+ cursor: pointer;
103
+ }
104
+
105
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-variables .designer-flowchart-variables-title .fa:hover {
106
+ color: #ffa726;
107
+ }
108
+
109
+ .workflow-node-designer-container .designer-flowchart-setting-tab .designer-flowchart-setting-inner .designer-flowchart-permission {
110
+ flex-basis: 100%;
111
+ padding: 15px;
112
+ }
113
+
114
+ .workflow-node-designer-container .designer-tab-wrapper {
115
+ width: 40%;
116
+ z-index: 99999;
117
+ position: absolute;
118
+ left: 0;
119
+ right: 0;
120
+ top: 18px;
121
+ display: flex;
122
+ }
123
+
124
+ .workflow-node-designer-container .designer-tab-wrapper .designer-tab-item {
125
+ cursor: pointer;
126
+ width: 200px;
127
+ background-color: #e0e0e0;
128
+ color: #574751;
129
+ border-top-left-radius: 4px;
130
+ border-top-right-radius: 4px;
131
+ text-align: center;
132
+ height: 40px;
133
+ line-height: 40px;
134
+ }
135
+
136
+ .workflow-node-designer-container .designer-tab-wrapper .designer-tab-item:hover {
137
+ background-color: #757575;
138
+ }
139
+
140
+ .workflow-node-designer-container .designer-tab-wrapper .designer-tab-item.active {
141
+ color: #212121;
142
+ background-color: #fff;
143
+ border-bottom: 0;
144
+ }
145
+
146
+ .workflow-node-designer-container .designer-tab-wrapper .designer-tab-empty {
147
+ flex: 1;
148
+ }
149
+
150
+ .workflow-node-designer-container .workflow-node-designer-wrapper {
151
+ width: 100%;
152
+ height: 100vh;
153
+ overflow: hidden;
154
+ position: relative;
155
+ }
156
+
157
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area {
158
+ position: relative;
159
+ height: 0;
160
+ width: 0;
161
+ overflow: scroll;
162
+ overflow: visible;
163
+ }
164
+
165
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item {
166
+ width: 20px;
167
+ height: 20px;
168
+ background: #fff;
169
+ }
170
+
171
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item.fc-item-draggable {
172
+ position: absolute;
173
+ cursor: pointer;
174
+ }
175
+
176
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area #node-start,
177
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area #node-end {
178
+ height: 44px;
179
+ width: 44px;
180
+ border-radius: 50%;
181
+ border: solid 1px #0d47a1;
182
+ text-align: center;
183
+ }
184
+
185
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area #node-start span,
186
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area #node-end span {
187
+ line-height: 44px;
188
+ font-size: 22px;
189
+ }
190
+
191
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item-default {
192
+ cursor: pointer;
193
+ border-radius: 0.125rem;
194
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
195
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
196
+ width: 160px;
197
+ color: #757575;
198
+ margin-bottom: 1rem;
199
+ border-radius: 4px;
200
+ height: 44px;
201
+ font-size: 0.8rem;
202
+ line-height: 44px;
203
+ text-align: left;
204
+ background-color: #fff;
205
+ display: flex;
206
+ }
207
+
208
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item-default.is-disabled {
209
+ background-color: #eee;
210
+ }
211
+
212
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item-default .task-palette-icon {
213
+ width: 2.7rem;
214
+ font-size: 1.3rem;
215
+ text-align: center;
216
+ line-height: 44px;
217
+ margin-right: 0.5rem;
218
+ border: 1px dashed #2bbbad;
219
+ background-color: #2bbbad;
220
+ color: #fff;
221
+ }
222
+
223
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item-default .task-palette-title {
224
+ text-align: left;
225
+ flex: 1;
226
+ text-overflow: ellipsis;
227
+ overflow: hidden;
228
+ white-space: nowrap;
229
+ font-size: 0.8rem;
230
+ color: #6c757d;
231
+ font-weight: 600;
232
+ }
233
+
234
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area .fc-item-end-point {
235
+ height: 0;
236
+ width: 0;
237
+ }
238
+
239
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area #node-start {
240
+ color: #4caf50;
241
+ }
242
+
243
+ .workflow-node-designer-container .workflow-node-designer-wrapper #designer-area #node-end {
244
+ color: #f44336;
245
+ }
246
+
247
+ .workflow-node-designer-container .task-iconmenu-container {
248
+ position: absolute;
249
+ z-index: 2;
250
+ }
251
+
252
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner {
253
+ position: relative;
254
+ }
255
+
256
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-btn {
257
+ height: 18px;
258
+ width: 18px;
259
+ top: -9px;
260
+ left: -9px;
261
+ background-color: #fff;
262
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
263
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
264
+ border-radius: 50%;
265
+ position: absolute;
266
+ z-index: 99999999;
267
+ text-align: center;
268
+ line-height: 18px;
269
+ }
270
+
271
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-btn:hover {
272
+ background-color: #eee;
273
+ }
274
+
275
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-board {
276
+ position: absolute;
277
+ left: 0;
278
+ background-color: #fff;
279
+ display: none;
280
+ }
281
+
282
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-board .task-iconmenu-board-inner {
283
+ display: flex;
284
+ flex-direction: column;
285
+ border: 1px solid #e7e7e7;
286
+ font-size: 0.8rem;
287
+ top: -14px;
288
+ }
289
+
290
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-board .task-iconmenu-board-inner .task-iconmenu-item {
291
+ padding: 0.5rem;
292
+ line-height: 24px;
293
+ display: flex;
294
+ }
295
+
296
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-board .task-iconmenu-board-inner .task-iconmenu-item:hover {
297
+ background-color: #eee;
298
+ }
299
+
300
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner .task-iconmenu-board .task-iconmenu-board-inner .task-iconmenu-item .fa {
301
+ font-size: 18px;
302
+ margin-right: 0.5rem;
303
+ }
304
+
305
+ .workflow-node-designer-container .task-iconmenu-container .task-iconmenu-inner:hover .task-iconmenu-board {
306
+ display: block;
307
+ }
308
+
309
+ .jtk-overlay {
310
+ width: 200px;
311
+ height: 40px;
312
+ }
313
+
314
+ .jtk-overlay.onDroping {
315
+ background-color: #bdbdbd;
316
+ }
317
+
318
+ .jtk-overlay .workflow--node-dropable-zone {
319
+ top: 50%;
320
+ left: 50%;
321
+ opacity: 1;
322
+ position: absolute;
323
+ transform: translate(-50%, -50%);
324
+ background-color: #fff;
325
+ text-align: center;
326
+ color: #2bbbad;
327
+ height: 22px;
328
+ width: 22px;
329
+ border-radius: 50%;
330
+ cursor: pointer;
331
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
332
+ transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
333
+ }
334
+
335
+ .workflow-history-log {
336
+ padding: 6px !important;
337
+ height: 26px;
338
+ margin-right: 10px;
339
+ }
340
+
341
+ .workflow-history-log span {
342
+ display: flex;
343
+ border-bottom: 0 !important;
344
+ line-height: 16px;
345
+ }
346
+
347
+ .workflow-history-log span span {
348
+ line-height: 10px;
349
+ border-bottom: 0 !important;
350
+ margin-right: 13px;
351
+ font-size: 13px;
352
+ margin-left: 13px;
353
+ }
354
+
355
+ .workflow-history-log span i {
356
+ font-size: 19px;
357
+ }
358
+
359
+ .workflow-node-designer-container .btn-flow-save {
360
+ color: #fff !important;
361
+ background-color: #2bbbad !important;
362
+ border-color: #2bbbad !important;
363
+ }
package/dist/index.css ADDED
File without changes