aurora-langium 0.0.15 → 0.0.16
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/pack/diagram/main.css +333 -0
- package/pack/diagram/main.css.map +7 -0
- package/pack/diagram/main.js +41563 -0
- package/pack/diagram/main.js.map +7 -0
- package/pack/webview.js +4982 -0
- package/package.json +3 -2
|
@@ -0,0 +1,333 @@
|
|
|
1
|
+
/* aurora-webview/node_modules/sprotty-vscode-webview/css/sprotty-vscode.css */
|
|
2
|
+
html,
|
|
3
|
+
body {
|
|
4
|
+
width: 100%;
|
|
5
|
+
height: 100%;
|
|
6
|
+
padding: 0px;
|
|
7
|
+
}
|
|
8
|
+
.sprotty {
|
|
9
|
+
display: flex;
|
|
10
|
+
height: 100%;
|
|
11
|
+
}
|
|
12
|
+
.sprotty-hidden {
|
|
13
|
+
height: 0px !important;
|
|
14
|
+
}
|
|
15
|
+
svg {
|
|
16
|
+
width: 100%;
|
|
17
|
+
flex: 1;
|
|
18
|
+
border-style: none;
|
|
19
|
+
border-width: 0px;
|
|
20
|
+
}
|
|
21
|
+
svg:focus {
|
|
22
|
+
border-width: 0;
|
|
23
|
+
}
|
|
24
|
+
.sprotty-status {
|
|
25
|
+
position: absolute;
|
|
26
|
+
top: 5px;
|
|
27
|
+
left: 10px;
|
|
28
|
+
display: flex;
|
|
29
|
+
align-items: center;
|
|
30
|
+
}
|
|
31
|
+
.sprotty-status .fatal {
|
|
32
|
+
color: var(--vscode-editorError-foreground);
|
|
33
|
+
}
|
|
34
|
+
.sprotty-status .error {
|
|
35
|
+
color: var(--vscode-editorError-foreground);
|
|
36
|
+
}
|
|
37
|
+
.sprotty-status .warning {
|
|
38
|
+
color: var(--vscode-editorWarning-foreground);
|
|
39
|
+
}
|
|
40
|
+
.sprotty-status .info {
|
|
41
|
+
color: var(--vscode-editorInfo-foreground);
|
|
42
|
+
}
|
|
43
|
+
.sprotty-error {
|
|
44
|
+
fill: var(--vscode-editorError-foreground);
|
|
45
|
+
color: var(--vscode-editorError-foreground);
|
|
46
|
+
}
|
|
47
|
+
.sprotty-warning {
|
|
48
|
+
fill: var(--vscode-editorWarning-foreground);
|
|
49
|
+
color: var(--vscode-editorWarning-foreground);
|
|
50
|
+
}
|
|
51
|
+
.sprotty-info {
|
|
52
|
+
fill: var(--vscode-editorInfo-foreground);
|
|
53
|
+
color: var(--vscode-editorInfo-foreground);
|
|
54
|
+
}
|
|
55
|
+
.sprotty-infoRow .fa {
|
|
56
|
+
margin-right: 8px;
|
|
57
|
+
}
|
|
58
|
+
.sprotty-status .ok {
|
|
59
|
+
visibility: hidden;
|
|
60
|
+
}
|
|
61
|
+
.sprotty-status-message {
|
|
62
|
+
visibility: hidden;
|
|
63
|
+
padding-left: 10px;
|
|
64
|
+
}
|
|
65
|
+
.sprotty-status:hover .sprotty-status-message {
|
|
66
|
+
visibility: visible;
|
|
67
|
+
}
|
|
68
|
+
.sprotty-popup {
|
|
69
|
+
position: absolute;
|
|
70
|
+
background: #FFE9BE;
|
|
71
|
+
border-radius: 0px;
|
|
72
|
+
border: none;
|
|
73
|
+
max-width: initial;
|
|
74
|
+
min-width: initial;
|
|
75
|
+
z-index: 1;
|
|
76
|
+
padding: 8px;
|
|
77
|
+
}
|
|
78
|
+
.sprotty-infoRow {
|
|
79
|
+
font-size: small;
|
|
80
|
+
margin-bottom: 8px;
|
|
81
|
+
}
|
|
82
|
+
.sprotty-infoTitle {
|
|
83
|
+
display: block;
|
|
84
|
+
font-weight: bold;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
/* aurora-webview/css/diagram.css */
|
|
88
|
+
.sprotty-node {
|
|
89
|
+
fill: #774342;
|
|
90
|
+
}
|
|
91
|
+
.sprotty-orphan-node {
|
|
92
|
+
fill: #ffffff;
|
|
93
|
+
stroke: #ff0400;
|
|
94
|
+
stroke-width: 5px;
|
|
95
|
+
}
|
|
96
|
+
.sprotty-ic-node {
|
|
97
|
+
fill: #545454;
|
|
98
|
+
}
|
|
99
|
+
.sprotty-logic-node {
|
|
100
|
+
fill: #ffffff;
|
|
101
|
+
}
|
|
102
|
+
.sprotty-ngl-node {
|
|
103
|
+
fill: #515151;
|
|
104
|
+
}
|
|
105
|
+
.sprotty-nl-node {
|
|
106
|
+
fill: #ffffff;
|
|
107
|
+
}
|
|
108
|
+
.sprotty-nldraft-node {
|
|
109
|
+
fill: #ddab61;
|
|
110
|
+
}
|
|
111
|
+
.sprotty-nlexclamation-node {
|
|
112
|
+
fill: #9c0909;
|
|
113
|
+
}
|
|
114
|
+
.sprotty-nltaskcompleted-node {
|
|
115
|
+
fill: #89B345;
|
|
116
|
+
}
|
|
117
|
+
.sprotty-nltask-node {
|
|
118
|
+
fill: #ad7fa8;
|
|
119
|
+
}
|
|
120
|
+
.sprotty-oc-node {
|
|
121
|
+
fill: #d1d1d1;
|
|
122
|
+
}
|
|
123
|
+
.sprotty-fhir-me-draft-node {
|
|
124
|
+
fill: #ddab61;
|
|
125
|
+
}
|
|
126
|
+
.sprotty-fhir-me-exclamation-node {
|
|
127
|
+
fill: #9c0909;
|
|
128
|
+
}
|
|
129
|
+
.sprotty-fhir-me-taskcompleted-node {
|
|
130
|
+
fill: #89B345;
|
|
131
|
+
}
|
|
132
|
+
.sprotty-fhir-me-task-node {
|
|
133
|
+
fill: #ad7fa8;
|
|
134
|
+
}
|
|
135
|
+
.sprotty-fhir-me-regular-node {
|
|
136
|
+
fill: #d1d1d1;
|
|
137
|
+
}
|
|
138
|
+
.sprotty-fhir-me-draft-past-node {
|
|
139
|
+
fill: #ddab6150;
|
|
140
|
+
}
|
|
141
|
+
.sprotty-fhir-me-exclamation-past-node {
|
|
142
|
+
fill: #9c090950;
|
|
143
|
+
}
|
|
144
|
+
.sprotty-fhir-me-taskcompleted-past-node {
|
|
145
|
+
fill: #89B34550;
|
|
146
|
+
}
|
|
147
|
+
.sprotty-fhir-me-task-past-node {
|
|
148
|
+
fill: #ad7fa850;
|
|
149
|
+
}
|
|
150
|
+
.sprotty-fhir-me-regular-past-node {
|
|
151
|
+
fill: #d1d1d150;
|
|
152
|
+
}
|
|
153
|
+
.sprotty-ocselected-node {
|
|
154
|
+
fill: #ABD48F;
|
|
155
|
+
}
|
|
156
|
+
.sprotty-node.selected {
|
|
157
|
+
stroke-width: 2;
|
|
158
|
+
stroke: var(--vscode-button-hover-background);
|
|
159
|
+
}
|
|
160
|
+
.sprotty-label {
|
|
161
|
+
fill: var(--vscode-button-foreground);
|
|
162
|
+
stroke-width: 0;
|
|
163
|
+
}
|
|
164
|
+
.sprotty-darktext-label {
|
|
165
|
+
fill: #000000;
|
|
166
|
+
stroke-width: 0;
|
|
167
|
+
}
|
|
168
|
+
.sprotty-button {
|
|
169
|
+
fill: var(--vscode-editorActiveLineNumber-foreground);
|
|
170
|
+
}
|
|
171
|
+
.sprotty-edge .sprotty-label {
|
|
172
|
+
fill: var(--vscode-editorActiveLineNumber-foreground);
|
|
173
|
+
}
|
|
174
|
+
.sprotty-edge {
|
|
175
|
+
fill: none;
|
|
176
|
+
stroke: var(--vscode-editorActiveLineNumber-foreground);
|
|
177
|
+
stroke-width: 2px;
|
|
178
|
+
}
|
|
179
|
+
.sprotty-orange-edge {
|
|
180
|
+
fill: none;
|
|
181
|
+
stroke: #C4772D;
|
|
182
|
+
stroke-width: 2px;
|
|
183
|
+
}
|
|
184
|
+
.sprotty-green-edge {
|
|
185
|
+
fill: none;
|
|
186
|
+
stroke: #799665;
|
|
187
|
+
stroke-width: 2px;
|
|
188
|
+
}
|
|
189
|
+
.sprotty-negative-edge {
|
|
190
|
+
fill: none;
|
|
191
|
+
stroke: #D44D37;
|
|
192
|
+
stroke-width: 2px;
|
|
193
|
+
}
|
|
194
|
+
.sprotty-edge-arrow {
|
|
195
|
+
fill: var(--vscode-editorActiveLineNumber-foreground);
|
|
196
|
+
}
|
|
197
|
+
.sprotty-negative-edge-arrow {
|
|
198
|
+
fill: #D44D37;
|
|
199
|
+
}
|
|
200
|
+
path.sprotty-edge.dashed {
|
|
201
|
+
stroke: #D44D37;
|
|
202
|
+
stroke-width: 4px;
|
|
203
|
+
}
|
|
204
|
+
.sprotty-green-edge-arrow {
|
|
205
|
+
fill: #174A09;
|
|
206
|
+
}
|
|
207
|
+
.sprotty-green-edge.dashed {
|
|
208
|
+
stroke: #799665;
|
|
209
|
+
stroke-width: 4px;
|
|
210
|
+
}
|
|
211
|
+
.sprotty-orange-edge-arrow {
|
|
212
|
+
fill: #C4772D;
|
|
213
|
+
}
|
|
214
|
+
.sprotty-orange-edge.dashed {
|
|
215
|
+
stroke: #C4772D;
|
|
216
|
+
stroke-width: 4px;
|
|
217
|
+
}
|
|
218
|
+
.sprotty-edge.dashed {
|
|
219
|
+
stroke: #D44D37;
|
|
220
|
+
stroke-width: 4px;
|
|
221
|
+
}
|
|
222
|
+
.sprotty-edge > .sprotty-routing-handle {
|
|
223
|
+
fill: var(--vscode-editor-selectionBackground);
|
|
224
|
+
stroke: none;
|
|
225
|
+
z-index: 1000;
|
|
226
|
+
}
|
|
227
|
+
.sprotty-edge > .sprotty-routing-handle[data-kind=line] {
|
|
228
|
+
opacity: 0.35;
|
|
229
|
+
}
|
|
230
|
+
.sprotty-edge > .sprotty-routing-handle.selected {
|
|
231
|
+
fill: var(--vscode-editor-selectionHighlightBackground);
|
|
232
|
+
}
|
|
233
|
+
.sprotty-edge > .sprotty-routing-handle.mouseover {
|
|
234
|
+
stroke: var(--vscode-editor-symbolHighlightBackground);
|
|
235
|
+
stroke-width: 1;
|
|
236
|
+
}
|
|
237
|
+
.sprotty-edge.mouseover:not(.selected) {
|
|
238
|
+
stroke-width: 3px;
|
|
239
|
+
}
|
|
240
|
+
.sprotty-hidden {
|
|
241
|
+
width: 0px;
|
|
242
|
+
height: 0px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* aurora-webview/node_modules/sprotty/css/sprotty.css */
|
|
246
|
+
.sprotty {
|
|
247
|
+
padding: 0px;
|
|
248
|
+
font-family:
|
|
249
|
+
"Helvetica Neue",
|
|
250
|
+
Helvetica,
|
|
251
|
+
Arial,
|
|
252
|
+
sans-serif;
|
|
253
|
+
}
|
|
254
|
+
.sprotty-root {
|
|
255
|
+
position: relative;
|
|
256
|
+
}
|
|
257
|
+
.sprotty-hidden {
|
|
258
|
+
display: block;
|
|
259
|
+
position: absolute;
|
|
260
|
+
width: 0px;
|
|
261
|
+
height: 0px;
|
|
262
|
+
}
|
|
263
|
+
.sprotty-popup {
|
|
264
|
+
font-family:
|
|
265
|
+
"Helvetica Neue",
|
|
266
|
+
Helvetica,
|
|
267
|
+
Arial,
|
|
268
|
+
sans-serif;
|
|
269
|
+
position: absolute;
|
|
270
|
+
background: white;
|
|
271
|
+
border-radius: 5px;
|
|
272
|
+
border: 1px solid;
|
|
273
|
+
max-width: 400px;
|
|
274
|
+
min-width: 100px;
|
|
275
|
+
}
|
|
276
|
+
.sprotty-popup > div {
|
|
277
|
+
margin: 10px;
|
|
278
|
+
}
|
|
279
|
+
.sprotty-popup-closed {
|
|
280
|
+
display: none;
|
|
281
|
+
}
|
|
282
|
+
.sprotty-projection-bar.horizontal {
|
|
283
|
+
position: absolute;
|
|
284
|
+
width: 100%;
|
|
285
|
+
height: 20px;
|
|
286
|
+
left: 0;
|
|
287
|
+
bottom: 0;
|
|
288
|
+
}
|
|
289
|
+
.sprotty-projection-bar.vertical {
|
|
290
|
+
position: absolute;
|
|
291
|
+
width: 20px;
|
|
292
|
+
height: 100%;
|
|
293
|
+
right: 0;
|
|
294
|
+
top: 0;
|
|
295
|
+
}
|
|
296
|
+
.sprotty-viewport {
|
|
297
|
+
z-index: 1;
|
|
298
|
+
border-style: solid;
|
|
299
|
+
border-width: 2px;
|
|
300
|
+
}
|
|
301
|
+
.sprotty-projection-bar.horizontal .sprotty-projection,
|
|
302
|
+
.sprotty-projection-bar.horizontal .sprotty-viewport {
|
|
303
|
+
position: absolute;
|
|
304
|
+
height: 100%;
|
|
305
|
+
top: 0;
|
|
306
|
+
}
|
|
307
|
+
.sprotty-projection-bar.vertical .sprotty-projection,
|
|
308
|
+
.sprotty-projection-bar.vertical .sprotty-viewport {
|
|
309
|
+
position: absolute;
|
|
310
|
+
width: 100%;
|
|
311
|
+
left: 0;
|
|
312
|
+
}
|
|
313
|
+
@keyframes spin {
|
|
314
|
+
100% {
|
|
315
|
+
transform: rotate(360deg);
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
.animation-spin {
|
|
319
|
+
animation: spin 1.5s linear infinite;
|
|
320
|
+
}
|
|
321
|
+
.sprotty-missing {
|
|
322
|
+
stroke-width: 1;
|
|
323
|
+
stroke: #f00;
|
|
324
|
+
fill: #f00;
|
|
325
|
+
font-size: 14pt;
|
|
326
|
+
text-anchor: start;
|
|
327
|
+
}
|
|
328
|
+
.sprotty-junction {
|
|
329
|
+
stroke: #000;
|
|
330
|
+
stroke-width: 1;
|
|
331
|
+
fill: #fff;
|
|
332
|
+
}
|
|
333
|
+
/*# sourceMappingURL=main.css.map */
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../aurora-webview/node_modules/sprotty-vscode-webview/css/sprotty-vscode.css", "../../aurora-webview/css/diagram.css", "../../aurora-webview/node_modules/sprotty/css/sprotty.css"],
|
|
4
|
+
"sourcesContent": ["/********************************************************************************\n * Copyright (c) 2017-2018 TypeFox and others.\n *\n * This program and the accompanying materials are made available under the\n * terms of the Eclipse Public License v. 2.0 which is available at\n * http://www.eclipse.org/legal/epl-2.0.\n *\n * This Source Code may also be made available under the following Secondary\n * Licenses when the conditions for such availability set forth in the Eclipse\n * Public License v. 2.0 are satisfied: GNU General Public License, version 2\n * with the GNU Classpath Exception which is available at\n * https://www.gnu.org/software/classpath/license.html.\n *\n * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0\n ********************************************************************************/\n\nhtml, body {\n width: 100%;\n height: 100%;\n padding: 0px;\n}\n\n.sprotty {\n display: flex;\n height: 100%;\n}\n\n.sprotty-hidden {\n height: 0px !important;\n}\n\nsvg {\n width: 100%;\n flex: 1;\n border-style: none;\n border-width: 0px;\n}\n\nsvg:focus {\n border-width: 0;\n}\n\n.sprotty-status {\n position: absolute;\n top: 5px;\n left: 10px;\n display: flex;\n align-items: center;\n}\n\n.sprotty-status .fatal {\n color: var(--vscode-editorError-foreground)\n}\n\n.sprotty-status .error {\n color: var(--vscode-editorError-foreground)\n}\n\n.sprotty-status .warning {\n color: var(--vscode-editorWarning-foreground)\n}\n\n.sprotty-status .info {\n color: var(--vscode-editorInfo-foreground)\n}\n\n.sprotty-error {\n fill: var(--vscode-editorError-foreground);\n color: var(--vscode-editorError-foreground);\n}\n\n.sprotty-warning {\n fill: var(--vscode-editorWarning-foreground);\n color: var(--vscode-editorWarning-foreground);\n}\n\n.sprotty-info {\n fill: var(--vscode-editorInfo-foreground);\n color: var(--vscode-editorInfo-foreground);\n}\n\n.sprotty-infoRow .fa {\n margin-right: 8px;\n}\n\n.sprotty-status .ok {\n visibility: hidden;\n}\n\n.sprotty-status-message {\n visibility: hidden;\n padding-left: 10px;\n}\n\n.sprotty-status:hover .sprotty-status-message {\n visibility: visible;\n}\n\n.sprotty-popup {\n position: absolute;\n background: #FFE9BE;\n border-radius: 0px;\n border: none;\n max-width: initial;\n min-width: initial;\n z-index: 1;\n padding: 8px;\n}\n\n.sprotty-infoRow {\n font-size: small;\n margin-bottom: 8px;\n}\n\n.sprotty-infoTitle {\n display: block;\n font-weight: bold;\n}\n", ".sprotty-node {\r\n fill: #774342\r\n}\r\n\r\n.sprotty-orphan-node {\r\n fill: #ffffff;\r\n stroke: #ff0400;\r\n stroke-width: 5px\r\n}\r\n\r\n.sprotty-ic-node {\r\n fill: #545454\r\n}\r\n\r\n.sprotty-logic-node {\r\n fill: #ffffff\r\n}\r\n\r\n.sprotty-ngl-node {\r\n fill: #515151\r\n}\r\n\r\n.sprotty-nl-node {\r\n fill: #ffffff\r\n}\r\n\r\n.sprotty-nldraft-node {\r\n fill: #ddab61\r\n}\r\n\r\n.sprotty-nlexclamation-node {\r\n fill: #9c0909\r\n}\r\n\r\n.sprotty-nltaskcompleted-node {\r\n fill: #89B345\r\n}\r\n\r\n.sprotty-nltask-node {\r\n fill: #ad7fa8\r\n}\r\n\r\n.sprotty-oc-node {\r\n fill: #d1d1d1\r\n}\r\n\r\n.sprotty-fhir-me-draft-node {\r\n fill: #ddab61\r\n}\r\n\r\n.sprotty-fhir-me-exclamation-node {\r\n fill: #9c0909\r\n}\r\n\r\n.sprotty-fhir-me-taskcompleted-node {\r\n fill: #89B345\r\n}\r\n\r\n.sprotty-fhir-me-task-node {\r\n fill: #ad7fa8\r\n}\r\n\r\n.sprotty-fhir-me-regular-node {\r\n fill: #d1d1d1\r\n}\r\n.sprotty-fhir-me-draft-past-node {\r\n fill: #ddab6150;\r\n}\r\n\r\n.sprotty-fhir-me-exclamation-past-node {\r\n fill: #9c090950;\r\n}\r\n\r\n.sprotty-fhir-me-taskcompleted-past-node {\r\n fill: #89B34550;\r\n}\r\n\r\n.sprotty-fhir-me-task-past-node {\r\n fill: #ad7fa850;\r\n}\r\n\r\n.sprotty-fhir-me-regular-past-node {\r\n fill: #d1d1d150;\r\n}\r\n\r\n\r\n.sprotty-ocselected-node {\r\n fill: #ABD48F\r\n}\r\n\r\n.sprotty-node.selected {\r\n stroke-width: 2;\r\n stroke: var(--vscode-button-hover-background);\r\n}\r\n\r\n.sprotty-label {\r\n fill: var(--vscode-button-foreground);\r\n stroke-width: 0;\r\n}\r\n\r\n.sprotty-darktext-label {\r\n fill: #000000;\r\n stroke-width: 0;\r\n}\r\n\r\n.sprotty-button {\r\n fill: var(--vscode-editorActiveLineNumber-foreground);\r\n}\r\n\r\n.sprotty-edge .sprotty-label {\r\n fill: var(--vscode-editorActiveLineNumber-foreground);\r\n}\r\n\r\n.sprotty-edge {\r\n fill:none;\r\n stroke: var(--vscode-editorActiveLineNumber-foreground);\r\n stroke-width: 2px;\r\n}\r\n\r\n.sprotty-orange-edge {\r\n fill:none;\r\n stroke: #C4772D;\r\n stroke-width: 2px;\r\n}\r\n\r\n.sprotty-green-edge {\r\n fill:none;\r\n stroke: #799665;\r\n stroke-width: 2px;\r\n}\r\n\r\n.sprotty-negative-edge {\r\n fill:none;\r\n stroke: #D44D37;\r\n stroke-width: 2px;\r\n}\r\n\r\n.sprotty-edge-arrow {\r\n fill:var(--vscode-editorActiveLineNumber-foreground);\r\n}\r\n\r\n.sprotty-negative-edge-arrow {\r\n fill: #D44D37;\r\n}\r\npath.sprotty-edge.dashed {\r\n stroke: #D44D37;\r\n stroke-width: 4px;\r\n}\r\n\r\n\r\n.sprotty-green-edge-arrow {\r\n fill: #174A09;\r\n}\r\n.sprotty-green-edge.dashed {\r\n stroke: #799665;\r\n stroke-width: 4px;\r\n}\r\n\r\n.sprotty-orange-edge-arrow {\r\n fill: #C4772D;\r\n}\r\n.sprotty-orange-edge.dashed {\r\n stroke: #C4772D;\r\n stroke-width: 4px;\r\n}\r\n\r\n.sprotty-edge.dashed {\r\n stroke: #D44D37;\r\n stroke-width: 4px;\r\n}\r\n.sprotty-edge > .sprotty-routing-handle {\r\n fill: var(--vscode-editor-selectionBackground);\r\n stroke: none;\r\n z-index: 1000;\r\n}\r\n\r\n.sprotty-edge > .sprotty-routing-handle[data-kind='line'] {\r\n opacity: 0.35;\r\n}\r\n\r\n.sprotty-edge > .sprotty-routing-handle.selected {\r\n fill: var(--vscode-editor-selectionHighlightBackground);\r\n}\r\n\r\n.sprotty-edge > .sprotty-routing-handle.mouseover {\r\n stroke: var(--vscode-editor-symbolHighlightBackground);\r\n stroke-width: 1;\r\n}\r\n\r\n.sprotty-edge.mouseover:not(.selected) {\r\n stroke-width: 3px;\r\n}\r\n\r\n.sprotty-hidden {\r\n width: 0px;\r\n height: 0px;\r\n}", "/********************************************************************************\n * Copyright (c) 2017-2018 TypeFox and others.\n *\n * This program and the accompanying materials are made available under the\n * terms of the Eclipse Public License v. 2.0 which is available at\n * http://www.eclipse.org/legal/epl-2.0.\n *\n * This Source Code may also be made available under the following Secondary\n * Licenses when the conditions for such availability set forth in the Eclipse\n * Public License v. 2.0 are satisfied: GNU General Public License, version 2\n * with the GNU Classpath Exception which is available at\n * https://www.gnu.org/software/classpath/license.html.\n *\n * SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0\n ********************************************************************************/\n\n.sprotty {\n padding: 0px;\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n}\n\n.sprotty-root {\n position: relative;\n}\n\n.sprotty-hidden {\n display: block;\n position: absolute;\n width: 0px;\n height: 0px;\n}\n\n.sprotty-popup {\n font-family: \"Helvetica Neue\", Helvetica, Arial, sans-serif;\n position: absolute;\n background: white;\n border-radius: 5px;\n border: 1px solid;\n max-width: 400px;\n min-width: 100px;\n}\n\n.sprotty-popup > div {\n margin: 10px;\n}\n\n.sprotty-popup-closed {\n display: none;\n}\n\n.sprotty-projection-bar.horizontal {\n position: absolute;\n width: 100%;\n height: 20px;\n left: 0;\n bottom: 0;\n}\n\n.sprotty-projection-bar.vertical {\n position: absolute;\n width: 20px;\n height: 100%;\n right: 0;\n top: 0;\n}\n\n.sprotty-viewport {\n z-index: 1;\n border-style: solid;\n border-width: 2px;\n}\n\n.sprotty-projection-bar.horizontal .sprotty-projection,\n.sprotty-projection-bar.horizontal .sprotty-viewport {\n position: absolute;\n height: 100%;\n top: 0;\n}\n\n.sprotty-projection-bar.vertical .sprotty-projection,\n.sprotty-projection-bar.vertical .sprotty-viewport {\n position: absolute;\n width: 100%;\n left: 0;\n}\n\n@keyframes spin {\n\t100% {\n\t\ttransform:rotate(360deg);\n\t}\n}\n\n.animation-spin {\n\tanimation: spin 1.5s linear infinite;\n}\n\n.sprotty-missing {\n stroke-width: 1;\n stroke: #f00;\n fill: #f00;\n font-size: 14pt;\n text-anchor: start;\n}\n\n.sprotty-junction {\n stroke: #000;\n stroke-width: 1;\n fill: #fff;\n}"],
|
|
5
|
+
"mappings": "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",
|
|
6
|
+
"names": []
|
|
7
|
+
}
|