cx 23.4.3 → 23.4.4
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/dist/charts.css +649 -0
- package/dist/charts.js +4811 -0
- package/dist/data.js +2109 -0
- package/dist/hooks.js +146 -0
- package/dist/manifest.js +1373 -0
- package/dist/reset.css +89 -0
- package/dist/svg.css +19 -0
- package/dist/svg.js +807 -0
- package/dist/ui.js +4456 -0
- package/dist/util.js +1538 -0
- package/dist/widgets.css +5242 -0
- package/dist/widgets.js +19417 -0
- package/package.json +1 -1
package/dist/charts.css
ADDED
|
@@ -0,0 +1,649 @@
|
|
|
1
|
+
.cxb-numericaxis {
|
|
2
|
+
shape-rendering: crispEdges;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.cxe-numericaxis-ticks {
|
|
6
|
+
stroke: rgba(128, 128, 128, 0.3);
|
|
7
|
+
stroke-width: 1px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.cxe-numericaxis-line {
|
|
11
|
+
stroke: rgba(128, 128, 128, 0.2);
|
|
12
|
+
stroke-width: 1px;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.cxe-numericaxis-label {
|
|
16
|
+
font-size: smaller;
|
|
17
|
+
fill: currentColor;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.cxe-numericaxis-label-offset {
|
|
21
|
+
visibility: hidden;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.cxb-categoryaxis {
|
|
25
|
+
shape-rendering: crispEdges;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.cxe-categoryaxis-ticks {
|
|
29
|
+
stroke: rgba(128, 128, 128, 0.3);
|
|
30
|
+
stroke-width: 1px;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.cxe-categoryaxis-line {
|
|
34
|
+
stroke: rgba(128, 128, 128, 0.2);
|
|
35
|
+
stroke-width: 1px;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.cxe-categoryaxis-label {
|
|
39
|
+
font-size: smaller;
|
|
40
|
+
fill: currentColor;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.cxe-categoryaxis-label-offset {
|
|
44
|
+
visibility: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.cxb-timeaxis {
|
|
48
|
+
shape-rendering: crispEdges;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.cxe-timeaxis-ticks {
|
|
52
|
+
stroke: rgba(128, 128, 128, 0.3);
|
|
53
|
+
stroke-width: 1px;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
.cxe-timeaxis-line {
|
|
57
|
+
stroke: rgba(128, 128, 128, 0.2);
|
|
58
|
+
stroke-width: 1px;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.cxe-timeaxis-label {
|
|
62
|
+
font-size: smaller;
|
|
63
|
+
fill: currentColor;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.cxe-timeaxis-label-offset {
|
|
67
|
+
visibility: hidden;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.cxe-pieslice-slice {
|
|
71
|
+
stroke-width: 0;
|
|
72
|
+
fill: #eee;
|
|
73
|
+
stroke: #ccc;
|
|
74
|
+
}
|
|
75
|
+
.cxe-pieslice-slice.cxs-selectable {
|
|
76
|
+
cursor: pointer;
|
|
77
|
+
}
|
|
78
|
+
.cxe-pieslice-slice.cxs-selected {
|
|
79
|
+
stroke-width: 2px;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.cxb-legend {
|
|
83
|
+
text-align: center;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.cxe-legend-entry {
|
|
87
|
+
display: inline-block;
|
|
88
|
+
padding: 5px 5px 5px 30px;
|
|
89
|
+
font-size: smaller;
|
|
90
|
+
position: relative;
|
|
91
|
+
margin: 5px;
|
|
92
|
+
box-sizing: border-box;
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
}
|
|
95
|
+
.cxb-legend.cxs-vertical .cxe-legend-entry {
|
|
96
|
+
display: block;
|
|
97
|
+
text-align: left;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.cxe-legend-svg {
|
|
101
|
+
position: absolute;
|
|
102
|
+
left: 5px;
|
|
103
|
+
top: 50%;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.cxe-legend-shape {
|
|
107
|
+
fill: rgba(128, 128, 128, 0.1);
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.cxb-legendentry {
|
|
111
|
+
display: inline-block;
|
|
112
|
+
padding: 5px 0 5px 30px;
|
|
113
|
+
position: relative;
|
|
114
|
+
box-sizing: border-box;
|
|
115
|
+
cursor: pointer;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.cxe-legendentry-svg {
|
|
119
|
+
position: absolute;
|
|
120
|
+
left: 5px;
|
|
121
|
+
top: 50%;
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
.cxe-legendentry-shape {
|
|
125
|
+
fill: #eee;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.cxb-gridlines {
|
|
129
|
+
shape-rendering: crispEdges;
|
|
130
|
+
}
|
|
131
|
+
.cxb-gridlines path {
|
|
132
|
+
stroke: rgba(128, 128, 128, 0.15);
|
|
133
|
+
fill: none;
|
|
134
|
+
stroke-width: 1;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.cxe-column-rect {
|
|
138
|
+
stroke-width: 1px;
|
|
139
|
+
fill: #eee;
|
|
140
|
+
stroke: #ccc;
|
|
141
|
+
}
|
|
142
|
+
.cxe-column-rect.cxs-selectable {
|
|
143
|
+
cursor: pointer;
|
|
144
|
+
}
|
|
145
|
+
.cxe-column-rect.cxs-selected {
|
|
146
|
+
stroke-width: 2px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.cxe-bar-rect {
|
|
150
|
+
stroke-width: 1px;
|
|
151
|
+
fill: #eee;
|
|
152
|
+
stroke: #ccc;
|
|
153
|
+
}
|
|
154
|
+
.cxe-bar-rect.cxs-selectable {
|
|
155
|
+
cursor: pointer;
|
|
156
|
+
}
|
|
157
|
+
.cxe-bar-rect.cxs-selected {
|
|
158
|
+
stroke-width: 2px;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.cxe-linegraph-line {
|
|
162
|
+
stroke: gray;
|
|
163
|
+
stroke-width: 2px;
|
|
164
|
+
fill: none !important;
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.cxe-linegraph-area {
|
|
168
|
+
stroke-width: 0;
|
|
169
|
+
opacity: 0.5;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.cxe-columngraph-column {
|
|
173
|
+
stroke-width: 1px;
|
|
174
|
+
fill: #eee;
|
|
175
|
+
stroke: #ccc;
|
|
176
|
+
}
|
|
177
|
+
.cxe-columngraph-column.cxs-selectable {
|
|
178
|
+
cursor: pointer;
|
|
179
|
+
}
|
|
180
|
+
.cxe-columngraph-column.cxs-selected {
|
|
181
|
+
stroke-width: 2px;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.cxe-bargraph-bar {
|
|
185
|
+
stroke-width: 1px;
|
|
186
|
+
fill: #eee;
|
|
187
|
+
stroke: #ccc;
|
|
188
|
+
}
|
|
189
|
+
.cxe-bargraph-bar.cxs-selectable {
|
|
190
|
+
cursor: pointer;
|
|
191
|
+
}
|
|
192
|
+
.cxe-bargraph-bar.cxs-selected {
|
|
193
|
+
stroke-width: 2px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.cxe-scattergraph-shape {
|
|
197
|
+
fill: rgb(128, 128, 128);
|
|
198
|
+
opacity: 0.8;
|
|
199
|
+
}
|
|
200
|
+
.cxe-scattergraph-shape.cxs-selected {
|
|
201
|
+
stroke-width: 2px;
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
.cxe-bubblegraph-bubble {
|
|
205
|
+
fill: rgb(128, 128, 128);
|
|
206
|
+
opacity: 0.5;
|
|
207
|
+
}
|
|
208
|
+
.cxe-bubblegraph-bubble:hover {
|
|
209
|
+
opacity: 0.75;
|
|
210
|
+
}
|
|
211
|
+
.cxe-bubblegraph-bubble.cxs-selected {
|
|
212
|
+
stroke: black;
|
|
213
|
+
stroke-width: 2px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.cxe-marker-shape {
|
|
217
|
+
fill: rgb(128, 128, 128);
|
|
218
|
+
stroke: rgb(128, 128, 128);
|
|
219
|
+
stroke-width: 1px;
|
|
220
|
+
}
|
|
221
|
+
.cxs-draggable-x > .cxe-marker-shape {
|
|
222
|
+
cursor: ew-resize;
|
|
223
|
+
touch-action: none;
|
|
224
|
+
}
|
|
225
|
+
.cxs-draggable-y > .cxe-marker-shape {
|
|
226
|
+
cursor: ns-resize;
|
|
227
|
+
touch-action: none;
|
|
228
|
+
}
|
|
229
|
+
.cxs-draggable-xy > .cxe-marker-shape {
|
|
230
|
+
cursor: move;
|
|
231
|
+
touch-action: none;
|
|
232
|
+
}
|
|
233
|
+
.cxs-selectable > .cxe-marker-shape {
|
|
234
|
+
cursor: pointer;
|
|
235
|
+
}
|
|
236
|
+
.cxe-marker-shape.cxs-hidden {
|
|
237
|
+
visibility: hidden;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.cxe-markerline-line {
|
|
241
|
+
stroke: rgb(128, 128, 128);
|
|
242
|
+
stroke-width: 1px;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.cxe-range-rect {
|
|
246
|
+
stroke-width: 0;
|
|
247
|
+
fill-opacity: 0.3;
|
|
248
|
+
fill: lightgray;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
.cxs-color-0 {
|
|
252
|
+
fill: #fbb4af;
|
|
253
|
+
stroke: #e2a29e;
|
|
254
|
+
background: #fbb4af;
|
|
255
|
+
border-color: #e2a29e;
|
|
256
|
+
}
|
|
257
|
+
.cxs-color-0.cxs-selectable:hover, .cxs-color-0.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-0, .cxs-color-root.cxs-hover .cxs-color-0 {
|
|
258
|
+
fill: #faa19b;
|
|
259
|
+
stroke: #e1918c;
|
|
260
|
+
background: #faa19b;
|
|
261
|
+
border-color: #e1918c;
|
|
262
|
+
}
|
|
263
|
+
.cxs-color-0.cxs-selected, .cxs-color-0.cxs-selected:hover, .cxs-color-0.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-0, .cxs-color-root.cxs-selected:hover .cxs-color-0, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-0 {
|
|
264
|
+
fill: #f6695e;
|
|
265
|
+
stroke: #dd5f55;
|
|
266
|
+
background: #f6695e;
|
|
267
|
+
border-color: #dd5f55;
|
|
268
|
+
}
|
|
269
|
+
.cxs-color-0.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-0 {
|
|
270
|
+
fill: #feeceb;
|
|
271
|
+
stroke: #e5d4d4;
|
|
272
|
+
background: #feeceb;
|
|
273
|
+
border-color: #e5d4d4;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
.cxs-color-1 {
|
|
277
|
+
fill: #f6a5c1;
|
|
278
|
+
stroke: #dd95ae;
|
|
279
|
+
background: #f6a5c1;
|
|
280
|
+
border-color: #dd95ae;
|
|
281
|
+
}
|
|
282
|
+
.cxs-color-1.cxs-selectable:hover, .cxs-color-1.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-1, .cxs-color-root.cxs-hover .cxs-color-1 {
|
|
283
|
+
fill: #f48fb1;
|
|
284
|
+
stroke: #dc819f;
|
|
285
|
+
background: #f48fb1;
|
|
286
|
+
border-color: #dc819f;
|
|
287
|
+
}
|
|
288
|
+
.cxs-color-1.cxs-selected, .cxs-color-1.cxs-selected:hover, .cxs-color-1.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-1, .cxs-color-root.cxs-selected:hover .cxs-color-1, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-1 {
|
|
289
|
+
fill: #ed4b82;
|
|
290
|
+
stroke: #d54475;
|
|
291
|
+
background: #ed4b82;
|
|
292
|
+
border-color: #d54475;
|
|
293
|
+
}
|
|
294
|
+
.cxs-color-1.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-1 {
|
|
295
|
+
fill: #fde9ef;
|
|
296
|
+
stroke: #e4d2d7;
|
|
297
|
+
background: #fde9ef;
|
|
298
|
+
border-color: #e4d2d7;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.cxs-color-2 {
|
|
302
|
+
fill: #d7a9df;
|
|
303
|
+
stroke: #c298c9;
|
|
304
|
+
background: #d7a9df;
|
|
305
|
+
border-color: #c298c9;
|
|
306
|
+
}
|
|
307
|
+
.cxs-color-2.cxs-selectable:hover, .cxs-color-2.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-2, .cxs-color-root.cxs-hover .cxs-color-2 {
|
|
308
|
+
fill: #ce93d8;
|
|
309
|
+
stroke: #b984c2;
|
|
310
|
+
background: #ce93d8;
|
|
311
|
+
border-color: #b984c2;
|
|
312
|
+
}
|
|
313
|
+
.cxs-color-2.cxs-selected, .cxs-color-2.cxs-selected:hover, .cxs-color-2.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-2, .cxs-color-root.cxs-selected:hover .cxs-color-2, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-2 {
|
|
314
|
+
fill: #b052c0;
|
|
315
|
+
stroke: #9e4aad;
|
|
316
|
+
background: #b052c0;
|
|
317
|
+
border-color: #9e4aad;
|
|
318
|
+
}
|
|
319
|
+
.cxs-color-2.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-2 {
|
|
320
|
+
fill: #f5e9f7;
|
|
321
|
+
stroke: #ddd2de;
|
|
322
|
+
background: #f5e9f7;
|
|
323
|
+
border-color: #ddd2de;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
.cxs-color-3 {
|
|
327
|
+
fill: #c2b0e2;
|
|
328
|
+
stroke: #af9ecb;
|
|
329
|
+
background: #c2b0e2;
|
|
330
|
+
border-color: #af9ecb;
|
|
331
|
+
}
|
|
332
|
+
.cxs-color-3.cxs-selectable:hover, .cxs-color-3.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-3, .cxs-color-root.cxs-hover .cxs-color-3 {
|
|
333
|
+
fill: #b39ddb;
|
|
334
|
+
stroke: #a18dc5;
|
|
335
|
+
background: #b39ddb;
|
|
336
|
+
border-color: #a18dc5;
|
|
337
|
+
}
|
|
338
|
+
.cxs-color-3.cxs-selected, .cxs-color-3.cxs-selected:hover, .cxs-color-3.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-3, .cxs-color-root.cxs-selected:hover .cxs-color-3, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-3 {
|
|
339
|
+
fill: #8561c5;
|
|
340
|
+
stroke: #7857b1;
|
|
341
|
+
background: #8561c5;
|
|
342
|
+
border-color: #7857b1;
|
|
343
|
+
}
|
|
344
|
+
.cxs-color-3.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-3 {
|
|
345
|
+
fill: #f0ebf8;
|
|
346
|
+
stroke: #d8d4df;
|
|
347
|
+
background: #f0ebf8;
|
|
348
|
+
border-color: #d8d4df;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.cxs-color-4 {
|
|
352
|
+
fill: #b2b9e1;
|
|
353
|
+
stroke: #a0a7cb;
|
|
354
|
+
background: #b2b9e1;
|
|
355
|
+
border-color: #a0a7cb;
|
|
356
|
+
}
|
|
357
|
+
.cxs-color-4.cxs-selectable:hover, .cxs-color-4.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-4, .cxs-color-root.cxs-hover .cxs-color-4 {
|
|
358
|
+
fill: #9fa8da;
|
|
359
|
+
stroke: #8f97c4;
|
|
360
|
+
background: #9fa8da;
|
|
361
|
+
border-color: #8f97c4;
|
|
362
|
+
}
|
|
363
|
+
.cxs-color-4.cxs-selected, .cxs-color-4.cxs-selected:hover, .cxs-color-4.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-4, .cxs-color-root.cxs-selected:hover .cxs-color-4, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-4 {
|
|
364
|
+
fill: #6574c4;
|
|
365
|
+
stroke: #5b68b0;
|
|
366
|
+
background: #6574c4;
|
|
367
|
+
border-color: #5b68b0;
|
|
368
|
+
}
|
|
369
|
+
.cxs-color-4.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-4 {
|
|
370
|
+
fill: #eceef8;
|
|
371
|
+
stroke: #d4d6df;
|
|
372
|
+
background: #eceef8;
|
|
373
|
+
border-color: #d4d6df;
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
.cxs-color-5 {
|
|
377
|
+
fill: #a6d5fa;
|
|
378
|
+
stroke: #95c0e1;
|
|
379
|
+
background: #a6d5fa;
|
|
380
|
+
border-color: #95c0e1;
|
|
381
|
+
}
|
|
382
|
+
.cxs-color-5.cxs-selectable:hover, .cxs-color-5.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-5, .cxs-color-root.cxs-hover .cxs-color-5 {
|
|
383
|
+
fill: #90cbf9;
|
|
384
|
+
stroke: #82b7e0;
|
|
385
|
+
background: #90cbf9;
|
|
386
|
+
border-color: #82b7e0;
|
|
387
|
+
}
|
|
388
|
+
.cxs-color-5.cxs-selected, .cxs-color-5.cxs-selected:hover, .cxs-color-5.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-5, .cxs-color-root.cxs-selected:hover .cxs-color-5, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-5 {
|
|
389
|
+
fill: #4dabf5;
|
|
390
|
+
stroke: #459add;
|
|
391
|
+
background: #4dabf5;
|
|
392
|
+
border-color: #459add;
|
|
393
|
+
}
|
|
394
|
+
.cxs-color-5.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-5 {
|
|
395
|
+
fill: #e9f5fe;
|
|
396
|
+
stroke: #d2dde5;
|
|
397
|
+
background: #e9f5fe;
|
|
398
|
+
border-color: #d2dde5;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
.cxs-color-6 {
|
|
402
|
+
fill: #9addfb;
|
|
403
|
+
stroke: #8bc7e2;
|
|
404
|
+
background: #9addfb;
|
|
405
|
+
border-color: #8bc7e2;
|
|
406
|
+
}
|
|
407
|
+
.cxs-color-6.cxs-selectable:hover, .cxs-color-6.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-6, .cxs-color-root.cxs-hover .cxs-color-6 {
|
|
408
|
+
fill: #81d4fa;
|
|
409
|
+
stroke: #74bfe1;
|
|
410
|
+
background: #81d4fa;
|
|
411
|
+
border-color: #74bfe1;
|
|
412
|
+
}
|
|
413
|
+
.cxs-color-6.cxs-selected, .cxs-color-6.cxs-selected:hover, .cxs-color-6.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-6, .cxs-color-root.cxs-selected:hover .cxs-color-6, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-6 {
|
|
414
|
+
fill: #35baf6;
|
|
415
|
+
stroke: #30a7dd;
|
|
416
|
+
background: #35baf6;
|
|
417
|
+
border-color: #30a7dd;
|
|
418
|
+
}
|
|
419
|
+
.cxs-color-6.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-6 {
|
|
420
|
+
fill: #e6f6fe;
|
|
421
|
+
stroke: #cfdde5;
|
|
422
|
+
background: #e6f6fe;
|
|
423
|
+
border-color: #cfdde5;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
.cxs-color-7 {
|
|
427
|
+
fill: #99e4ee;
|
|
428
|
+
stroke: #8acdd6;
|
|
429
|
+
background: #99e4ee;
|
|
430
|
+
border-color: #8acdd6;
|
|
431
|
+
}
|
|
432
|
+
.cxs-color-7.cxs-selectable:hover, .cxs-color-7.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-7, .cxs-color-root.cxs-hover .cxs-color-7 {
|
|
433
|
+
fill: #80deea;
|
|
434
|
+
stroke: #73c8d3;
|
|
435
|
+
background: #80deea;
|
|
436
|
+
border-color: #73c8d3;
|
|
437
|
+
}
|
|
438
|
+
.cxs-color-7.cxs-selected, .cxs-color-7.cxs-selected:hover, .cxs-color-7.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-7, .cxs-color-root.cxs-selected:hover .cxs-color-7, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-7 {
|
|
439
|
+
fill: #33c9dd;
|
|
440
|
+
stroke: #2eb5c7;
|
|
441
|
+
background: #33c9dd;
|
|
442
|
+
border-color: #2eb5c7;
|
|
443
|
+
}
|
|
444
|
+
.cxs-color-7.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-7 {
|
|
445
|
+
fill: #e6f8fb;
|
|
446
|
+
stroke: #cfdfe2;
|
|
447
|
+
background: #e6f8fb;
|
|
448
|
+
border-color: #cfdfe2;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.cxs-color-8 {
|
|
452
|
+
fill: #99d5cf;
|
|
453
|
+
stroke: #8ac0ba;
|
|
454
|
+
background: #99d5cf;
|
|
455
|
+
border-color: #8ac0ba;
|
|
456
|
+
}
|
|
457
|
+
.cxs-color-8.cxs-selectable:hover, .cxs-color-8.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-8, .cxs-color-root.cxs-hover .cxs-color-8 {
|
|
458
|
+
fill: #80cbc4;
|
|
459
|
+
stroke: #73b7b0;
|
|
460
|
+
background: #80cbc4;
|
|
461
|
+
border-color: #73b7b0;
|
|
462
|
+
}
|
|
463
|
+
.cxs-color-8.cxs-selected, .cxs-color-8.cxs-selected:hover, .cxs-color-8.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-8, .cxs-color-root.cxs-selected:hover .cxs-color-8, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-8 {
|
|
464
|
+
fill: #33aba0;
|
|
465
|
+
stroke: #2e9a90;
|
|
466
|
+
background: #33aba0;
|
|
467
|
+
border-color: #2e9a90;
|
|
468
|
+
}
|
|
469
|
+
.cxs-color-8.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-8 {
|
|
470
|
+
fill: #e6f5f3;
|
|
471
|
+
stroke: #cfdddb;
|
|
472
|
+
background: #e6f5f3;
|
|
473
|
+
border-color: #cfdddb;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.cxs-color-9 {
|
|
477
|
+
fill: #b7dfb9;
|
|
478
|
+
stroke: #a5c9a7;
|
|
479
|
+
background: #b7dfb9;
|
|
480
|
+
border-color: #a5c9a7;
|
|
481
|
+
}
|
|
482
|
+
.cxs-color-9.cxs-selectable:hover, .cxs-color-9.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-9, .cxs-color-root.cxs-hover .cxs-color-9 {
|
|
483
|
+
fill: #a6d7a8;
|
|
484
|
+
stroke: #95c297;
|
|
485
|
+
background: #a6d7a8;
|
|
486
|
+
border-color: #95c297;
|
|
487
|
+
}
|
|
488
|
+
.cxs-color-9.cxs-selected, .cxs-color-9.cxs-selected:hover, .cxs-color-9.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-9, .cxs-color-root.cxs-selected:hover .cxs-color-9, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-9 {
|
|
489
|
+
fill: #70bf73;
|
|
490
|
+
stroke: #65ac68;
|
|
491
|
+
background: #70bf73;
|
|
492
|
+
border-color: #65ac68;
|
|
493
|
+
}
|
|
494
|
+
.cxs-color-9.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-9 {
|
|
495
|
+
fill: #edf7ee;
|
|
496
|
+
stroke: #d5ded6;
|
|
497
|
+
background: #edf7ee;
|
|
498
|
+
border-color: #d5ded6;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
.cxs-color-10 {
|
|
502
|
+
fill: #d1e7b7;
|
|
503
|
+
stroke: #bcd0a5;
|
|
504
|
+
background: #d1e7b7;
|
|
505
|
+
border-color: #bcd0a5;
|
|
506
|
+
}
|
|
507
|
+
.cxs-color-10.cxs-selectable:hover, .cxs-color-10.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-10, .cxs-color-root.cxs-hover .cxs-color-10 {
|
|
508
|
+
fill: #c5e1a5;
|
|
509
|
+
stroke: #b1cb95;
|
|
510
|
+
background: #c5e1a5;
|
|
511
|
+
border-color: #b1cb95;
|
|
512
|
+
}
|
|
513
|
+
.cxs-color-10.cxs-selected, .cxs-color-10.cxs-selected:hover, .cxs-color-10.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-10, .cxs-color-root.cxs-selected:hover .cxs-color-10, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-10 {
|
|
514
|
+
fill: #a2cf6e;
|
|
515
|
+
stroke: #92ba63;
|
|
516
|
+
background: #a2cf6e;
|
|
517
|
+
border-color: #92ba63;
|
|
518
|
+
}
|
|
519
|
+
.cxs-color-10.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-10 {
|
|
520
|
+
fill: #f3f9ed;
|
|
521
|
+
stroke: #dbe0d5;
|
|
522
|
+
background: #f3f9ed;
|
|
523
|
+
border-color: #dbe0d5;
|
|
524
|
+
}
|
|
525
|
+
|
|
526
|
+
.cxs-color-11 {
|
|
527
|
+
fill: #ebf1b0;
|
|
528
|
+
stroke: #d4d99e;
|
|
529
|
+
background: #ebf1b0;
|
|
530
|
+
border-color: #d4d99e;
|
|
531
|
+
}
|
|
532
|
+
.cxs-color-11.cxs-selectable:hover, .cxs-color-11.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-11, .cxs-color-root.cxs-hover .cxs-color-11 {
|
|
533
|
+
fill: #e6ee9c;
|
|
534
|
+
stroke: #cfd68c;
|
|
535
|
+
background: #e6ee9c;
|
|
536
|
+
border-color: #cfd68c;
|
|
537
|
+
}
|
|
538
|
+
.cxs-color-11.cxs-selected, .cxs-color-11.cxs-selected:hover, .cxs-color-11.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-11, .cxs-color-root.cxs-selected:hover .cxs-color-11, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-11 {
|
|
539
|
+
fill: #d7e361;
|
|
540
|
+
stroke: #c2cc57;
|
|
541
|
+
background: #d7e361;
|
|
542
|
+
border-color: #c2cc57;
|
|
543
|
+
}
|
|
544
|
+
.cxs-color-11.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-11 {
|
|
545
|
+
fill: #fafceb;
|
|
546
|
+
stroke: #e1e3d4;
|
|
547
|
+
background: #fafceb;
|
|
548
|
+
border-color: #e1e3d4;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.cxs-color-12 {
|
|
552
|
+
fill: #fff7b1;
|
|
553
|
+
stroke: #e6de9f;
|
|
554
|
+
background: #fff7b1;
|
|
555
|
+
border-color: #e6de9f;
|
|
556
|
+
}
|
|
557
|
+
.cxs-color-12.cxs-selectable:hover, .cxs-color-12.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-12, .cxs-color-root.cxs-hover .cxs-color-12 {
|
|
558
|
+
fill: #fff59d;
|
|
559
|
+
stroke: #e6dd8d;
|
|
560
|
+
background: #fff59d;
|
|
561
|
+
border-color: #e6dd8d;
|
|
562
|
+
}
|
|
563
|
+
.cxs-color-12.cxs-selected, .cxs-color-12.cxs-selected:hover, .cxs-color-12.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-12, .cxs-color-root.cxs-selected:hover .cxs-color-12, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-12 {
|
|
564
|
+
fill: #ffef62;
|
|
565
|
+
stroke: #e6d758;
|
|
566
|
+
background: #ffef62;
|
|
567
|
+
border-color: #e6d758;
|
|
568
|
+
}
|
|
569
|
+
.cxs-color-12.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-12 {
|
|
570
|
+
fill: #fffdeb;
|
|
571
|
+
stroke: #e6e4d4;
|
|
572
|
+
background: #fffdeb;
|
|
573
|
+
border-color: #e6e4d4;
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.cxs-color-13 {
|
|
577
|
+
fill: #ffe69c;
|
|
578
|
+
stroke: #e6cf8c;
|
|
579
|
+
background: #ffe69c;
|
|
580
|
+
border-color: #e6cf8c;
|
|
581
|
+
}
|
|
582
|
+
.cxs-color-13.cxs-selectable:hover, .cxs-color-13.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-13, .cxs-color-root.cxs-hover .cxs-color-13 {
|
|
583
|
+
fill: #ffe083;
|
|
584
|
+
stroke: #e6ca76;
|
|
585
|
+
background: #ffe083;
|
|
586
|
+
border-color: #e6ca76;
|
|
587
|
+
}
|
|
588
|
+
.cxs-color-13.cxs-selected, .cxs-color-13.cxs-selected:hover, .cxs-color-13.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-13, .cxs-color-root.cxs-selected:hover .cxs-color-13, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-13 {
|
|
589
|
+
fill: #ffcd39;
|
|
590
|
+
stroke: #e6b933;
|
|
591
|
+
background: #ffcd39;
|
|
592
|
+
border-color: #e6b933;
|
|
593
|
+
}
|
|
594
|
+
.cxs-color-13.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-13 {
|
|
595
|
+
fill: #fff9e6;
|
|
596
|
+
stroke: #e6e0cf;
|
|
597
|
+
background: #fff9e6;
|
|
598
|
+
border-color: #e6e0cf;
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
.cxs-color-14 {
|
|
602
|
+
fill: #ffd699;
|
|
603
|
+
stroke: #e6c18a;
|
|
604
|
+
background: #ffd699;
|
|
605
|
+
border-color: #e6c18a;
|
|
606
|
+
}
|
|
607
|
+
.cxs-color-14.cxs-selectable:hover, .cxs-color-14.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-14, .cxs-color-root.cxs-hover .cxs-color-14 {
|
|
608
|
+
fill: #ffcc80;
|
|
609
|
+
stroke: #e6b873;
|
|
610
|
+
background: #ffcc80;
|
|
611
|
+
border-color: #e6b873;
|
|
612
|
+
}
|
|
613
|
+
.cxs-color-14.cxs-selected, .cxs-color-14.cxs-selected:hover, .cxs-color-14.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-14, .cxs-color-root.cxs-selected:hover .cxs-color-14, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-14 {
|
|
614
|
+
fill: #ffad33;
|
|
615
|
+
stroke: #e69c2e;
|
|
616
|
+
background: #ffad33;
|
|
617
|
+
border-color: #e69c2e;
|
|
618
|
+
}
|
|
619
|
+
.cxs-color-14.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-14 {
|
|
620
|
+
fill: #fff5e6;
|
|
621
|
+
stroke: #e6ddcf;
|
|
622
|
+
background: #fff5e6;
|
|
623
|
+
border-color: #e6ddcf;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.cxs-color-15 {
|
|
627
|
+
fill: #ffbca7;
|
|
628
|
+
stroke: #e6a996;
|
|
629
|
+
background: #ffbca7;
|
|
630
|
+
border-color: #e6a996;
|
|
631
|
+
}
|
|
632
|
+
.cxs-color-15.cxs-selectable:hover, .cxs-color-15.cxs-selectable.cxs-hover, .cxs-color-root:hover .cxs-color-15, .cxs-color-root.cxs-hover .cxs-color-15 {
|
|
633
|
+
fill: #ffab91;
|
|
634
|
+
stroke: #e69a83;
|
|
635
|
+
background: #ffab91;
|
|
636
|
+
border-color: #e69a83;
|
|
637
|
+
}
|
|
638
|
+
.cxs-color-15.cxs-selected, .cxs-color-15.cxs-selected:hover, .cxs-color-15.cxs-selected.cxs-hover, .cxs-color-root.cxs-selected .cxs-color-15, .cxs-color-root.cxs-selected:hover .cxs-color-15, .cxs-color-root.cxs-selected.cxs-hover .cxs-color-15 {
|
|
639
|
+
fill: #ff794e;
|
|
640
|
+
stroke: #e66d46;
|
|
641
|
+
background: #ff794e;
|
|
642
|
+
border-color: #e66d46;
|
|
643
|
+
}
|
|
644
|
+
.cxs-color-15.cxs-disabled, .cxs-color-root.cxs-disabled .cxs-color-15 {
|
|
645
|
+
fill: #ffeee9;
|
|
646
|
+
stroke: #e6d6d2;
|
|
647
|
+
background: #ffeee9;
|
|
648
|
+
border-color: #e6d6d2;
|
|
649
|
+
}
|