@syncfusion/ej2-layouts 25.1.37 → 26.1.35
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/.eslintrc.json +3 -2
- package/dist/ej2-layouts.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js +2 -2
- package/dist/ej2-layouts.umd.min.js.map +1 -1
- package/dist/es6/ej2-layouts.es2015.js +215 -140
- package/dist/es6/ej2-layouts.es2015.js.map +1 -1
- package/dist/es6/ej2-layouts.es5.js +243 -167
- package/dist/es6/ej2-layouts.es5.js.map +1 -1
- package/dist/global/ej2-layouts.min.js +2 -2
- package/dist/global/ej2-layouts.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +7 -7
- package/src/dashboard-layout/dashboard-layout.d.ts +1 -1
- package/src/dashboard-layout/dashboard-layout.js +55 -76
- package/src/splitter/splitter.js +81 -41
- package/src/timeline/timeline-model.d.ts +5 -5
- package/src/timeline/timeline.d.ts +6 -3
- package/src/timeline/timeline.js +107 -33
- package/styles/avatar/_bootstrap5.3-definition.scss +26 -0
- package/styles/avatar/_fluent2-definition.scss +29 -0
- package/styles/avatar/_layout.scss +16 -18
- package/styles/avatar/_material3-definition.scss +0 -7
- package/styles/avatar/bootstrap-dark.css +7 -4
- package/styles/avatar/bootstrap.css +7 -4
- package/styles/avatar/bootstrap4.css +7 -4
- package/styles/avatar/bootstrap5-dark.css +13 -10
- package/styles/avatar/bootstrap5.css +13 -10
- package/styles/avatar/fabric-dark.css +7 -4
- package/styles/avatar/fabric.css +7 -4
- package/styles/avatar/fluent-dark.css +11 -8
- package/styles/avatar/fluent.css +11 -8
- package/styles/avatar/fluent2.css +1094 -0
- package/styles/avatar/fluent2.scss +3 -0
- package/styles/avatar/highcontrast-light.css +7 -4
- package/styles/avatar/highcontrast.css +7 -4
- package/styles/avatar/material-dark.css +7 -4
- package/styles/avatar/material.css +7 -4
- package/styles/avatar/material3-dark.css +12 -9
- package/styles/avatar/material3.css +12 -9
- package/styles/avatar/tailwind-dark.css +11 -8
- package/styles/avatar/tailwind.css +11 -8
- package/styles/bootstrap-dark.css +359 -197
- package/styles/bootstrap-dark.scss +14 -5
- package/styles/bootstrap.css +359 -197
- package/styles/bootstrap.scss +14 -5
- package/styles/bootstrap4.css +357 -196
- package/styles/bootstrap4.scss +14 -5
- package/styles/bootstrap5-dark.css +370 -207
- package/styles/bootstrap5-dark.scss +14 -5
- package/styles/bootstrap5.css +370 -207
- package/styles/bootstrap5.scss +14 -5
- package/styles/card/_bootstrap5.3-definition.scss +125 -0
- package/styles/card/_fluent2-definition.scss +123 -0
- package/styles/card/_layout.scss +0 -3
- package/styles/card/_material3-definition.scss +0 -13
- package/styles/card/_theme.scss +4 -16
- package/styles/card/bootstrap-dark.css +95 -52
- package/styles/card/bootstrap.css +95 -52
- package/styles/card/bootstrap4.css +95 -52
- package/styles/card/bootstrap5-dark.css +95 -52
- package/styles/card/bootstrap5.css +95 -52
- package/styles/card/fabric-dark.css +95 -52
- package/styles/card/fabric.css +95 -52
- package/styles/card/fluent-dark.css +99 -54
- package/styles/card/fluent.css +99 -54
- package/styles/card/fluent2.css +1588 -0
- package/styles/card/fluent2.scss +3 -0
- package/styles/card/highcontrast-light.css +95 -52
- package/styles/card/highcontrast.css +95 -52
- package/styles/card/material-dark.css +95 -52
- package/styles/card/material.css +97 -53
- package/styles/card/material3-dark.css +99 -53
- package/styles/card/material3.css +99 -53
- package/styles/card/tailwind-dark.css +95 -52
- package/styles/card/tailwind.css +95 -52
- package/styles/dashboard-layout/_bootstrap5.3-definition.scss +108 -0
- package/styles/dashboard-layout/_fluent2-definition.scss +111 -0
- package/styles/dashboard-layout/_highcontrast-definition.scss +1 -1
- package/styles/dashboard-layout/_layout.scss +62 -60
- package/styles/dashboard-layout/_material3-definition.scss +0 -47
- package/styles/dashboard-layout/_theme.scss +19 -32
- package/styles/dashboard-layout/bootstrap-dark.css +41 -42
- package/styles/dashboard-layout/bootstrap.css +41 -42
- package/styles/dashboard-layout/bootstrap4.css +41 -42
- package/styles/dashboard-layout/bootstrap5-dark.css +48 -47
- package/styles/dashboard-layout/bootstrap5.css +48 -47
- package/styles/dashboard-layout/fabric-dark.css +41 -42
- package/styles/dashboard-layout/fabric.css +41 -42
- package/styles/dashboard-layout/fluent-dark.css +46 -46
- package/styles/dashboard-layout/fluent.css +46 -46
- package/styles/dashboard-layout/fluent2.css +1336 -0
- package/styles/dashboard-layout/fluent2.scss +4 -0
- package/styles/dashboard-layout/highcontrast-light.css +39 -41
- package/styles/dashboard-layout/highcontrast.css +43 -42
- package/styles/dashboard-layout/icons/_bootstrap5.3.scss +80 -0
- package/styles/dashboard-layout/icons/_fluent2.scss +80 -0
- package/styles/dashboard-layout/material-dark.css +41 -42
- package/styles/dashboard-layout/material.css +41 -42
- package/styles/dashboard-layout/material3-dark.css +48 -47
- package/styles/dashboard-layout/material3.css +48 -47
- package/styles/dashboard-layout/tailwind-dark.css +57 -55
- package/styles/dashboard-layout/tailwind.css +57 -55
- package/styles/fabric-dark.css +359 -197
- package/styles/fabric-dark.scss +14 -5
- package/styles/fabric.css +359 -197
- package/styles/fabric.scss +14 -5
- package/styles/fluent-dark.css +370 -206
- package/styles/fluent-dark.scss +14 -5
- package/styles/fluent.css +370 -206
- package/styles/fluent.scss +14 -5
- package/styles/fluent2.css +2795 -0
- package/styles/fluent2.scss +14 -0
- package/styles/highcontrast-light.css +357 -196
- package/styles/highcontrast-light.scss +13 -5
- package/styles/highcontrast.css +361 -197
- package/styles/highcontrast.scss +14 -5
- package/styles/material-dark.css +357 -196
- package/styles/material-dark.scss +14 -5
- package/styles/material.css +359 -197
- package/styles/material.scss +14 -5
- package/styles/material3-dark.css +370 -204
- package/styles/material3-dark.scss +14 -5
- package/styles/material3.css +370 -204
- package/styles/material3.scss +14 -5
- package/styles/splitter/_bootstrap5.3-definition.scss +31 -0
- package/styles/splitter/_fluent2-definition.scss +31 -0
- package/styles/splitter/_layout.scss +0 -4
- package/styles/splitter/_material3-definition.scss +0 -7
- package/styles/splitter/_theme.scss +0 -4
- package/styles/splitter/bootstrap-dark.css +115 -59
- package/styles/splitter/bootstrap.css +115 -59
- package/styles/splitter/bootstrap4.css +113 -58
- package/styles/splitter/bootstrap5-dark.css +113 -58
- package/styles/splitter/bootstrap5.css +113 -58
- package/styles/splitter/fabric-dark.css +115 -59
- package/styles/splitter/fabric.css +115 -59
- package/styles/splitter/fluent-dark.css +113 -58
- package/styles/splitter/fluent.css +113 -58
- package/styles/splitter/fluent2.css +1578 -0
- package/styles/splitter/fluent2.scss +4 -0
- package/styles/splitter/highcontrast-light.css +115 -59
- package/styles/splitter/highcontrast.css +115 -59
- package/styles/splitter/icons/_bootstrap5.3.scss +39 -0
- package/styles/splitter/icons/_fluent2.scss +39 -0
- package/styles/splitter/material-dark.css +113 -58
- package/styles/splitter/material.css +113 -58
- package/styles/splitter/material3-dark.css +114 -59
- package/styles/splitter/material3.css +114 -59
- package/styles/splitter/tailwind-dark.css +113 -58
- package/styles/splitter/tailwind.css +113 -58
- package/styles/tailwind-dark.css +377 -213
- package/styles/tailwind-dark.scss +14 -5
- package/styles/tailwind.css +377 -213
- package/styles/tailwind.scss +14 -5
- package/styles/timeline/_bootstrap5.3-definition.scss +18 -0
- package/styles/timeline/_fluent2-definition.scss +18 -0
- package/styles/timeline/_layout.scss +46 -7
- package/styles/timeline/bootstrap-dark.css +99 -39
- package/styles/timeline/bootstrap.css +99 -39
- package/styles/timeline/bootstrap4.css +99 -39
- package/styles/timeline/bootstrap5-dark.css +99 -39
- package/styles/timeline/bootstrap5.css +99 -39
- package/styles/timeline/fabric-dark.css +99 -39
- package/styles/timeline/fabric.css +99 -39
- package/styles/timeline/fluent-dark.css +99 -39
- package/styles/timeline/fluent.css +99 -39
- package/styles/timeline/fluent2.css +1332 -0
- package/styles/timeline/fluent2.scss +3 -0
- package/styles/timeline/highcontrast-light.css +99 -39
- package/styles/timeline/highcontrast.css +99 -39
- package/styles/timeline/material-dark.css +99 -39
- package/styles/timeline/material.css +99 -39
- package/styles/timeline/material3-dark.css +100 -40
- package/styles/timeline/material3.css +100 -40
- package/styles/timeline/tailwind-dark.css +99 -39
- package/styles/timeline/tailwind.css +99 -39
- package/CHANGELOG.md +0 -599
package/styles/fluent-dark.css
CHANGED
@@ -1,22 +1,25 @@
|
|
1
1
|
.e-avatar {
|
2
2
|
-ms-flex-line-pack: center;
|
3
3
|
align-content: center;
|
4
|
-
-
|
5
|
-
align
|
4
|
+
-webkit-box-align: center;
|
5
|
+
-ms-flex-align: center;
|
6
|
+
align-items: center;
|
6
7
|
background-color: #292827;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #a19f9d;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
15
17
|
font-size: 16px;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 40px;
|
18
|
-
-
|
19
|
-
|
20
|
+
-webkit-box-pack: center;
|
21
|
+
-ms-flex-pack: center;
|
22
|
+
justify-content: center;
|
20
23
|
overflow: hidden;
|
21
24
|
position: relative;
|
22
25
|
width: 40px;
|
@@ -35,29 +38,28 @@
|
|
35
38
|
.e-avatar.e-avatar-xsmall {
|
36
39
|
font-size: 10px;
|
37
40
|
height: 24px;
|
38
|
-
line-height: 16px;
|
39
41
|
width: 24px;
|
42
|
+
line-height: 16px;
|
40
43
|
}
|
41
44
|
.e-avatar.e-avatar-small {
|
42
45
|
font-size: 12px;
|
43
46
|
height: 32px;
|
44
|
-
line-height: 18px;
|
45
47
|
width: 32px;
|
48
|
+
line-height: 18px;
|
46
49
|
}
|
47
50
|
.e-avatar.e-avatar-large {
|
48
51
|
font-size: 20px;
|
49
52
|
height: 48px;
|
50
|
-
line-height: 28px;
|
51
53
|
width: 48px;
|
54
|
+
line-height: 28px;
|
52
55
|
}
|
53
56
|
.e-avatar.e-avatar-xlarge {
|
54
57
|
font-size: 24px;
|
55
58
|
height: 56px;
|
56
|
-
line-height: 28px;
|
57
59
|
width: 56px;
|
60
|
+
line-height: 28px;
|
58
61
|
}
|
59
62
|
|
60
|
-
/*! card layout */
|
61
63
|
.e-bigger .e-card,
|
62
64
|
.e-bigger.e-card {
|
63
65
|
line-height: 48px;
|
@@ -203,15 +205,20 @@
|
|
203
205
|
|
204
206
|
.e-card {
|
205
207
|
border-radius: 2px;
|
206
|
-
box-sizing: border-box;
|
208
|
+
-webkit-box-sizing: border-box;
|
209
|
+
box-sizing: border-box;
|
210
|
+
display: -webkit-box;
|
207
211
|
display: -ms-flexbox;
|
208
212
|
display: flex;
|
209
|
-
-
|
210
|
-
|
213
|
+
-webkit-box-orient: vertical;
|
214
|
+
-webkit-box-direction: normal;
|
215
|
+
-ms-flex-direction: column;
|
216
|
+
flex-direction: column;
|
211
217
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
212
218
|
font-size: 15px;
|
213
|
-
-
|
214
|
-
|
219
|
+
-webkit-box-pack: center;
|
220
|
+
-ms-flex-pack: center;
|
221
|
+
justify-content: center;
|
215
222
|
line-height: 36px;
|
216
223
|
min-height: 36px;
|
217
224
|
overflow: hidden;
|
@@ -221,11 +228,13 @@
|
|
221
228
|
width: 100%;
|
222
229
|
}
|
223
230
|
.e-card > * {
|
224
|
-
-
|
225
|
-
|
231
|
+
-webkit-box-pack: center;
|
232
|
+
-ms-flex-pack: center;
|
233
|
+
justify-content: center;
|
226
234
|
}
|
227
235
|
.e-card > .e-card-header-title {
|
228
|
-
box-sizing: border-box;
|
236
|
+
-webkit-box-sizing: border-box;
|
237
|
+
box-sizing: border-box;
|
229
238
|
font-size: 16px;
|
230
239
|
line-height: 1.5;
|
231
240
|
padding: 12px;
|
@@ -258,22 +267,30 @@
|
|
258
267
|
font-size: 12px;
|
259
268
|
}
|
260
269
|
.e-card .e-card-stacked {
|
270
|
+
display: -webkit-box;
|
261
271
|
display: -ms-flexbox;
|
262
272
|
display: flex;
|
263
|
-
-
|
264
|
-
|
265
|
-
|
266
|
-
|
273
|
+
-webkit-box-orient: vertical;
|
274
|
+
-webkit-box-direction: normal;
|
275
|
+
-ms-flex-direction: column;
|
276
|
+
flex-direction: column;
|
277
|
+
-webkit-box-pack: center;
|
278
|
+
-ms-flex-pack: center;
|
279
|
+
justify-content: center;
|
267
280
|
overflow: hidden;
|
268
281
|
}
|
269
282
|
.e-card.e-card-horizontal,
|
270
283
|
.e-card .e-card-horizontal {
|
284
|
+
display: -webkit-box;
|
271
285
|
display: -ms-flexbox;
|
272
286
|
display: flex;
|
273
|
-
-
|
274
|
-
|
275
|
-
|
276
|
-
|
287
|
+
-webkit-box-orient: horizontal;
|
288
|
+
-webkit-box-direction: normal;
|
289
|
+
-ms-flex-direction: row;
|
290
|
+
flex-direction: row;
|
291
|
+
-webkit-box-pack: center;
|
292
|
+
-ms-flex-pack: center;
|
293
|
+
justify-content: center;
|
277
294
|
}
|
278
295
|
.e-card.e-card-horizontal .e-card-image,
|
279
296
|
.e-card.e-card-horizontal img,
|
@@ -286,21 +303,27 @@
|
|
286
303
|
padding: 2px;
|
287
304
|
}
|
288
305
|
.e-card.e-card-horizontal > * {
|
289
|
-
-
|
290
|
-
flex: 1;
|
306
|
+
-webkit-box-flex: 1;
|
307
|
+
-ms-flex: 1;
|
308
|
+
flex: 1;
|
291
309
|
}
|
292
310
|
.e-card.e-card-horizontal .e-card-stacked {
|
311
|
+
display: -webkit-box;
|
293
312
|
display: -ms-flexbox;
|
294
313
|
display: flex;
|
295
|
-
-
|
296
|
-
flex: 1;
|
297
|
-
|
298
|
-
|
314
|
+
-webkit-box-flex: 1;
|
315
|
+
-ms-flex: 1;
|
316
|
+
flex: 1;
|
317
|
+
-webkit-box-orient: vertical;
|
318
|
+
-webkit-box-direction: normal;
|
319
|
+
-ms-flex-direction: column;
|
320
|
+
flex-direction: column;
|
299
321
|
overflow: hidden;
|
300
322
|
}
|
301
323
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
302
|
-
-
|
303
|
-
flex-
|
324
|
+
-webkit-box-flex: 1;
|
325
|
+
-ms-flex-positive: 1;
|
326
|
+
flex-grow: 1;
|
304
327
|
}
|
305
328
|
.e-card .e-card-separator {
|
306
329
|
display: block;
|
@@ -309,13 +332,18 @@
|
|
309
332
|
border-radius: 50%;
|
310
333
|
}
|
311
334
|
.e-card .e-card-header {
|
312
|
-
box-sizing: border-box;
|
335
|
+
-webkit-box-sizing: border-box;
|
336
|
+
box-sizing: border-box;
|
337
|
+
display: -webkit-box;
|
313
338
|
display: -ms-flexbox;
|
314
339
|
display: flex;
|
315
|
-
-
|
316
|
-
|
317
|
-
|
318
|
-
|
340
|
+
-webkit-box-orient: horizontal;
|
341
|
+
-webkit-box-direction: normal;
|
342
|
+
-ms-flex-direction: row;
|
343
|
+
flex-direction: row;
|
344
|
+
-webkit-box-pack: center;
|
345
|
+
-ms-flex-pack: center;
|
346
|
+
justify-content: center;
|
319
347
|
line-height: normal;
|
320
348
|
min-height: 22.5px;
|
321
349
|
padding: 16px 16px 0 16px;
|
@@ -326,24 +354,30 @@
|
|
326
354
|
padding-right: 0;
|
327
355
|
}
|
328
356
|
.e-card .e-card-header .e-card-actions {
|
329
|
-
-
|
330
|
-
|
357
|
+
-webkit-box-pack: start;
|
358
|
+
-ms-flex-pack: start;
|
359
|
+
justify-content: flex-start;
|
331
360
|
}
|
332
361
|
.e-card .e-card-header .e-card-header-image {
|
333
362
|
-ms-flex-item-align: center;
|
334
363
|
align-self: center;
|
364
|
+
display: -webkit-box;
|
335
365
|
display: -ms-flexbox;
|
336
366
|
display: flex;
|
337
367
|
}
|
338
368
|
.e-card .e-card-header .e-card-header-caption {
|
339
369
|
-ms-flex-item-align: center;
|
340
370
|
align-self: center;
|
371
|
+
display: -webkit-box;
|
341
372
|
display: -ms-flexbox;
|
342
373
|
display: flex;
|
343
|
-
-
|
344
|
-
flex: 1;
|
345
|
-
|
346
|
-
|
374
|
+
-webkit-box-flex: 1;
|
375
|
+
-ms-flex: 1;
|
376
|
+
flex: 1;
|
377
|
+
-webkit-box-orient: vertical;
|
378
|
+
-webkit-box-direction: normal;
|
379
|
+
-ms-flex-direction: column;
|
380
|
+
flex-direction: column;
|
347
381
|
overflow: hidden;
|
348
382
|
padding: 0 0 0 12px;
|
349
383
|
}
|
@@ -388,7 +422,8 @@
|
|
388
422
|
}
|
389
423
|
.e-card .e-card-image .e-card-title {
|
390
424
|
bottom: 0;
|
391
|
-
box-sizing: border-box;
|
425
|
+
-webkit-box-sizing: border-box;
|
426
|
+
box-sizing: border-box;
|
392
427
|
font-size: 16px;
|
393
428
|
line-height: 30px;
|
394
429
|
min-height: 30px;
|
@@ -409,28 +444,34 @@
|
|
409
444
|
text-align: right;
|
410
445
|
}
|
411
446
|
.e-card .e-card-actions {
|
412
|
-
box-sizing: border-box;
|
447
|
+
-webkit-box-sizing: border-box;
|
448
|
+
box-sizing: border-box;
|
413
449
|
display: inline-block;
|
414
|
-
-
|
415
|
-
|
450
|
+
-webkit-box-pack: start;
|
451
|
+
-ms-flex-pack: start;
|
452
|
+
justify-content: flex-start;
|
416
453
|
padding: 16px;
|
417
454
|
}
|
418
455
|
.e-card .e-card-actions.e-card-vertical {
|
456
|
+
display: -webkit-box;
|
419
457
|
display: -ms-flexbox;
|
420
458
|
display: flex;
|
421
|
-
-
|
422
|
-
|
459
|
+
-webkit-box-orient: vertical;
|
460
|
+
-webkit-box-direction: normal;
|
461
|
+
-ms-flex-direction: column;
|
462
|
+
flex-direction: column;
|
423
463
|
padding: 12px;
|
424
464
|
}
|
425
465
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
426
466
|
.e-card .e-card-actions.e-card-vertical a {
|
427
467
|
-ms-flex-item-align: initial;
|
428
|
-
-ms-grid-row-align: initial;
|
429
468
|
align-self: initial;
|
430
|
-
box-sizing: border-box;
|
469
|
+
-webkit-box-sizing: border-box;
|
470
|
+
box-sizing: border-box;
|
431
471
|
display: inline-block;
|
432
|
-
-
|
433
|
-
|
472
|
+
-webkit-box-pack: center;
|
473
|
+
-ms-flex-pack: center;
|
474
|
+
justify-content: center;
|
434
475
|
margin: 0 0 6px 0;
|
435
476
|
text-align: center;
|
436
477
|
width: 100%;
|
@@ -441,11 +482,13 @@
|
|
441
482
|
}
|
442
483
|
.e-card .e-card-actions button,
|
443
484
|
.e-card .e-card-actions a {
|
444
|
-
-
|
445
|
-
align
|
485
|
+
-webkit-box-align: center;
|
486
|
+
-ms-flex-align: center;
|
487
|
+
align-items: center;
|
446
488
|
-ms-flex-item-align: center;
|
447
489
|
align-self: center;
|
448
490
|
cursor: pointer;
|
491
|
+
display: -webkit-inline-box;
|
449
492
|
display: -ms-inline-flexbox;
|
450
493
|
display: inline-flex;
|
451
494
|
overflow: hidden;
|
@@ -454,6 +497,7 @@
|
|
454
497
|
}
|
455
498
|
.e-card .e-card-actions .e-card-btn span,
|
456
499
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
500
|
+
display: -webkit-box;
|
457
501
|
display: -ms-flexbox;
|
458
502
|
display: flex;
|
459
503
|
font-size: 18px;
|
@@ -464,10 +508,12 @@
|
|
464
508
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
465
509
|
-ms-flex-item-align: center;
|
466
510
|
align-self: center;
|
511
|
+
display: -webkit-box;
|
467
512
|
display: -ms-flexbox;
|
468
513
|
display: flex;
|
469
|
-
-
|
470
|
-
|
514
|
+
-webkit-box-pack: center;
|
515
|
+
-ms-flex-pack: center;
|
516
|
+
justify-content: center;
|
471
517
|
width: inherit;
|
472
518
|
}
|
473
519
|
.e-card .e-card-actions .e-card-btn > * {
|
@@ -515,13 +561,13 @@
|
|
515
561
|
text-overflow: ellipsis;
|
516
562
|
}
|
517
563
|
|
518
|
-
/*! card theme */
|
519
564
|
/* stylelint-disable property-no-vendor-prefix */
|
520
565
|
.e-card {
|
521
566
|
-webkit-tap-highlight-color: #0078d4;
|
522
567
|
background: #252423;
|
523
568
|
border: 0 solid #292827;
|
524
|
-
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
569
|
+
-webkit-box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
570
|
+
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
525
571
|
color: #f3f2f1;
|
526
572
|
outline: none;
|
527
573
|
}
|
@@ -584,12 +630,14 @@
|
|
584
630
|
}
|
585
631
|
|
586
632
|
.e-card-hover:hover {
|
587
|
-
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
633
|
+
-webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
634
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
588
635
|
}
|
589
636
|
|
590
637
|
.e-card-active:active {
|
591
638
|
border: 1px solid #3b3a39;
|
592
|
-
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
639
|
+
-webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
640
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
593
641
|
}
|
594
642
|
|
595
643
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler::before {
|
@@ -612,6 +660,7 @@
|
|
612
660
|
|
613
661
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
614
662
|
border-width: 1px;
|
663
|
+
display: -webkit-box;
|
615
664
|
display: -ms-flexbox;
|
616
665
|
display: flex;
|
617
666
|
overflow: hidden;
|
@@ -621,8 +670,9 @@
|
|
621
670
|
width: 100%;
|
622
671
|
}
|
623
672
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
624
|
-
-
|
625
|
-
flex: 1 1 auto;
|
673
|
+
-webkit-box-flex: 1;
|
674
|
+
-ms-flex: 1 1 auto;
|
675
|
+
flex: 1 1 auto;
|
626
676
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
627
677
|
font-size: 14px;
|
628
678
|
font-weight: 400;
|
@@ -631,8 +681,9 @@
|
|
631
681
|
overflow: auto;
|
632
682
|
}
|
633
683
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
634
|
-
-
|
635
|
-
flex-
|
684
|
+
-webkit-box-flex: 0;
|
685
|
+
-ms-flex-positive: 0;
|
686
|
+
flex-grow: 0;
|
636
687
|
-ms-flex-negative: 0;
|
637
688
|
flex-shrink: 0;
|
638
689
|
}
|
@@ -645,27 +696,35 @@
|
|
645
696
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
646
697
|
}
|
647
698
|
.e-splitter.e-splitter-horizontal {
|
648
|
-
-
|
649
|
-
|
699
|
+
-webkit-box-orient: horizontal;
|
700
|
+
-webkit-box-direction: normal;
|
701
|
+
-ms-flex-direction: row;
|
702
|
+
flex-direction: row;
|
650
703
|
}
|
651
704
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
652
705
|
overflow: hidden;
|
653
706
|
}
|
654
707
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
655
|
-
-
|
656
|
-
|
708
|
+
-webkit-box-orient: horizontal;
|
709
|
+
-webkit-box-direction: reverse;
|
710
|
+
-ms-flex-direction: row-reverse;
|
711
|
+
flex-direction: row-reverse;
|
657
712
|
}
|
658
713
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
659
|
-
-
|
660
|
-
|
714
|
+
-webkit-box-orient: horizontal;
|
715
|
+
-webkit-box-direction: reverse;
|
716
|
+
-ms-flex-direction: row-reverse;
|
717
|
+
flex-direction: row-reverse;
|
661
718
|
}
|
662
719
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
663
720
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
664
721
|
right: auto;
|
665
722
|
}
|
666
723
|
.e-splitter.e-splitter-vertical {
|
667
|
-
-
|
668
|
-
|
724
|
+
-webkit-box-orient: vertical;
|
725
|
+
-webkit-box-direction: normal;
|
726
|
+
-ms-flex-direction: column;
|
727
|
+
flex-direction: column;
|
669
728
|
}
|
670
729
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
671
730
|
overflow: hidden;
|
@@ -697,14 +756,18 @@
|
|
697
756
|
right: auto;
|
698
757
|
}
|
699
758
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
700
|
-
-
|
701
|
-
align
|
759
|
+
-webkit-box-align: center;
|
760
|
+
-ms-flex-align: center;
|
761
|
+
align-items: center;
|
762
|
+
display: -webkit-box;
|
702
763
|
display: -ms-flexbox;
|
703
764
|
display: flex;
|
704
|
-
-
|
705
|
-
flex: 0 0 auto;
|
706
|
-
|
707
|
-
|
765
|
+
-webkit-box-flex: 0;
|
766
|
+
-ms-flex: 0 0 auto;
|
767
|
+
flex: 0 0 auto;
|
768
|
+
-webkit-box-pack: center;
|
769
|
+
-ms-flex-pack: center;
|
770
|
+
justify-content: center;
|
708
771
|
min-width: 1px;
|
709
772
|
z-index: 15;
|
710
773
|
}
|
@@ -724,13 +787,16 @@
|
|
724
787
|
z-index: 10;
|
725
788
|
}
|
726
789
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
727
|
-
-
|
728
|
-
align
|
790
|
+
-webkit-box-align: center;
|
791
|
+
-ms-flex-align: center;
|
792
|
+
align-items: center;
|
793
|
+
display: -webkit-box;
|
729
794
|
display: -ms-flexbox;
|
730
795
|
display: flex;
|
731
796
|
height: 18px;
|
732
|
-
-
|
733
|
-
|
797
|
+
-webkit-box-pack: center;
|
798
|
+
-ms-flex-pack: center;
|
799
|
+
justify-content: center;
|
734
800
|
position: relative;
|
735
801
|
width: 1px;
|
736
802
|
}
|
@@ -743,9 +809,11 @@
|
|
743
809
|
right: 3px;
|
744
810
|
}
|
745
811
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
746
|
-
border-image: none;
|
812
|
+
-o-border-image: none;
|
813
|
+
border-image: none;
|
747
814
|
border-width: 1px;
|
748
815
|
cursor: pointer;
|
816
|
+
display: -webkit-box;
|
749
817
|
display: -ms-flexbox;
|
750
818
|
display: flex;
|
751
819
|
height: 26px;
|
@@ -757,16 +825,19 @@
|
|
757
825
|
content: "";
|
758
826
|
height: 8px;
|
759
827
|
position: absolute;
|
760
|
-
transform: rotate(0deg);
|
828
|
+
-webkit-transform: rotate(0deg);
|
829
|
+
transform: rotate(0deg);
|
761
830
|
width: 2px;
|
762
831
|
}
|
763
832
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
764
833
|
top: 5px;
|
765
|
-
transform-origin: 1px 7px 0;
|
834
|
+
-webkit-transform-origin: 1px 7px 0;
|
835
|
+
transform-origin: 1px 7px 0;
|
766
836
|
}
|
767
837
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
768
838
|
top: 11px;
|
769
|
-
transform-origin: 1px 1px 0;
|
839
|
+
-webkit-transform-origin: 1px 1px 0;
|
840
|
+
transform-origin: 1px 1px 0;
|
770
841
|
}
|
771
842
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
772
843
|
border-radius: 50%;
|
@@ -786,16 +857,20 @@
|
|
786
857
|
margin: 0 0 0 3px;
|
787
858
|
}
|
788
859
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
789
|
-
-
|
790
|
-
align
|
860
|
+
-webkit-box-align: center;
|
861
|
+
-ms-flex-align: center;
|
862
|
+
align-items: center;
|
791
863
|
border-left: 1px solid #292827;
|
792
864
|
border-right: 1px solid #292827;
|
865
|
+
display: -webkit-box;
|
793
866
|
display: -ms-flexbox;
|
794
867
|
display: flex;
|
795
|
-
-
|
796
|
-
flex: 0 0 auto;
|
797
|
-
|
798
|
-
|
868
|
+
-webkit-box-flex: 0;
|
869
|
+
-ms-flex: 0 0 auto;
|
870
|
+
flex: 0 0 auto;
|
871
|
+
-webkit-box-pack: center;
|
872
|
+
-ms-flex-pack: center;
|
873
|
+
justify-content: center;
|
799
874
|
min-height: 1px;
|
800
875
|
}
|
801
876
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
@@ -814,13 +889,16 @@
|
|
814
889
|
z-index: 12;
|
815
890
|
}
|
816
891
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
817
|
-
-
|
818
|
-
align
|
892
|
+
-webkit-box-align: center;
|
893
|
+
-ms-flex-align: center;
|
894
|
+
align-items: center;
|
895
|
+
display: -webkit-box;
|
819
896
|
display: -ms-flexbox;
|
820
897
|
display: flex;
|
821
898
|
height: 1px;
|
822
|
-
-
|
823
|
-
|
899
|
+
-webkit-box-pack: center;
|
900
|
+
-ms-flex-pack: center;
|
901
|
+
justify-content: center;
|
824
902
|
width: 18px;
|
825
903
|
}
|
826
904
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
@@ -831,9 +909,11 @@
|
|
831
909
|
left: 10px;
|
832
910
|
}
|
833
911
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
834
|
-
border-image: none;
|
912
|
+
-o-border-image: none;
|
913
|
+
border-image: none;
|
835
914
|
border-width: 0;
|
836
915
|
cursor: pointer;
|
916
|
+
display: -webkit-box;
|
837
917
|
display: -ms-flexbox;
|
838
918
|
display: flex;
|
839
919
|
height: 26px;
|
@@ -846,27 +926,32 @@
|
|
846
926
|
content: "";
|
847
927
|
height: 8px;
|
848
928
|
position: absolute;
|
849
|
-
transform: rotate(90deg);
|
929
|
+
-webkit-transform: rotate(90deg);
|
930
|
+
transform: rotate(90deg);
|
850
931
|
width: 2px;
|
851
932
|
}
|
852
933
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
853
934
|
top: 3px;
|
854
|
-
transform-origin: 2px 7px 0;
|
935
|
+
-webkit-transform-origin: 2px 7px 0;
|
936
|
+
transform-origin: 2px 7px 0;
|
855
937
|
}
|
856
938
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
857
939
|
left: 11px;
|
858
940
|
top: 8px;
|
859
|
-
transform-origin: 1px 1px 0;
|
941
|
+
-webkit-transform-origin: 1px 1px 0;
|
942
|
+
transform-origin: 1px 1px 0;
|
860
943
|
}
|
861
944
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
862
945
|
left: 12px;
|
863
946
|
top: 8px;
|
864
|
-
transform-origin: 1px 6px 0;
|
947
|
+
-webkit-transform-origin: 1px 6px 0;
|
948
|
+
transform-origin: 1px 6px 0;
|
865
949
|
}
|
866
950
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
867
951
|
left: 10px;
|
868
952
|
top: 12px;
|
869
|
-
transform-origin: 1px 2px 0;
|
953
|
+
-webkit-transform-origin: 1px 2px 0;
|
954
|
+
transform-origin: 1px 2px 0;
|
870
955
|
}
|
871
956
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
872
957
|
border-radius: 50%;
|
@@ -906,8 +991,10 @@
|
|
906
991
|
}
|
907
992
|
|
908
993
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
909
|
-
-
|
910
|
-
|
994
|
+
-webkit-box-orient: horizontal;
|
995
|
+
-webkit-box-direction: reverse;
|
996
|
+
-ms-flex-direction: row-reverse;
|
997
|
+
flex-direction: row-reverse;
|
911
998
|
}
|
912
999
|
|
913
1000
|
.e-bigger .e-splitter .e-pane {
|
@@ -936,8 +1023,10 @@
|
|
936
1023
|
}
|
937
1024
|
|
938
1025
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
939
|
-
-
|
940
|
-
|
1026
|
+
-webkit-box-orient: vertical;
|
1027
|
+
-webkit-box-direction: normal;
|
1028
|
+
-ms-flex-direction: column;
|
1029
|
+
flex-direction: column;
|
941
1030
|
}
|
942
1031
|
|
943
1032
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
@@ -963,13 +1052,16 @@
|
|
963
1052
|
background-color: transparent;
|
964
1053
|
border-color: transparent;
|
965
1054
|
color: transparent;
|
1055
|
+
-webkit-transition: background-color 500ms ease-out;
|
966
1056
|
transition: background-color 500ms ease-out;
|
967
1057
|
}
|
968
1058
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-icon-hidden)::before, .e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-icon-hidden)::after {
|
969
1059
|
background-color: #0078d4;
|
970
1060
|
opacity: 0;
|
971
|
-
transition-duration: 0.3s;
|
972
|
-
|
1061
|
+
-webkit-transition-duration: 0.3s;
|
1062
|
+
transition-duration: 0.3s;
|
1063
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1064
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
973
1065
|
}
|
974
1066
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
975
1067
|
background: #0078d4;
|
@@ -989,22 +1081,26 @@
|
|
989
1081
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-hover .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-active .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-hover .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-active .e-navigate-arrow::before {
|
990
1082
|
background-color: #0078d4;
|
991
1083
|
opacity: 1;
|
992
|
-
transform: rotate(40deg);
|
1084
|
+
-webkit-transform: rotate(40deg);
|
1085
|
+
transform: rotate(40deg);
|
993
1086
|
}
|
994
1087
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-hover .e-navigate-arrow::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-active .e-navigate-arrow::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-hover .e-navigate-arrow::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-active .e-navigate-arrow::after {
|
995
1088
|
background-color: #0078d4;
|
996
1089
|
opacity: 1;
|
997
|
-
transform: rotate(-40deg);
|
1090
|
+
-webkit-transform: rotate(-40deg);
|
1091
|
+
transform: rotate(-40deg);
|
998
1092
|
}
|
999
1093
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-navigate-arrow.e-arrow-right::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-navigate-arrow.e-arrow-right::before {
|
1000
1094
|
background-color: #0078d4;
|
1001
1095
|
opacity: 1;
|
1002
|
-
transform: rotate(-40deg);
|
1096
|
+
-webkit-transform: rotate(-40deg);
|
1097
|
+
transform: rotate(-40deg);
|
1003
1098
|
}
|
1004
1099
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-navigate-arrow.e-arrow-right::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-navigate-arrow.e-arrow-right::after {
|
1005
1100
|
background-color: #0078d4;
|
1006
1101
|
opacity: 1;
|
1007
|
-
transform: rotate(40deg);
|
1102
|
+
-webkit-transform: rotate(40deg);
|
1103
|
+
transform: rotate(40deg);
|
1008
1104
|
}
|
1009
1105
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
1010
1106
|
background: #0078d4;
|
@@ -1039,34 +1135,41 @@
|
|
1039
1135
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up::before, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up::before {
|
1040
1136
|
background-color: #0078d4;
|
1041
1137
|
opacity: 1;
|
1042
|
-
transform: rotate(125deg);
|
1138
|
+
-webkit-transform: rotate(125deg);
|
1139
|
+
transform: rotate(125deg);
|
1043
1140
|
}
|
1044
1141
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up::after, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up::after {
|
1045
1142
|
background-color: #0078d4;
|
1046
1143
|
opacity: 1;
|
1047
|
-
transform: rotate(50deg);
|
1144
|
+
-webkit-transform: rotate(50deg);
|
1145
|
+
transform: rotate(50deg);
|
1048
1146
|
}
|
1049
1147
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down::before, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down::before {
|
1050
1148
|
background-color: #0078d4;
|
1051
1149
|
opacity: 1;
|
1052
|
-
transform: rotate(55deg);
|
1150
|
+
-webkit-transform: rotate(55deg);
|
1151
|
+
transform: rotate(55deg);
|
1053
1152
|
}
|
1054
1153
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down::after, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down::after {
|
1055
1154
|
background-color: #0078d4;
|
1056
1155
|
opacity: 1;
|
1057
|
-
transform: rotate(125deg);
|
1156
|
+
-webkit-transform: rotate(125deg);
|
1157
|
+
transform: rotate(125deg);
|
1058
1158
|
}
|
1059
1159
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
1060
1160
|
background-color: transparent;
|
1061
1161
|
border-color: transparent;
|
1062
1162
|
color: transparent;
|
1163
|
+
-webkit-transition: background-color 300ms ease-out;
|
1063
1164
|
transition: background-color 300ms ease-out;
|
1064
1165
|
}
|
1065
1166
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow::after {
|
1066
1167
|
background-color: #0078d4;
|
1067
1168
|
opacity: 0;
|
1068
|
-
transition-duration: 0.3s;
|
1069
|
-
|
1169
|
+
-webkit-transition-duration: 0.3s;
|
1170
|
+
transition-duration: 0.3s;
|
1171
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1172
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1070
1173
|
}
|
1071
1174
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1072
1175
|
background: #0078d4;
|
@@ -1080,7 +1183,8 @@
|
|
1080
1183
|
pointer-events: none;
|
1081
1184
|
}
|
1082
1185
|
|
1083
|
-
/* stylelint-disable-line no-empty-source */
|
1186
|
+
/* stylelint-disable-line no-empty-source */
|
1187
|
+
/*! component's theme wise override tailwind-definitions and variables */
|
1084
1188
|
/* stylelint-disable */
|
1085
1189
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
1086
1190
|
height: 100%;
|
@@ -1141,7 +1245,8 @@
|
|
1141
1245
|
font-size: 12px;
|
1142
1246
|
left: 4px;
|
1143
1247
|
position: absolute;
|
1144
|
-
transform: rotateY(180deg);
|
1248
|
+
-webkit-transform: rotateY(180deg);
|
1249
|
+
transform: rotateY(180deg);
|
1145
1250
|
}
|
1146
1251
|
|
1147
1252
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
@@ -1150,7 +1255,7 @@
|
|
1150
1255
|
height: 100%;
|
1151
1256
|
width: 100%;
|
1152
1257
|
}
|
1153
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
1258
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
1154
1259
|
border: 1px dotted #797775;
|
1155
1260
|
position: absolute;
|
1156
1261
|
}
|
@@ -1159,15 +1264,27 @@
|
|
1159
1264
|
}
|
1160
1265
|
.e-dashboardlayout.e-control.e-prevent {
|
1161
1266
|
-webkit-user-select: none;
|
1267
|
+
-moz-user-select: none;
|
1162
1268
|
-ms-user-select: none;
|
1163
1269
|
user-select: none;
|
1164
1270
|
}
|
1271
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
1272
|
+
position: relative;
|
1273
|
+
}
|
1165
1274
|
.e-dashboardlayout.e-control .e-panel {
|
1275
|
+
border: 1px solid #252423;
|
1276
|
+
height: 100%;
|
1277
|
+
-webkit-user-select: none;
|
1278
|
+
-moz-user-select: none;
|
1279
|
+
-ms-user-select: none;
|
1280
|
+
user-select: none;
|
1281
|
+
width: 100%;
|
1166
1282
|
border-radius: 2px;
|
1167
1283
|
}
|
1168
1284
|
.e-dashboardlayout.e-control .e-panel:hover {
|
1169
1285
|
border: 1px solid #797775;
|
1170
|
-
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
1286
|
+
-webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
1287
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
1171
1288
|
}
|
1172
1289
|
.e-dashboardlayout.e-control .e-panel:hover .e-panel-container .e-resize.e-dl-icon {
|
1173
1290
|
display: block;
|
@@ -1175,10 +1292,19 @@
|
|
1175
1292
|
.e-dashboardlayout.e-control .e-panel:active {
|
1176
1293
|
border: 1px solid #0078d4;
|
1177
1294
|
}
|
1295
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
1296
|
+
height: 100%;
|
1297
|
+
width: 100%;
|
1298
|
+
}
|
1299
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
1300
|
+
height: inherit;
|
1301
|
+
width: inherit;
|
1302
|
+
}
|
1178
1303
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
1179
1304
|
display: none;
|
1180
1305
|
}
|
1181
1306
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
1307
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
1182
1308
|
transition: top 0.5s, left 0.5s;
|
1183
1309
|
}
|
1184
1310
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
@@ -1201,22 +1327,6 @@
|
|
1201
1327
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
1202
1328
|
float: right;
|
1203
1329
|
}
|
1204
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
1205
|
-
height: 100%;
|
1206
|
-
width: 100%;
|
1207
|
-
}
|
1208
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
1209
|
-
height: inherit;
|
1210
|
-
width: inherit;
|
1211
|
-
}
|
1212
|
-
.e-dashboardlayout.e-control .e-panel {
|
1213
|
-
border: 1px solid #252423;
|
1214
|
-
height: 100%;
|
1215
|
-
-webkit-user-select: none;
|
1216
|
-
-ms-user-select: none;
|
1217
|
-
user-select: none;
|
1218
|
-
width: 100%;
|
1219
|
-
}
|
1220
1330
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
1221
1331
|
position: absolute;
|
1222
1332
|
-ms-touch-action: none;
|
@@ -1253,13 +1363,6 @@
|
|
1253
1363
|
font-family: "e-icons";
|
1254
1364
|
position: absolute;
|
1255
1365
|
}
|
1256
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
1257
|
-
cursor: move;
|
1258
|
-
}
|
1259
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
1260
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
1261
|
-
cursor: default;
|
1262
|
-
}
|
1263
1366
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
1264
1367
|
cursor: move;
|
1265
1368
|
z-index: 1111 !important;
|
@@ -1267,6 +1370,19 @@
|
|
1267
1370
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
1268
1371
|
float: left;
|
1269
1372
|
}
|
1373
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1374
|
+
font-size: 18px;
|
1375
|
+
font-weight: 600;
|
1376
|
+
height: 68px;
|
1377
|
+
padding: 20px 0 20px 20px;
|
1378
|
+
}
|
1379
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
1380
|
+
cursor: move;
|
1381
|
+
}
|
1382
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
1383
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
1384
|
+
cursor: default;
|
1385
|
+
}
|
1270
1386
|
.e-dashboardlayout.e-control .e-holder {
|
1271
1387
|
background: #004578;
|
1272
1388
|
border: 1px #0078d4 dashed;
|
@@ -1275,14 +1391,9 @@
|
|
1275
1391
|
border-radius: 2px;
|
1276
1392
|
}
|
1277
1393
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
1394
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
1278
1395
|
transition: top 0.3s, left 0.3s;
|
1279
1396
|
}
|
1280
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1281
|
-
font-size: 18px;
|
1282
|
-
font-weight: 600;
|
1283
|
-
height: 68px;
|
1284
|
-
padding: 20px 0 20px 20px;
|
1285
|
-
}
|
1286
1397
|
|
1287
1398
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
1288
1399
|
font-size: 18px;
|
@@ -1301,22 +1412,12 @@
|
|
1301
1412
|
}
|
1302
1413
|
.e-dashboardlayout.e-control .e-panel {
|
1303
1414
|
background: #252423;
|
1304
|
-
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
1305
|
-
|
1306
|
-
|
1307
|
-
|
1308
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
1309
|
-
color: #f3f2f1;
|
1310
|
-
}
|
1311
|
-
.e-dashboardlayout.e-control .e-panel {
|
1312
|
-
background: #252423;
|
1313
|
-
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
1314
|
-
box-sizing: border-box;
|
1415
|
+
-webkit-box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
1416
|
+
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
1417
|
+
-webkit-box-sizing: border-box;
|
1418
|
+
box-sizing: border-box;
|
1315
1419
|
position: absolute;
|
1316
1420
|
}
|
1317
|
-
.e-dashboardlayout.e-control .e-panel:active {
|
1318
|
-
background: #201f1e;
|
1319
|
-
}
|
1320
1421
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
1321
1422
|
color: #f3f2f1;
|
1322
1423
|
}
|
@@ -1377,6 +1478,9 @@
|
|
1377
1478
|
bottom: 2px;
|
1378
1479
|
right: 2px;
|
1379
1480
|
}
|
1481
|
+
.e-dashboardlayout.e-control .e-panel:active {
|
1482
|
+
background: #201f1e;
|
1483
|
+
}
|
1380
1484
|
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1381
1485
|
color: #f3f2f1;
|
1382
1486
|
}
|
@@ -1393,12 +1497,15 @@
|
|
1393
1497
|
.e-timeline [class^="e-dot "]::before,
|
1394
1498
|
.e-timeline .e-dot-item,
|
1395
1499
|
.e-timeline .e-dot {
|
1500
|
+
display: -webkit-box;
|
1396
1501
|
display: -ms-flexbox;
|
1397
1502
|
display: flex;
|
1398
|
-
-
|
1399
|
-
align
|
1400
|
-
|
1401
|
-
|
1503
|
+
-webkit-box-align: center;
|
1504
|
+
-ms-flex-align: center;
|
1505
|
+
align-items: center;
|
1506
|
+
-webkit-box-pack: center;
|
1507
|
+
-ms-flex-pack: center;
|
1508
|
+
justify-content: center;
|
1402
1509
|
}
|
1403
1510
|
.e-timeline [class^="e-dot "]::before {
|
1404
1511
|
min-width: 32px;
|
@@ -1406,10 +1513,13 @@
|
|
1406
1513
|
border-radius: var(--dot-radius);
|
1407
1514
|
}
|
1408
1515
|
.e-timeline .e-timeline-items {
|
1516
|
+
display: -webkit-inline-box;
|
1409
1517
|
display: -ms-inline-flexbox;
|
1410
1518
|
display: inline-flex;
|
1411
|
-
-
|
1412
|
-
|
1519
|
+
-webkit-box-orient: vertical;
|
1520
|
+
-webkit-box-direction: normal;
|
1521
|
+
-ms-flex-direction: column;
|
1522
|
+
flex-direction: column;
|
1413
1523
|
list-style: none;
|
1414
1524
|
-ms-flex-wrap: nowrap;
|
1415
1525
|
flex-wrap: nowrap;
|
@@ -1418,13 +1528,17 @@
|
|
1418
1528
|
height: inherit;
|
1419
1529
|
}
|
1420
1530
|
.e-timeline .e-timeline-item {
|
1531
|
+
display: -webkit-box;
|
1421
1532
|
display: -ms-flexbox;
|
1422
1533
|
display: flex;
|
1423
|
-
-
|
1424
|
-
|
1534
|
+
-webkit-box-orient: horizontal;
|
1535
|
+
-webkit-box-direction: normal;
|
1536
|
+
-ms-flex-direction: row;
|
1537
|
+
flex-direction: row;
|
1425
1538
|
position: relative;
|
1426
|
-
-
|
1427
|
-
align
|
1539
|
+
-webkit-box-align: start;
|
1540
|
+
-ms-flex-align: start;
|
1541
|
+
align-items: flex-start;
|
1428
1542
|
width: inherit;
|
1429
1543
|
height: inherit;
|
1430
1544
|
}
|
@@ -1444,8 +1558,9 @@
|
|
1444
1558
|
}
|
1445
1559
|
.e-timeline .e-dot-item {
|
1446
1560
|
position: relative;
|
1447
|
-
-
|
1448
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
1561
|
+
-webkit-box-flex: 0;
|
1562
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
1563
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
1449
1564
|
z-index: 1000;
|
1450
1565
|
}
|
1451
1566
|
.e-timeline .e-dot {
|
@@ -1461,12 +1576,12 @@
|
|
1461
1576
|
}
|
1462
1577
|
.e-timeline .e-opposite-content,
|
1463
1578
|
.e-timeline .e-content {
|
1464
|
-
-
|
1465
|
-
flex: 1 1 50%;
|
1579
|
+
-webkit-box-flex: 1;
|
1580
|
+
-ms-flex: 1 1 50%;
|
1581
|
+
flex: 1 1 50%;
|
1466
1582
|
}
|
1467
1583
|
.e-timeline .e-opposite-content {
|
1468
1584
|
font-size: 12px;
|
1469
|
-
text-align: right;
|
1470
1585
|
}
|
1471
1586
|
.e-timeline .e-content {
|
1472
1587
|
text-align: left;
|
@@ -1480,12 +1595,16 @@
|
|
1480
1595
|
bottom: calc(var(--dot-size) * 2);
|
1481
1596
|
}
|
1482
1597
|
.e-timeline.e-vertical.e-align-before .e-timeline-item, .e-timeline.e-vertical.e-align-alternate .e-timeline-item:nth-of-type(even), .e-timeline.e-vertical.e-align-alternatereverse .e-timeline-item:nth-of-type(odd) {
|
1483
|
-
-
|
1484
|
-
|
1598
|
+
-webkit-box-orient: horizontal;
|
1599
|
+
-webkit-box-direction: reverse;
|
1600
|
+
-ms-flex-direction: row-reverse;
|
1601
|
+
flex-direction: row-reverse;
|
1485
1602
|
}
|
1486
1603
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
1487
|
-
-
|
1488
|
-
|
1604
|
+
-webkit-box-orient: vertical;
|
1605
|
+
-webkit-box-direction: reverse;
|
1606
|
+
-ms-flex-direction: column-reverse;
|
1607
|
+
flex-direction: column-reverse;
|
1489
1608
|
}
|
1490
1609
|
.e-timeline.e-vertical.e-align-before .e-timeline-items .e-opposite-content, .e-timeline.e-vertical.e-align-after .e-timeline-items .e-content {
|
1491
1610
|
text-align: left;
|
@@ -1493,6 +1612,19 @@
|
|
1493
1612
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
1494
1613
|
content: unset;
|
1495
1614
|
}
|
1615
|
+
.e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after, .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after, .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after, .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
1616
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
1617
|
+
right: auto;
|
1618
|
+
}
|
1619
|
+
.e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after, .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after, .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after, .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
1620
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
1621
|
+
left: auto;
|
1622
|
+
}
|
1623
|
+
.e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-content, .e-timeline.e-vertical.e-align-after.e-content-only .e-opposite-content, .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-content, .e-timeline.e-vertical.e-align-before.e-content-only .e-opposite-content {
|
1624
|
+
-webkit-box-flex: 0;
|
1625
|
+
-ms-flex: 0;
|
1626
|
+
flex: 0;
|
1627
|
+
}
|
1496
1628
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
1497
1629
|
content: unset;
|
1498
1630
|
}
|
@@ -1510,13 +1642,27 @@
|
|
1510
1642
|
width: calc(var(--dot-size) * 2);
|
1511
1643
|
}
|
1512
1644
|
.e-timeline.e-horizontal .e-timeline-items {
|
1645
|
+
display: -webkit-inline-box;
|
1513
1646
|
display: -ms-inline-flexbox;
|
1514
1647
|
display: inline-flex;
|
1515
|
-
-
|
1516
|
-
|
1648
|
+
-webkit-box-orient: horizontal;
|
1649
|
+
-webkit-box-direction: normal;
|
1650
|
+
-ms-flex-direction: row;
|
1651
|
+
flex-direction: row;
|
1517
1652
|
}
|
1518
1653
|
.e-timeline.e-horizontal .e-timeline-item {
|
1519
1654
|
height: auto;
|
1655
|
+
-webkit-box-orient: vertical;
|
1656
|
+
-webkit-box-direction: normal;
|
1657
|
+
-ms-flex-direction: column;
|
1658
|
+
flex-direction: column;
|
1659
|
+
-webkit-box-align: center;
|
1660
|
+
-ms-flex-align: center;
|
1661
|
+
align-items: center;
|
1662
|
+
}
|
1663
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
1664
|
+
left: calc(50% - var(--connector-size));
|
1665
|
+
right: auto;
|
1520
1666
|
}
|
1521
1667
|
.e-timeline.e-horizontal.e-rtl .e-timeline-item.e-connector::after, .e-timeline.e-horizontal.e-timeline-reverse .e-timeline-item.e-connector::after {
|
1522
1668
|
right: calc(50% - var(--connector-size));
|
@@ -1525,32 +1671,33 @@
|
|
1525
1671
|
.e-timeline.e-horizontal .e-dot-item {
|
1526
1672
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
1527
1673
|
}
|
1528
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
1529
|
-
-ms-flex-direction: column;
|
1530
|
-
flex-direction: column;
|
1531
|
-
-ms-flex-align: center;
|
1532
|
-
align-items: center;
|
1533
|
-
}
|
1534
1674
|
.e-timeline.e-horizontal .e-opposite-content,
|
1535
1675
|
.e-timeline.e-horizontal .e-content {
|
1676
|
+
display: -webkit-box;
|
1536
1677
|
display: -ms-flexbox;
|
1537
1678
|
display: flex;
|
1538
1679
|
}
|
1539
1680
|
.e-timeline.e-horizontal.e-align-alternate .e-timeline-item:nth-of-type(even) .e-content, .e-timeline.e-horizontal.e-align-alternate .e-timeline-item:nth-of-type(odd) .e-opposite-content, .e-timeline.e-horizontal.e-align-alternatereverse .e-timeline-item:nth-of-type(odd) .e-content, .e-timeline.e-horizontal.e-align-alternatereverse .e-timeline-item:nth-of-type(even) .e-opposite-content, .e-timeline.e-horizontal.e-align-before .e-content {
|
1540
|
-
-
|
1541
|
-
align
|
1681
|
+
-webkit-box-align: end;
|
1682
|
+
-ms-flex-align: end;
|
1683
|
+
align-items: flex-end;
|
1542
1684
|
}
|
1543
1685
|
.e-timeline.e-horizontal.e-align-alternate .e-timeline-item:nth-of-type(odd) .e-content, .e-timeline.e-horizontal.e-align-alternate .e-timeline-item:nth-of-type(even) .e-opposite-content, .e-timeline.e-horizontal.e-align-alternatereverse .e-timeline-item:nth-of-type(even) .e-content, .e-timeline.e-horizontal.e-align-alternatereverse .e-timeline-item:nth-of-type(odd) .e-opposite-content, .e-timeline.e-horizontal.e-align-before .e-opposite-content {
|
1544
|
-
-
|
1545
|
-
align
|
1686
|
+
-webkit-box-align: start;
|
1687
|
+
-ms-flex-align: start;
|
1688
|
+
align-items: flex-start;
|
1546
1689
|
}
|
1547
1690
|
.e-timeline.e-horizontal.e-align-before .e-timeline-item, .e-timeline.e-horizontal.e-align-alternate .e-timeline-item:nth-of-type(even), .e-timeline.e-horizontal.e-align-alternatereverse .e-timeline-item:nth-of-type(odd) {
|
1548
|
-
-
|
1549
|
-
|
1691
|
+
-webkit-box-orient: vertical;
|
1692
|
+
-webkit-box-direction: reverse;
|
1693
|
+
-ms-flex-direction: column-reverse;
|
1694
|
+
flex-direction: column-reverse;
|
1550
1695
|
}
|
1551
1696
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
1552
|
-
-
|
1553
|
-
|
1697
|
+
-webkit-box-orient: horizontal;
|
1698
|
+
-webkit-box-direction: reverse;
|
1699
|
+
-ms-flex-direction: row-reverse;
|
1700
|
+
flex-direction: row-reverse;
|
1554
1701
|
}
|
1555
1702
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
1556
1703
|
width: 100%;
|
@@ -1558,10 +1705,12 @@
|
|
1558
1705
|
top: calc(50% - var(--connector-size));
|
1559
1706
|
}
|
1560
1707
|
.e-timeline.e-horizontal .e-opposite-content {
|
1708
|
+
display: -webkit-box;
|
1561
1709
|
display: -ms-flexbox;
|
1562
1710
|
display: flex;
|
1563
|
-
-
|
1564
|
-
align
|
1711
|
+
-webkit-box-align: end;
|
1712
|
+
-ms-flex-align: end;
|
1713
|
+
align-items: flex-end;
|
1565
1714
|
text-align: left;
|
1566
1715
|
padding: 0;
|
1567
1716
|
}
|
@@ -1580,8 +1729,23 @@
|
|
1580
1729
|
}
|
1581
1730
|
.e-bigger.e-timeline .e-dot-item,
|
1582
1731
|
.e-bigger .e-timeline .e-dot-item {
|
1583
|
-
-
|
1584
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
1732
|
+
-webkit-box-flex: 0;
|
1733
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
1734
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
1735
|
+
}
|
1736
|
+
.e-bigger.e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after, .e-bigger.e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after, .e-bigger.e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after, .e-bigger.e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after,
|
1737
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
1738
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
1739
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
1740
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
1741
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
1742
|
+
}
|
1743
|
+
.e-bigger.e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after, .e-bigger.e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after, .e-bigger.e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after, .e-bigger.e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after,
|
1744
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
1745
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
1746
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
1747
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
1748
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
1585
1749
|
}
|
1586
1750
|
.e-bigger.e-timeline .e-dot,
|
1587
1751
|
.e-bigger .e-timeline .e-dot {
|