sequential-workflow-designer 0.10.3

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,259 @@
1
+
2
+ .sqd-designer {
3
+ position: relative;
4
+ display: flex;
5
+ width: 100%;
6
+ height: 100%;
7
+ }
8
+ .sqd-designer, .sqd-drag {
9
+ font-size: 13px;
10
+ line-height: 1em;
11
+ }
12
+ .sqd-hidden {
13
+ display: none !important;
14
+ }
15
+ .sqd-disabled {
16
+ opacity: 0.25;
17
+ }
18
+
19
+ /* .sqd-toolbox */
20
+
21
+ .sqd-toolbox, .sqd-toolbox-filter {
22
+ font-size: 11px;
23
+ line-height: 1.2em;
24
+ }
25
+ .sqd-toolbox {
26
+ position: absolute;
27
+ top: 10px;
28
+ left: 10px;
29
+ z-index: 20;
30
+ box-sizing: border-box;
31
+ border-radius: 10px;
32
+ width: 130px;
33
+ user-select: none;
34
+ }
35
+ .sqd-toolbox-header {
36
+ position: relative;
37
+ padding: 15px 10px;
38
+ cursor: pointer;
39
+ }
40
+ .sqd-toolbox-header-title {
41
+ display: block;
42
+ font-size: 1.2em;
43
+ line-height: 1em;
44
+ font-weight: bold;
45
+ }
46
+ .sqd-toolbox-toggle-icon {
47
+ position: absolute;
48
+ top: 50%;
49
+ right: 10px;
50
+ width: 16px;
51
+ height: 16px;
52
+ margin: -8px 0 0;
53
+ }
54
+ .sqd-toolbox-header:hover .sqd-toolbox-toggle-icon {
55
+ opacity: .6;
56
+ }
57
+ .sqd-scrollbox {
58
+ position: relative;
59
+ overflow: hidden;
60
+ }
61
+ .sqd-scrollbox-body {
62
+ position: absolute;
63
+ top: 0;
64
+ left: 0;
65
+ }
66
+ .sqd-toolbox-filter {
67
+ display: block;
68
+ box-sizing: border-box;
69
+ padding: 6px 8px;
70
+ outline: none;
71
+ width: 110px;
72
+ margin: 0 10px 10px;
73
+ box-sizing: border-box;
74
+ border-radius: 10px;
75
+ }
76
+ .sqd-toolbox-group-title {
77
+ text-align: center;
78
+ padding: 5px 0;
79
+ margin: 0 10px 10px;
80
+ border-radius: 10px;
81
+ }
82
+ .sqd-toolbox-item {
83
+ position: relative;
84
+ border-radius: 5px;
85
+ box-sizing: border-box;
86
+ margin: 0 10px 10px;
87
+ width: 110px;
88
+ cursor: move;
89
+ }
90
+ .sqd-toolbox-item-icon {
91
+ position: absolute;
92
+ top: 50%;
93
+ left: 5px;
94
+ margin-top: -10px;
95
+ width: 20px;
96
+ height: 20px;
97
+ }
98
+ .sqd-toolbox-item-icon.sqd-no-icon {
99
+ border-radius: 4px;
100
+ }
101
+ .sqd-toolbox-item-icon-image {
102
+ width: 100%;
103
+ height: 100%;
104
+ }
105
+ .sqd-toolbox-item-text {
106
+ position: relative;
107
+ display: block;
108
+ padding: 10px 10px 10px 30px;
109
+ white-space: nowrap;
110
+ text-overflow: ellipsis;
111
+ overflow: hidden;
112
+ }
113
+
114
+ .sqd-drag {
115
+ position: absolute;
116
+ z-index: 9999999;
117
+ pointer-events: none;
118
+ }
119
+
120
+ /* .sqd-control-bar */
121
+
122
+ .sqd-control-bar {
123
+ position: absolute;
124
+ bottom: 10px;
125
+ left: 10px;
126
+ z-index: 20;
127
+ padding: 8px 0 8px 8px;
128
+ border-radius: 10px;
129
+ white-space: nowrap;
130
+ }
131
+ .sqd-control-bar-button {
132
+ display: inline-block;
133
+ width: 30px;
134
+ height: 30px;
135
+ border-radius: 5px;
136
+ margin-right: 8px;
137
+ cursor: pointer;
138
+ }
139
+ .sqd-control-bar-button-icon {
140
+ width: 24px;
141
+ height: 24px;
142
+ margin: 3px 0 0 3px;
143
+ }
144
+ .sqd-control-bar-button.sqd-disabled .sqd-control-bar-button-icon {
145
+ opacity: .2;
146
+ }
147
+
148
+ /* .sqd-workspace */
149
+
150
+ .sqd-workspace {
151
+ flex: 1;
152
+ position: relative;
153
+ display: block;
154
+ user-select: none;
155
+ }
156
+ .sqd-workspace-canvas {
157
+ position: absolute;
158
+ top: 0;
159
+ left: 0;
160
+ cursor: move;
161
+ }
162
+ .sqd-grid-path {
163
+ stroke-width: 1;
164
+ }
165
+ .sqd-join {
166
+ stroke-width: 2;
167
+ }
168
+
169
+ /* .sqd-smart-editor */
170
+
171
+ .sqd-smart-editor-toggle {
172
+ position: absolute;
173
+ top: 0;
174
+ z-index: 29;
175
+ width: 36px;
176
+ height: 64px;
177
+ border-bottom-left-radius: 10px;
178
+ cursor: pointer;
179
+ }
180
+ .sqd-smart-editor-toggle-icon {
181
+ position: absolute;
182
+ top: 50%;
183
+ left: 50%;
184
+ width: 24px;
185
+ height: 24px;
186
+ margin: -12px 0 0 -12px;
187
+ }
188
+ .sqd-smart-editor-toggle:hover .sqd-smart-editor-toggle-icon {
189
+ opacity: .6;
190
+ }
191
+ .sqd-smart-editor {
192
+ z-index: 30;
193
+ }
194
+ .sqd-layout-desktop .sqd-smart-editor {
195
+ position: relative;
196
+ width: 300px;
197
+ }
198
+ .sqd-layout-desktop .sqd-smart-editor-toggle {
199
+ right: 300px;
200
+ }
201
+ .sqd-layout-desktop .sqd-smart-editor-toggle.sqd-collapsed {
202
+ right: 0;
203
+ }
204
+ .sqd-layout-mobile .sqd-smart-editor {
205
+ position: absolute;
206
+ top: 0;
207
+ right: 0;
208
+ bottom: 0;
209
+ left: 41px;
210
+ }
211
+ .sqd-layout-mobile .sqd-smart-editor-toggle {
212
+ left: 5px;
213
+ }
214
+ .sqd-layout-mobile .sqd-smart-editor-toggle.sqd-collapsed {
215
+ left: auto;
216
+ right: 0;
217
+ }
218
+
219
+ /* .sqd-step-task */
220
+
221
+ .sqd-step-task-rect {
222
+ stroke-width: 1;
223
+ }
224
+ .sqd-step-task-rect.sqd-selected {
225
+ stroke-width: 2;
226
+ }
227
+ .sqd-step-task-text {
228
+ text-anchor: left;
229
+ dominant-baseline: central;
230
+ }
231
+
232
+ /* .sqd-input + .sqd-output */
233
+
234
+ .sqd-input {
235
+ stroke-width: 2;
236
+ }
237
+
238
+ /* .sqd-region */
239
+
240
+ .sqd-region {
241
+ stroke-width: 2;
242
+ stroke-dasharray: 3;
243
+ }
244
+ .sqd-region.sqd-selected {
245
+ stroke-width: 2;
246
+ stroke-dasharray: 0;
247
+ }
248
+ .sqd-label-text {
249
+ text-anchor: middle;
250
+ dominant-baseline: central;
251
+ }
252
+
253
+ /* .sqd-placeholder */
254
+
255
+ .sqd-placeholder .sqd-placeholder-rect {
256
+ stroke-width: 1;
257
+ stroke-dasharray: 3;
258
+ transition: fill 100ms;
259
+ }