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