@syncfusion/ej2-layouts 25.2.3 → 26.1.38
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 +2 -2
- 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 +28 -0
- package/styles/avatar/_layout.scss +22 -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 +1097 -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 +13 -4
- 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 +1593 -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 +2803 -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 -601
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
--color-sf-on-warning: 99, 52, 0;
|
|
45
45
|
--color-sf-on-warning-container: 255, 220, 193;
|
|
46
46
|
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
47
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #
|
|
47
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000, 0 0 0 3px #fff;
|
|
48
48
|
--color-sf-success-text: 0, 0, 0;
|
|
49
49
|
--color-sf-warning-text: 0, 0, 0;
|
|
50
50
|
--color-sf-info-text: 0, 0, 0;
|
|
@@ -56,22 +56,25 @@
|
|
|
56
56
|
.e-avatar {
|
|
57
57
|
-ms-flex-line-pack: center;
|
|
58
58
|
align-content: center;
|
|
59
|
-
-
|
|
60
|
-
align
|
|
59
|
+
-webkit-box-align: center;
|
|
60
|
+
-ms-flex-align: center;
|
|
61
|
+
align-items: center;
|
|
61
62
|
background-color: rgba(var(--color-sf-primary-container));
|
|
62
63
|
background-position: center;
|
|
63
64
|
background-repeat: no-repeat;
|
|
64
65
|
background-size: cover;
|
|
65
66
|
border-radius: 4px;
|
|
66
67
|
color: rgba(var(--color-sf-on-primary-container));
|
|
68
|
+
display: -webkit-inline-box;
|
|
67
69
|
display: -ms-inline-flexbox;
|
|
68
70
|
display: inline-flex;
|
|
69
71
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
70
72
|
font-size: 20px;
|
|
71
73
|
font-weight: 500;
|
|
72
74
|
height: 40px;
|
|
73
|
-
-
|
|
74
|
-
|
|
75
|
+
-webkit-box-pack: center;
|
|
76
|
+
-ms-flex-pack: center;
|
|
77
|
+
justify-content: center;
|
|
75
78
|
overflow: hidden;
|
|
76
79
|
position: relative;
|
|
77
80
|
width: 40px;
|
|
@@ -90,29 +93,28 @@
|
|
|
90
93
|
.e-avatar.e-avatar-xsmall {
|
|
91
94
|
font-size: 14px;
|
|
92
95
|
height: 24px;
|
|
93
|
-
line-height: 14px;
|
|
94
96
|
width: 24px;
|
|
97
|
+
line-height: 14px;
|
|
95
98
|
}
|
|
96
99
|
.e-avatar.e-avatar-small {
|
|
97
100
|
font-size: 18px;
|
|
98
101
|
height: 32px;
|
|
99
|
-
line-height: 18px;
|
|
100
102
|
width: 32px;
|
|
103
|
+
line-height: 18px;
|
|
101
104
|
}
|
|
102
105
|
.e-avatar.e-avatar-large {
|
|
103
106
|
font-size: 26px;
|
|
104
107
|
height: 48px;
|
|
105
|
-
line-height: 26px;
|
|
106
108
|
width: 48px;
|
|
109
|
+
line-height: 26px;
|
|
107
110
|
}
|
|
108
111
|
.e-avatar.e-avatar-xlarge {
|
|
109
112
|
font-size: 30px;
|
|
110
113
|
height: 56px;
|
|
111
|
-
line-height: 30px;
|
|
112
114
|
width: 56px;
|
|
115
|
+
line-height: 30px;
|
|
113
116
|
}
|
|
114
117
|
|
|
115
|
-
/*! card layout */
|
|
116
118
|
.e-bigger .e-card,
|
|
117
119
|
.e-bigger.e-card {
|
|
118
120
|
line-height: 48px;
|
|
@@ -250,15 +252,20 @@
|
|
|
250
252
|
|
|
251
253
|
.e-card {
|
|
252
254
|
border-radius: 12px;
|
|
253
|
-
box-sizing: border-box;
|
|
255
|
+
-webkit-box-sizing: border-box;
|
|
256
|
+
box-sizing: border-box;
|
|
257
|
+
display: -webkit-box;
|
|
254
258
|
display: -ms-flexbox;
|
|
255
259
|
display: flex;
|
|
256
|
-
-
|
|
257
|
-
|
|
260
|
+
-webkit-box-orient: vertical;
|
|
261
|
+
-webkit-box-direction: normal;
|
|
262
|
+
-ms-flex-direction: column;
|
|
263
|
+
flex-direction: column;
|
|
258
264
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
259
265
|
font-size: 15px;
|
|
260
|
-
-
|
|
261
|
-
|
|
266
|
+
-webkit-box-pack: center;
|
|
267
|
+
-ms-flex-pack: center;
|
|
268
|
+
justify-content: center;
|
|
262
269
|
line-height: 36px;
|
|
263
270
|
min-height: 36px;
|
|
264
271
|
overflow: hidden;
|
|
@@ -268,11 +275,13 @@
|
|
|
268
275
|
width: 100%;
|
|
269
276
|
}
|
|
270
277
|
.e-card > * {
|
|
271
|
-
-
|
|
272
|
-
|
|
278
|
+
-webkit-box-pack: center;
|
|
279
|
+
-ms-flex-pack: center;
|
|
280
|
+
justify-content: center;
|
|
273
281
|
}
|
|
274
282
|
.e-card > .e-card-header-title {
|
|
275
|
-
box-sizing: border-box;
|
|
283
|
+
-webkit-box-sizing: border-box;
|
|
284
|
+
box-sizing: border-box;
|
|
276
285
|
font-size: 14px;
|
|
277
286
|
line-height: 1.375;
|
|
278
287
|
padding: 12px;
|
|
@@ -305,22 +314,30 @@
|
|
|
305
314
|
font-size: 12px;
|
|
306
315
|
}
|
|
307
316
|
.e-card .e-card-stacked {
|
|
317
|
+
display: -webkit-box;
|
|
308
318
|
display: -ms-flexbox;
|
|
309
319
|
display: flex;
|
|
310
|
-
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
320
|
+
-webkit-box-orient: vertical;
|
|
321
|
+
-webkit-box-direction: normal;
|
|
322
|
+
-ms-flex-direction: column;
|
|
323
|
+
flex-direction: column;
|
|
324
|
+
-webkit-box-pack: center;
|
|
325
|
+
-ms-flex-pack: center;
|
|
326
|
+
justify-content: center;
|
|
314
327
|
overflow: hidden;
|
|
315
328
|
}
|
|
316
329
|
.e-card.e-card-horizontal,
|
|
317
330
|
.e-card .e-card-horizontal {
|
|
331
|
+
display: -webkit-box;
|
|
318
332
|
display: -ms-flexbox;
|
|
319
333
|
display: flex;
|
|
320
|
-
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
334
|
+
-webkit-box-orient: horizontal;
|
|
335
|
+
-webkit-box-direction: normal;
|
|
336
|
+
-ms-flex-direction: row;
|
|
337
|
+
flex-direction: row;
|
|
338
|
+
-webkit-box-pack: center;
|
|
339
|
+
-ms-flex-pack: center;
|
|
340
|
+
justify-content: center;
|
|
324
341
|
}
|
|
325
342
|
.e-card.e-card-horizontal .e-card-image,
|
|
326
343
|
.e-card.e-card-horizontal img,
|
|
@@ -333,21 +350,27 @@
|
|
|
333
350
|
padding: 2px;
|
|
334
351
|
}
|
|
335
352
|
.e-card.e-card-horizontal > * {
|
|
336
|
-
-
|
|
337
|
-
flex: 1;
|
|
353
|
+
-webkit-box-flex: 1;
|
|
354
|
+
-ms-flex: 1;
|
|
355
|
+
flex: 1;
|
|
338
356
|
}
|
|
339
357
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
358
|
+
display: -webkit-box;
|
|
340
359
|
display: -ms-flexbox;
|
|
341
360
|
display: flex;
|
|
342
|
-
-
|
|
343
|
-
flex: 1;
|
|
344
|
-
|
|
345
|
-
|
|
361
|
+
-webkit-box-flex: 1;
|
|
362
|
+
-ms-flex: 1;
|
|
363
|
+
flex: 1;
|
|
364
|
+
-webkit-box-orient: vertical;
|
|
365
|
+
-webkit-box-direction: normal;
|
|
366
|
+
-ms-flex-direction: column;
|
|
367
|
+
flex-direction: column;
|
|
346
368
|
overflow: hidden;
|
|
347
369
|
}
|
|
348
370
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
349
|
-
-
|
|
350
|
-
flex-
|
|
371
|
+
-webkit-box-flex: 1;
|
|
372
|
+
-ms-flex-positive: 1;
|
|
373
|
+
flex-grow: 1;
|
|
351
374
|
}
|
|
352
375
|
.e-card .e-card-separator {
|
|
353
376
|
display: block;
|
|
@@ -356,13 +379,18 @@
|
|
|
356
379
|
border-radius: 50%;
|
|
357
380
|
}
|
|
358
381
|
.e-card .e-card-header {
|
|
359
|
-
box-sizing: border-box;
|
|
382
|
+
-webkit-box-sizing: border-box;
|
|
383
|
+
box-sizing: border-box;
|
|
384
|
+
display: -webkit-box;
|
|
360
385
|
display: -ms-flexbox;
|
|
361
386
|
display: flex;
|
|
362
|
-
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
387
|
+
-webkit-box-orient: horizontal;
|
|
388
|
+
-webkit-box-direction: normal;
|
|
389
|
+
-ms-flex-direction: row;
|
|
390
|
+
flex-direction: row;
|
|
391
|
+
-webkit-box-pack: center;
|
|
392
|
+
-ms-flex-pack: center;
|
|
393
|
+
justify-content: center;
|
|
366
394
|
line-height: normal;
|
|
367
395
|
min-height: 22.5px;
|
|
368
396
|
padding: 12px;
|
|
@@ -373,24 +401,30 @@
|
|
|
373
401
|
padding-right: 0;
|
|
374
402
|
}
|
|
375
403
|
.e-card .e-card-header .e-card-actions {
|
|
376
|
-
-
|
|
377
|
-
|
|
404
|
+
-webkit-box-pack: start;
|
|
405
|
+
-ms-flex-pack: start;
|
|
406
|
+
justify-content: flex-start;
|
|
378
407
|
}
|
|
379
408
|
.e-card .e-card-header .e-card-header-image {
|
|
380
409
|
-ms-flex-item-align: center;
|
|
381
410
|
align-self: center;
|
|
411
|
+
display: -webkit-box;
|
|
382
412
|
display: -ms-flexbox;
|
|
383
413
|
display: flex;
|
|
384
414
|
}
|
|
385
415
|
.e-card .e-card-header .e-card-header-caption {
|
|
386
416
|
-ms-flex-item-align: center;
|
|
387
417
|
align-self: center;
|
|
418
|
+
display: -webkit-box;
|
|
388
419
|
display: -ms-flexbox;
|
|
389
420
|
display: flex;
|
|
390
|
-
-
|
|
391
|
-
flex: 1;
|
|
392
|
-
|
|
393
|
-
|
|
421
|
+
-webkit-box-flex: 1;
|
|
422
|
+
-ms-flex: 1;
|
|
423
|
+
flex: 1;
|
|
424
|
+
-webkit-box-orient: vertical;
|
|
425
|
+
-webkit-box-direction: normal;
|
|
426
|
+
-ms-flex-direction: column;
|
|
427
|
+
flex-direction: column;
|
|
394
428
|
overflow: hidden;
|
|
395
429
|
padding: 0 0 0 12px;
|
|
396
430
|
}
|
|
@@ -432,7 +466,8 @@
|
|
|
432
466
|
}
|
|
433
467
|
.e-card .e-card-image .e-card-title {
|
|
434
468
|
bottom: 0;
|
|
435
|
-
box-sizing: border-box;
|
|
469
|
+
-webkit-box-sizing: border-box;
|
|
470
|
+
box-sizing: border-box;
|
|
436
471
|
font-size: 14px;
|
|
437
472
|
line-height: 30px;
|
|
438
473
|
min-height: 30px;
|
|
@@ -453,28 +488,34 @@
|
|
|
453
488
|
text-align: right;
|
|
454
489
|
}
|
|
455
490
|
.e-card .e-card-actions {
|
|
456
|
-
box-sizing: border-box;
|
|
491
|
+
-webkit-box-sizing: border-box;
|
|
492
|
+
box-sizing: border-box;
|
|
457
493
|
display: inline-block;
|
|
458
|
-
-
|
|
459
|
-
|
|
494
|
+
-webkit-box-pack: start;
|
|
495
|
+
-ms-flex-pack: start;
|
|
496
|
+
justify-content: flex-start;
|
|
460
497
|
padding: 12px;
|
|
461
498
|
}
|
|
462
499
|
.e-card .e-card-actions.e-card-vertical {
|
|
500
|
+
display: -webkit-box;
|
|
463
501
|
display: -ms-flexbox;
|
|
464
502
|
display: flex;
|
|
465
|
-
-
|
|
466
|
-
|
|
503
|
+
-webkit-box-orient: vertical;
|
|
504
|
+
-webkit-box-direction: normal;
|
|
505
|
+
-ms-flex-direction: column;
|
|
506
|
+
flex-direction: column;
|
|
467
507
|
padding: 12px;
|
|
468
508
|
}
|
|
469
509
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
|
470
510
|
.e-card .e-card-actions.e-card-vertical a {
|
|
471
511
|
-ms-flex-item-align: initial;
|
|
472
|
-
-ms-grid-row-align: initial;
|
|
473
512
|
align-self: initial;
|
|
474
|
-
box-sizing: border-box;
|
|
513
|
+
-webkit-box-sizing: border-box;
|
|
514
|
+
box-sizing: border-box;
|
|
475
515
|
display: inline-block;
|
|
476
|
-
-
|
|
477
|
-
|
|
516
|
+
-webkit-box-pack: center;
|
|
517
|
+
-ms-flex-pack: center;
|
|
518
|
+
justify-content: center;
|
|
478
519
|
margin: 0 0 0 8px;
|
|
479
520
|
text-align: center;
|
|
480
521
|
width: 100%;
|
|
@@ -485,11 +526,13 @@
|
|
|
485
526
|
}
|
|
486
527
|
.e-card .e-card-actions button,
|
|
487
528
|
.e-card .e-card-actions a {
|
|
488
|
-
-
|
|
489
|
-
align
|
|
529
|
+
-webkit-box-align: center;
|
|
530
|
+
-ms-flex-align: center;
|
|
531
|
+
align-items: center;
|
|
490
532
|
-ms-flex-item-align: center;
|
|
491
533
|
align-self: center;
|
|
492
534
|
cursor: pointer;
|
|
535
|
+
display: -webkit-inline-box;
|
|
493
536
|
display: -ms-inline-flexbox;
|
|
494
537
|
display: inline-flex;
|
|
495
538
|
overflow: hidden;
|
|
@@ -498,6 +541,7 @@
|
|
|
498
541
|
}
|
|
499
542
|
.e-card .e-card-actions .e-card-btn span,
|
|
500
543
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
|
544
|
+
display: -webkit-box;
|
|
501
545
|
display: -ms-flexbox;
|
|
502
546
|
display: flex;
|
|
503
547
|
font-size: 12px;
|
|
@@ -508,10 +552,12 @@
|
|
|
508
552
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
|
509
553
|
-ms-flex-item-align: center;
|
|
510
554
|
align-self: center;
|
|
555
|
+
display: -webkit-box;
|
|
511
556
|
display: -ms-flexbox;
|
|
512
557
|
display: flex;
|
|
513
|
-
-
|
|
514
|
-
|
|
558
|
+
-webkit-box-pack: center;
|
|
559
|
+
-ms-flex-pack: center;
|
|
560
|
+
justify-content: center;
|
|
515
561
|
width: inherit;
|
|
516
562
|
}
|
|
517
563
|
.e-card .e-card-actions .e-card-btn > * {
|
|
@@ -556,13 +602,14 @@
|
|
|
556
602
|
text-overflow: ellipsis;
|
|
557
603
|
}
|
|
558
604
|
|
|
559
|
-
/*! card theme */
|
|
560
605
|
/* stylelint-disable property-no-vendor-prefix */
|
|
561
606
|
.e-card {
|
|
562
607
|
-webkit-tap-highlight-color: rgba(var(--color-sf-primary));
|
|
608
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
563
609
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
564
610
|
border: none none none;
|
|
565
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
611
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
612
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
566
613
|
color: rgba(var(--color-sf-on-surface));
|
|
567
614
|
outline: none;
|
|
568
615
|
}
|
|
@@ -610,12 +657,14 @@
|
|
|
610
657
|
}
|
|
611
658
|
.e-card .e-card-actions .e-card-btn:focus,
|
|
612
659
|
.e-card .e-card-actions a:focus {
|
|
660
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-on-surface), 0.08)), to(rgba(var(--color-sf-on-surface), 0.08))), rgba(var(--color-sf-surface));
|
|
613
661
|
background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.08), rgba(var(--color-sf-on-surface), 0.08)), rgba(var(--color-sf-surface));
|
|
614
662
|
border: 1px solid;
|
|
615
663
|
color: var(--color-sf-on-surface);
|
|
616
664
|
}
|
|
617
665
|
.e-card .e-card-actions .e-card-btn:active,
|
|
618
666
|
.e-card .e-card-actions a:active {
|
|
667
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-on-surface), 0.12)), to(rgba(var(--color-sf-on-surface), 0.12))), rgba(var(--color-sf-surface));
|
|
619
668
|
background: linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12)), rgba(var(--color-sf-surface));
|
|
620
669
|
border: 1px solid linear-gradient(0deg, rgba(var(--color-sf-on-surface), 0.12), rgba(var(--color-sf-on-surface), 0.12));
|
|
621
670
|
color: rgba(var(--color-sf-on-surface));
|
|
@@ -644,6 +693,7 @@
|
|
|
644
693
|
|
|
645
694
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
646
695
|
border-width: 1px;
|
|
696
|
+
display: -webkit-box;
|
|
647
697
|
display: -ms-flexbox;
|
|
648
698
|
display: flex;
|
|
649
699
|
overflow: hidden;
|
|
@@ -653,8 +703,9 @@
|
|
|
653
703
|
width: 100%;
|
|
654
704
|
}
|
|
655
705
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
|
656
|
-
-
|
|
657
|
-
flex: 1 1 auto;
|
|
706
|
+
-webkit-box-flex: 1;
|
|
707
|
+
-ms-flex: 1 1 auto;
|
|
708
|
+
flex: 1 1 auto;
|
|
658
709
|
font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
|
|
659
710
|
font-size: 14px;
|
|
660
711
|
font-weight: 400;
|
|
@@ -663,8 +714,9 @@
|
|
|
663
714
|
overflow: auto;
|
|
664
715
|
}
|
|
665
716
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
|
666
|
-
-
|
|
667
|
-
flex-
|
|
717
|
+
-webkit-box-flex: 0;
|
|
718
|
+
-ms-flex-positive: 0;
|
|
719
|
+
flex-grow: 0;
|
|
668
720
|
-ms-flex-negative: 0;
|
|
669
721
|
flex-shrink: 0;
|
|
670
722
|
}
|
|
@@ -677,27 +729,35 @@
|
|
|
677
729
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
678
730
|
}
|
|
679
731
|
.e-splitter.e-splitter-horizontal {
|
|
680
|
-
-
|
|
681
|
-
|
|
732
|
+
-webkit-box-orient: horizontal;
|
|
733
|
+
-webkit-box-direction: normal;
|
|
734
|
+
-ms-flex-direction: row;
|
|
735
|
+
flex-direction: row;
|
|
682
736
|
}
|
|
683
737
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
|
684
738
|
overflow: hidden;
|
|
685
739
|
}
|
|
686
740
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
|
687
|
-
-
|
|
688
|
-
|
|
741
|
+
-webkit-box-orient: horizontal;
|
|
742
|
+
-webkit-box-direction: reverse;
|
|
743
|
+
-ms-flex-direction: row-reverse;
|
|
744
|
+
flex-direction: row-reverse;
|
|
689
745
|
}
|
|
690
746
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
|
691
|
-
-
|
|
692
|
-
|
|
747
|
+
-webkit-box-orient: horizontal;
|
|
748
|
+
-webkit-box-direction: reverse;
|
|
749
|
+
-ms-flex-direction: row-reverse;
|
|
750
|
+
flex-direction: row-reverse;
|
|
693
751
|
}
|
|
694
752
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
|
695
753
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
|
696
754
|
right: auto;
|
|
697
755
|
}
|
|
698
756
|
.e-splitter.e-splitter-vertical {
|
|
699
|
-
-
|
|
700
|
-
|
|
757
|
+
-webkit-box-orient: vertical;
|
|
758
|
+
-webkit-box-direction: normal;
|
|
759
|
+
-ms-flex-direction: column;
|
|
760
|
+
flex-direction: column;
|
|
701
761
|
}
|
|
702
762
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
|
703
763
|
overflow: hidden;
|
|
@@ -729,14 +789,18 @@
|
|
|
729
789
|
right: auto;
|
|
730
790
|
}
|
|
731
791
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
|
732
|
-
-
|
|
733
|
-
align
|
|
792
|
+
-webkit-box-align: center;
|
|
793
|
+
-ms-flex-align: center;
|
|
794
|
+
align-items: center;
|
|
795
|
+
display: -webkit-box;
|
|
734
796
|
display: -ms-flexbox;
|
|
735
797
|
display: flex;
|
|
736
|
-
-
|
|
737
|
-
flex: 0 0 auto;
|
|
738
|
-
|
|
739
|
-
|
|
798
|
+
-webkit-box-flex: 0;
|
|
799
|
+
-ms-flex: 0 0 auto;
|
|
800
|
+
flex: 0 0 auto;
|
|
801
|
+
-webkit-box-pack: center;
|
|
802
|
+
-ms-flex-pack: center;
|
|
803
|
+
justify-content: center;
|
|
740
804
|
min-width: 1px;
|
|
741
805
|
z-index: 15;
|
|
742
806
|
}
|
|
@@ -756,13 +820,16 @@
|
|
|
756
820
|
z-index: 10;
|
|
757
821
|
}
|
|
758
822
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
|
759
|
-
-
|
|
760
|
-
align
|
|
823
|
+
-webkit-box-align: center;
|
|
824
|
+
-ms-flex-align: center;
|
|
825
|
+
align-items: center;
|
|
826
|
+
display: -webkit-box;
|
|
761
827
|
display: -ms-flexbox;
|
|
762
828
|
display: flex;
|
|
763
829
|
height: 18px;
|
|
764
|
-
-
|
|
765
|
-
|
|
830
|
+
-webkit-box-pack: center;
|
|
831
|
+
-ms-flex-pack: center;
|
|
832
|
+
justify-content: center;
|
|
766
833
|
position: relative;
|
|
767
834
|
width: 1px;
|
|
768
835
|
}
|
|
@@ -775,9 +842,11 @@
|
|
|
775
842
|
right: 3px;
|
|
776
843
|
}
|
|
777
844
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
|
778
|
-
border-image: none;
|
|
845
|
+
-o-border-image: none;
|
|
846
|
+
border-image: none;
|
|
779
847
|
border-width: 1px;
|
|
780
848
|
cursor: pointer;
|
|
849
|
+
display: -webkit-box;
|
|
781
850
|
display: -ms-flexbox;
|
|
782
851
|
display: flex;
|
|
783
852
|
height: 26px;
|
|
@@ -789,16 +858,19 @@
|
|
|
789
858
|
content: "";
|
|
790
859
|
height: 8px;
|
|
791
860
|
position: absolute;
|
|
792
|
-
transform: rotate(0deg);
|
|
861
|
+
-webkit-transform: rotate(0deg);
|
|
862
|
+
transform: rotate(0deg);
|
|
793
863
|
width: 2px;
|
|
794
864
|
}
|
|
795
865
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
|
796
866
|
top: 5px;
|
|
797
|
-
transform-origin: 1px 7px 0;
|
|
867
|
+
-webkit-transform-origin: 1px 7px 0;
|
|
868
|
+
transform-origin: 1px 7px 0;
|
|
798
869
|
}
|
|
799
870
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
|
800
871
|
top: 11px;
|
|
801
|
-
transform-origin: 1px 1px 0;
|
|
872
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
873
|
+
transform-origin: 1px 1px 0;
|
|
802
874
|
}
|
|
803
875
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
|
804
876
|
border-radius: 50%;
|
|
@@ -818,16 +890,20 @@
|
|
|
818
890
|
margin: 0 0 0 3px;
|
|
819
891
|
}
|
|
820
892
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
|
821
|
-
-
|
|
822
|
-
align
|
|
893
|
+
-webkit-box-align: center;
|
|
894
|
+
-ms-flex-align: center;
|
|
895
|
+
align-items: center;
|
|
823
896
|
border-left: none;
|
|
824
897
|
border-right: none;
|
|
898
|
+
display: -webkit-box;
|
|
825
899
|
display: -ms-flexbox;
|
|
826
900
|
display: flex;
|
|
827
|
-
-
|
|
828
|
-
flex: 0 0 auto;
|
|
829
|
-
|
|
830
|
-
|
|
901
|
+
-webkit-box-flex: 0;
|
|
902
|
+
-ms-flex: 0 0 auto;
|
|
903
|
+
flex: 0 0 auto;
|
|
904
|
+
-webkit-box-pack: center;
|
|
905
|
+
-ms-flex-pack: center;
|
|
906
|
+
justify-content: center;
|
|
831
907
|
min-height: 1px;
|
|
832
908
|
}
|
|
833
909
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
|
@@ -846,13 +922,16 @@
|
|
|
846
922
|
z-index: 12;
|
|
847
923
|
}
|
|
848
924
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
|
849
|
-
-
|
|
850
|
-
align
|
|
925
|
+
-webkit-box-align: center;
|
|
926
|
+
-ms-flex-align: center;
|
|
927
|
+
align-items: center;
|
|
928
|
+
display: -webkit-box;
|
|
851
929
|
display: -ms-flexbox;
|
|
852
930
|
display: flex;
|
|
853
931
|
height: 1px;
|
|
854
|
-
-
|
|
855
|
-
|
|
932
|
+
-webkit-box-pack: center;
|
|
933
|
+
-ms-flex-pack: center;
|
|
934
|
+
justify-content: center;
|
|
856
935
|
width: 18px;
|
|
857
936
|
}
|
|
858
937
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
|
@@ -863,9 +942,11 @@
|
|
|
863
942
|
left: 10px;
|
|
864
943
|
}
|
|
865
944
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
866
|
-
border-image: none;
|
|
945
|
+
-o-border-image: none;
|
|
946
|
+
border-image: none;
|
|
867
947
|
border-width: 0;
|
|
868
948
|
cursor: pointer;
|
|
949
|
+
display: -webkit-box;
|
|
869
950
|
display: -ms-flexbox;
|
|
870
951
|
display: flex;
|
|
871
952
|
height: 26px;
|
|
@@ -878,27 +959,32 @@
|
|
|
878
959
|
content: "";
|
|
879
960
|
height: 8px;
|
|
880
961
|
position: absolute;
|
|
881
|
-
transform: rotate(90deg);
|
|
962
|
+
-webkit-transform: rotate(90deg);
|
|
963
|
+
transform: rotate(90deg);
|
|
882
964
|
width: 2px;
|
|
883
965
|
}
|
|
884
966
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
|
885
967
|
top: 3px;
|
|
886
|
-
transform-origin: 2px 7px 0;
|
|
968
|
+
-webkit-transform-origin: 2px 7px 0;
|
|
969
|
+
transform-origin: 2px 7px 0;
|
|
887
970
|
}
|
|
888
971
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
|
889
972
|
left: 11px;
|
|
890
973
|
top: 8px;
|
|
891
|
-
transform-origin: 1px 1px 0;
|
|
974
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
975
|
+
transform-origin: 1px 1px 0;
|
|
892
976
|
}
|
|
893
977
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
|
894
978
|
left: 12px;
|
|
895
979
|
top: 8px;
|
|
896
|
-
transform-origin: 1px 6px 0;
|
|
980
|
+
-webkit-transform-origin: 1px 6px 0;
|
|
981
|
+
transform-origin: 1px 6px 0;
|
|
897
982
|
}
|
|
898
983
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
|
899
984
|
left: 10px;
|
|
900
985
|
top: 12px;
|
|
901
|
-
transform-origin: 1px 2px 0;
|
|
986
|
+
-webkit-transform-origin: 1px 2px 0;
|
|
987
|
+
transform-origin: 1px 2px 0;
|
|
902
988
|
}
|
|
903
989
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
|
904
990
|
border-radius: 50%;
|
|
@@ -938,8 +1024,10 @@
|
|
|
938
1024
|
}
|
|
939
1025
|
|
|
940
1026
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
|
941
|
-
-
|
|
942
|
-
|
|
1027
|
+
-webkit-box-orient: horizontal;
|
|
1028
|
+
-webkit-box-direction: reverse;
|
|
1029
|
+
-ms-flex-direction: row-reverse;
|
|
1030
|
+
flex-direction: row-reverse;
|
|
943
1031
|
}
|
|
944
1032
|
|
|
945
1033
|
.e-bigger .e-splitter .e-pane {
|
|
@@ -968,8 +1056,10 @@
|
|
|
968
1056
|
}
|
|
969
1057
|
|
|
970
1058
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
|
971
|
-
-
|
|
972
|
-
|
|
1059
|
+
-webkit-box-orient: vertical;
|
|
1060
|
+
-webkit-box-direction: normal;
|
|
1061
|
+
-ms-flex-direction: column;
|
|
1062
|
+
flex-direction: column;
|
|
973
1063
|
}
|
|
974
1064
|
|
|
975
1065
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
@@ -995,13 +1085,16 @@
|
|
|
995
1085
|
background-color: transparent;
|
|
996
1086
|
border-color: transparent;
|
|
997
1087
|
color: transparent;
|
|
1088
|
+
-webkit-transition: background-color 500ms ease-out;
|
|
998
1089
|
transition: background-color 500ms ease-out;
|
|
999
1090
|
}
|
|
1000
1091
|
.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 {
|
|
1001
1092
|
background-color: rgba(var(--color-sf-primary));
|
|
1002
1093
|
opacity: 0;
|
|
1003
|
-
transition-duration: 0.3s;
|
|
1004
|
-
|
|
1094
|
+
-webkit-transition-duration: 0.3s;
|
|
1095
|
+
transition-duration: 0.3s;
|
|
1096
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1097
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1005
1098
|
}
|
|
1006
1099
|
.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 {
|
|
1007
1100
|
background: rgba(var(--color-sf-primary));
|
|
@@ -1021,22 +1114,26 @@
|
|
|
1021
1114
|
.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 {
|
|
1022
1115
|
background-color: rgba(var(--color-sf-primary));
|
|
1023
1116
|
opacity: 1;
|
|
1024
|
-
transform: rotate(40deg);
|
|
1117
|
+
-webkit-transform: rotate(40deg);
|
|
1118
|
+
transform: rotate(40deg);
|
|
1025
1119
|
}
|
|
1026
1120
|
.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 {
|
|
1027
1121
|
background-color: rgba(var(--color-sf-primary));
|
|
1028
1122
|
opacity: 1;
|
|
1029
|
-
transform: rotate(-40deg);
|
|
1123
|
+
-webkit-transform: rotate(-40deg);
|
|
1124
|
+
transform: rotate(-40deg);
|
|
1030
1125
|
}
|
|
1031
1126
|
.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 {
|
|
1032
1127
|
background-color: rgba(var(--color-sf-primary));
|
|
1033
1128
|
opacity: 1;
|
|
1034
|
-
transform: rotate(-40deg);
|
|
1129
|
+
-webkit-transform: rotate(-40deg);
|
|
1130
|
+
transform: rotate(-40deg);
|
|
1035
1131
|
}
|
|
1036
1132
|
.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 {
|
|
1037
1133
|
background-color: rgba(var(--color-sf-primary));
|
|
1038
1134
|
opacity: 1;
|
|
1039
|
-
transform: rotate(40deg);
|
|
1135
|
+
-webkit-transform: rotate(40deg);
|
|
1136
|
+
transform: rotate(40deg);
|
|
1040
1137
|
}
|
|
1041
1138
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
1042
1139
|
background: rgba(var(--color-sf-primary));
|
|
@@ -1071,34 +1168,41 @@
|
|
|
1071
1168
|
.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 {
|
|
1072
1169
|
background-color: rgba(var(--color-sf-primary));
|
|
1073
1170
|
opacity: 1;
|
|
1074
|
-
transform: rotate(125deg);
|
|
1171
|
+
-webkit-transform: rotate(125deg);
|
|
1172
|
+
transform: rotate(125deg);
|
|
1075
1173
|
}
|
|
1076
1174
|
.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 {
|
|
1077
1175
|
background-color: rgba(var(--color-sf-primary));
|
|
1078
1176
|
opacity: 1;
|
|
1079
|
-
transform: rotate(50deg);
|
|
1177
|
+
-webkit-transform: rotate(50deg);
|
|
1178
|
+
transform: rotate(50deg);
|
|
1080
1179
|
}
|
|
1081
1180
|
.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 {
|
|
1082
1181
|
background-color: rgba(var(--color-sf-primary));
|
|
1083
1182
|
opacity: 1;
|
|
1084
|
-
transform: rotate(55deg);
|
|
1183
|
+
-webkit-transform: rotate(55deg);
|
|
1184
|
+
transform: rotate(55deg);
|
|
1085
1185
|
}
|
|
1086
1186
|
.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 {
|
|
1087
1187
|
background-color: rgba(var(--color-sf-primary));
|
|
1088
1188
|
opacity: 1;
|
|
1089
|
-
transform: rotate(125deg);
|
|
1189
|
+
-webkit-transform: rotate(125deg);
|
|
1190
|
+
transform: rotate(125deg);
|
|
1090
1191
|
}
|
|
1091
1192
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
1092
1193
|
background-color: transparent;
|
|
1093
1194
|
border-color: transparent;
|
|
1094
1195
|
color: transparent;
|
|
1196
|
+
-webkit-transition: background-color 300ms ease-out;
|
|
1095
1197
|
transition: background-color 300ms ease-out;
|
|
1096
1198
|
}
|
|
1097
1199
|
.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 {
|
|
1098
1200
|
background-color: rgba(var(--color-sf-primary));
|
|
1099
1201
|
opacity: 0;
|
|
1100
|
-
transition-duration: 0.3s;
|
|
1101
|
-
|
|
1202
|
+
-webkit-transition-duration: 0.3s;
|
|
1203
|
+
transition-duration: 0.3s;
|
|
1204
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1205
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1102
1206
|
}
|
|
1103
1207
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
|
1104
1208
|
background: rgba(var(--color-sf-primary));
|
|
@@ -1112,8 +1216,7 @@
|
|
|
1112
1216
|
pointer-events: none;
|
|
1113
1217
|
}
|
|
1114
1218
|
|
|
1115
|
-
/* stylelint-disable-line no-empty-source */
|
|
1116
|
-
/* stylelint-disable */
|
|
1219
|
+
/* stylelint-disable-line no-empty-source */
|
|
1117
1220
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
|
1118
1221
|
height: 100%;
|
|
1119
1222
|
padding: 20px 0;
|
|
@@ -1173,16 +1276,18 @@
|
|
|
1173
1276
|
font-size: 12px;
|
|
1174
1277
|
left: 4px;
|
|
1175
1278
|
position: absolute;
|
|
1176
|
-
transform: rotateY(180deg);
|
|
1279
|
+
-webkit-transform: rotateY(180deg);
|
|
1280
|
+
transform: rotateY(180deg);
|
|
1177
1281
|
}
|
|
1178
1282
|
|
|
1179
1283
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
|
1284
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1180
1285
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1181
1286
|
border-collapse: collapse;
|
|
1182
1287
|
height: 100%;
|
|
1183
1288
|
width: 100%;
|
|
1184
1289
|
}
|
|
1185
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
|
1290
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
|
1186
1291
|
border: 1px dashed rgba(var(--color-sf-primary));
|
|
1187
1292
|
position: absolute;
|
|
1188
1293
|
}
|
|
@@ -1191,15 +1296,27 @@
|
|
|
1191
1296
|
}
|
|
1192
1297
|
.e-dashboardlayout.e-control.e-prevent {
|
|
1193
1298
|
-webkit-user-select: none;
|
|
1299
|
+
-moz-user-select: none;
|
|
1194
1300
|
-ms-user-select: none;
|
|
1195
1301
|
user-select: none;
|
|
1196
1302
|
}
|
|
1303
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
|
1304
|
+
position: relative;
|
|
1305
|
+
}
|
|
1197
1306
|
.e-dashboardlayout.e-control .e-panel {
|
|
1307
|
+
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
1308
|
+
height: 100%;
|
|
1309
|
+
-webkit-user-select: none;
|
|
1310
|
+
-moz-user-select: none;
|
|
1311
|
+
-ms-user-select: none;
|
|
1312
|
+
user-select: none;
|
|
1313
|
+
width: 100%;
|
|
1198
1314
|
border-radius: 8px;
|
|
1199
1315
|
}
|
|
1200
1316
|
.e-dashboardlayout.e-control .e-panel:hover {
|
|
1201
1317
|
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
1202
|
-
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
1318
|
+
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
1319
|
+
box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
1203
1320
|
}
|
|
1204
1321
|
.e-dashboardlayout.e-control .e-panel:hover .e-panel-container .e-resize.e-dl-icon {
|
|
1205
1322
|
display: block;
|
|
@@ -1207,10 +1324,19 @@
|
|
|
1207
1324
|
.e-dashboardlayout.e-control .e-panel:active {
|
|
1208
1325
|
border: 1px solid rgba(var(--color-sf-primary));
|
|
1209
1326
|
}
|
|
1327
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1328
|
+
height: 100%;
|
|
1329
|
+
width: 100%;
|
|
1330
|
+
}
|
|
1331
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1332
|
+
height: inherit;
|
|
1333
|
+
width: inherit;
|
|
1334
|
+
}
|
|
1210
1335
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
|
1211
1336
|
display: none;
|
|
1212
1337
|
}
|
|
1213
1338
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
|
1339
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
|
1214
1340
|
transition: top 0.5s, left 0.5s;
|
|
1215
1341
|
}
|
|
1216
1342
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
@@ -1235,22 +1361,6 @@
|
|
|
1235
1361
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
|
1236
1362
|
float: right;
|
|
1237
1363
|
}
|
|
1238
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1239
|
-
height: 100%;
|
|
1240
|
-
width: 100%;
|
|
1241
|
-
}
|
|
1242
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1243
|
-
height: inherit;
|
|
1244
|
-
width: inherit;
|
|
1245
|
-
}
|
|
1246
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1247
|
-
border: 1px solid rgba(var(--color-sf-outline-variant));
|
|
1248
|
-
height: 100%;
|
|
1249
|
-
-webkit-user-select: none;
|
|
1250
|
-
-ms-user-select: none;
|
|
1251
|
-
user-select: none;
|
|
1252
|
-
width: 100%;
|
|
1253
|
-
}
|
|
1254
1364
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
|
1255
1365
|
position: absolute;
|
|
1256
1366
|
-ms-touch-action: none;
|
|
@@ -1287,13 +1397,6 @@
|
|
|
1287
1397
|
font-family: "e-icons";
|
|
1288
1398
|
position: absolute;
|
|
1289
1399
|
}
|
|
1290
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1291
|
-
cursor: move;
|
|
1292
|
-
}
|
|
1293
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1294
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1295
|
-
cursor: default;
|
|
1296
|
-
}
|
|
1297
1400
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
|
1298
1401
|
cursor: move;
|
|
1299
1402
|
z-index: 1111 !important;
|
|
@@ -1301,6 +1404,19 @@
|
|
|
1301
1404
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
|
1302
1405
|
float: left;
|
|
1303
1406
|
}
|
|
1407
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1408
|
+
font-size: 16px;
|
|
1409
|
+
font-weight: 600;
|
|
1410
|
+
height: 48px;
|
|
1411
|
+
padding: 14px 16px;
|
|
1412
|
+
}
|
|
1413
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1414
|
+
cursor: move;
|
|
1415
|
+
}
|
|
1416
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1417
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1418
|
+
cursor: default;
|
|
1419
|
+
}
|
|
1304
1420
|
.e-dashboardlayout.e-control .e-holder {
|
|
1305
1421
|
background: rgba(var(--color-sf-primary-container));
|
|
1306
1422
|
border: 1px rgba(var(--color-sf-primary)) dashed;
|
|
@@ -1309,14 +1425,9 @@
|
|
|
1309
1425
|
border-radius: 8px;
|
|
1310
1426
|
}
|
|
1311
1427
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
|
1428
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
|
1312
1429
|
transition: top 0.3s, left 0.3s;
|
|
1313
1430
|
}
|
|
1314
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1315
|
-
font-size: 16px;
|
|
1316
|
-
font-weight: 600;
|
|
1317
|
-
height: 48px;
|
|
1318
|
-
padding: 14px 16px;
|
|
1319
|
-
}
|
|
1320
1431
|
|
|
1321
1432
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
1322
1433
|
font-size: 16px;
|
|
@@ -1335,23 +1446,18 @@
|
|
|
1335
1446
|
}
|
|
1336
1447
|
.e-dashboardlayout.e-control .e-panel {
|
|
1337
1448
|
background: rgba(var(--color-sf-surface));
|
|
1338
|
-
box-shadow: none;
|
|
1339
|
-
|
|
1449
|
+
-webkit-box-shadow: none;
|
|
1450
|
+
box-shadow: none;
|
|
1451
|
+
-webkit-box-sizing: border-box;
|
|
1452
|
+
box-sizing: border-box;
|
|
1340
1453
|
position: absolute;
|
|
1341
1454
|
}
|
|
1342
1455
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1343
1456
|
color: rgba(var(--color-sf-on-surface));
|
|
1457
|
+
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.05)), to(rgba(var(--color-sf-primary), 0.05))), rgba(var(--color-sf-surface));
|
|
1344
1458
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
1345
|
-
box-sizing: border-box;
|
|
1346
|
-
|
|
1347
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1348
|
-
background: rgba(var(--color-sf-surface));
|
|
1349
|
-
box-shadow: none;
|
|
1350
|
-
box-sizing: border-box;
|
|
1351
|
-
position: absolute;
|
|
1352
|
-
}
|
|
1353
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1354
|
-
color: rgba(var(--color-sf-on-surface));
|
|
1459
|
+
-webkit-box-sizing: border-box;
|
|
1460
|
+
box-sizing: border-box;
|
|
1355
1461
|
}
|
|
1356
1462
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-single {
|
|
1357
1463
|
background: none;
|
|
@@ -1426,12 +1532,15 @@
|
|
|
1426
1532
|
.e-timeline [class^="e-dot "]::before,
|
|
1427
1533
|
.e-timeline .e-dot-item,
|
|
1428
1534
|
.e-timeline .e-dot {
|
|
1535
|
+
display: -webkit-box;
|
|
1429
1536
|
display: -ms-flexbox;
|
|
1430
1537
|
display: flex;
|
|
1431
|
-
-
|
|
1432
|
-
align
|
|
1433
|
-
|
|
1434
|
-
|
|
1538
|
+
-webkit-box-align: center;
|
|
1539
|
+
-ms-flex-align: center;
|
|
1540
|
+
align-items: center;
|
|
1541
|
+
-webkit-box-pack: center;
|
|
1542
|
+
-ms-flex-pack: center;
|
|
1543
|
+
justify-content: center;
|
|
1435
1544
|
}
|
|
1436
1545
|
.e-timeline [class^="e-dot "]::before {
|
|
1437
1546
|
min-width: 32px;
|
|
@@ -1439,10 +1548,13 @@
|
|
|
1439
1548
|
border-radius: var(--dot-radius);
|
|
1440
1549
|
}
|
|
1441
1550
|
.e-timeline .e-timeline-items {
|
|
1551
|
+
display: -webkit-inline-box;
|
|
1442
1552
|
display: -ms-inline-flexbox;
|
|
1443
1553
|
display: inline-flex;
|
|
1444
|
-
-
|
|
1445
|
-
|
|
1554
|
+
-webkit-box-orient: vertical;
|
|
1555
|
+
-webkit-box-direction: normal;
|
|
1556
|
+
-ms-flex-direction: column;
|
|
1557
|
+
flex-direction: column;
|
|
1446
1558
|
list-style: none;
|
|
1447
1559
|
-ms-flex-wrap: nowrap;
|
|
1448
1560
|
flex-wrap: nowrap;
|
|
@@ -1451,13 +1563,17 @@
|
|
|
1451
1563
|
height: inherit;
|
|
1452
1564
|
}
|
|
1453
1565
|
.e-timeline .e-timeline-item {
|
|
1566
|
+
display: -webkit-box;
|
|
1454
1567
|
display: -ms-flexbox;
|
|
1455
1568
|
display: flex;
|
|
1456
|
-
-
|
|
1457
|
-
|
|
1569
|
+
-webkit-box-orient: horizontal;
|
|
1570
|
+
-webkit-box-direction: normal;
|
|
1571
|
+
-ms-flex-direction: row;
|
|
1572
|
+
flex-direction: row;
|
|
1458
1573
|
position: relative;
|
|
1459
|
-
-
|
|
1460
|
-
align
|
|
1574
|
+
-webkit-box-align: start;
|
|
1575
|
+
-ms-flex-align: start;
|
|
1576
|
+
align-items: flex-start;
|
|
1461
1577
|
width: inherit;
|
|
1462
1578
|
height: inherit;
|
|
1463
1579
|
}
|
|
@@ -1477,8 +1593,9 @@
|
|
|
1477
1593
|
}
|
|
1478
1594
|
.e-timeline .e-dot-item {
|
|
1479
1595
|
position: relative;
|
|
1480
|
-
-
|
|
1481
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1596
|
+
-webkit-box-flex: 0;
|
|
1597
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
|
1598
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1482
1599
|
z-index: 1000;
|
|
1483
1600
|
}
|
|
1484
1601
|
.e-timeline .e-dot {
|
|
@@ -1494,12 +1611,12 @@
|
|
|
1494
1611
|
}
|
|
1495
1612
|
.e-timeline .e-opposite-content,
|
|
1496
1613
|
.e-timeline .e-content {
|
|
1497
|
-
-
|
|
1498
|
-
flex: 1 1 50%;
|
|
1614
|
+
-webkit-box-flex: 1;
|
|
1615
|
+
-ms-flex: 1 1 50%;
|
|
1616
|
+
flex: 1 1 50%;
|
|
1499
1617
|
}
|
|
1500
1618
|
.e-timeline .e-opposite-content {
|
|
1501
1619
|
font-size: 12px;
|
|
1502
|
-
text-align: right;
|
|
1503
1620
|
}
|
|
1504
1621
|
.e-timeline .e-content {
|
|
1505
1622
|
text-align: left;
|
|
@@ -1513,12 +1630,16 @@
|
|
|
1513
1630
|
bottom: calc(var(--dot-size) * 2);
|
|
1514
1631
|
}
|
|
1515
1632
|
.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) {
|
|
1516
|
-
-
|
|
1517
|
-
|
|
1633
|
+
-webkit-box-orient: horizontal;
|
|
1634
|
+
-webkit-box-direction: reverse;
|
|
1635
|
+
-ms-flex-direction: row-reverse;
|
|
1636
|
+
flex-direction: row-reverse;
|
|
1518
1637
|
}
|
|
1519
1638
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
|
1520
|
-
-
|
|
1521
|
-
|
|
1639
|
+
-webkit-box-orient: vertical;
|
|
1640
|
+
-webkit-box-direction: reverse;
|
|
1641
|
+
-ms-flex-direction: column-reverse;
|
|
1642
|
+
flex-direction: column-reverse;
|
|
1522
1643
|
}
|
|
1523
1644
|
.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 {
|
|
1524
1645
|
text-align: left;
|
|
@@ -1526,6 +1647,19 @@
|
|
|
1526
1647
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
|
1527
1648
|
content: unset;
|
|
1528
1649
|
}
|
|
1650
|
+
.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 {
|
|
1651
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1652
|
+
right: auto;
|
|
1653
|
+
}
|
|
1654
|
+
.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 {
|
|
1655
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1656
|
+
left: auto;
|
|
1657
|
+
}
|
|
1658
|
+
.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 {
|
|
1659
|
+
-webkit-box-flex: 0;
|
|
1660
|
+
-ms-flex: 0;
|
|
1661
|
+
flex: 0;
|
|
1662
|
+
}
|
|
1529
1663
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
|
1530
1664
|
content: unset;
|
|
1531
1665
|
}
|
|
@@ -1543,13 +1677,27 @@
|
|
|
1543
1677
|
width: calc(var(--dot-size) * 2);
|
|
1544
1678
|
}
|
|
1545
1679
|
.e-timeline.e-horizontal .e-timeline-items {
|
|
1680
|
+
display: -webkit-inline-box;
|
|
1546
1681
|
display: -ms-inline-flexbox;
|
|
1547
1682
|
display: inline-flex;
|
|
1548
|
-
-
|
|
1549
|
-
|
|
1683
|
+
-webkit-box-orient: horizontal;
|
|
1684
|
+
-webkit-box-direction: normal;
|
|
1685
|
+
-ms-flex-direction: row;
|
|
1686
|
+
flex-direction: row;
|
|
1550
1687
|
}
|
|
1551
1688
|
.e-timeline.e-horizontal .e-timeline-item {
|
|
1552
1689
|
height: auto;
|
|
1690
|
+
-webkit-box-orient: vertical;
|
|
1691
|
+
-webkit-box-direction: normal;
|
|
1692
|
+
-ms-flex-direction: column;
|
|
1693
|
+
flex-direction: column;
|
|
1694
|
+
-webkit-box-align: center;
|
|
1695
|
+
-ms-flex-align: center;
|
|
1696
|
+
align-items: center;
|
|
1697
|
+
}
|
|
1698
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
|
1699
|
+
left: calc(50% - var(--connector-size));
|
|
1700
|
+
right: auto;
|
|
1553
1701
|
}
|
|
1554
1702
|
.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 {
|
|
1555
1703
|
right: calc(50% - var(--connector-size));
|
|
@@ -1558,32 +1706,33 @@
|
|
|
1558
1706
|
.e-timeline.e-horizontal .e-dot-item {
|
|
1559
1707
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
|
1560
1708
|
}
|
|
1561
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
|
1562
|
-
-ms-flex-direction: column;
|
|
1563
|
-
flex-direction: column;
|
|
1564
|
-
-ms-flex-align: center;
|
|
1565
|
-
align-items: center;
|
|
1566
|
-
}
|
|
1567
1709
|
.e-timeline.e-horizontal .e-opposite-content,
|
|
1568
1710
|
.e-timeline.e-horizontal .e-content {
|
|
1711
|
+
display: -webkit-box;
|
|
1569
1712
|
display: -ms-flexbox;
|
|
1570
1713
|
display: flex;
|
|
1571
1714
|
}
|
|
1572
1715
|
.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 {
|
|
1573
|
-
-
|
|
1574
|
-
align
|
|
1716
|
+
-webkit-box-align: end;
|
|
1717
|
+
-ms-flex-align: end;
|
|
1718
|
+
align-items: flex-end;
|
|
1575
1719
|
}
|
|
1576
1720
|
.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 {
|
|
1577
|
-
-
|
|
1578
|
-
align
|
|
1721
|
+
-webkit-box-align: start;
|
|
1722
|
+
-ms-flex-align: start;
|
|
1723
|
+
align-items: flex-start;
|
|
1579
1724
|
}
|
|
1580
1725
|
.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) {
|
|
1581
|
-
-
|
|
1582
|
-
|
|
1726
|
+
-webkit-box-orient: vertical;
|
|
1727
|
+
-webkit-box-direction: reverse;
|
|
1728
|
+
-ms-flex-direction: column-reverse;
|
|
1729
|
+
flex-direction: column-reverse;
|
|
1583
1730
|
}
|
|
1584
1731
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
|
1585
|
-
-
|
|
1586
|
-
|
|
1732
|
+
-webkit-box-orient: horizontal;
|
|
1733
|
+
-webkit-box-direction: reverse;
|
|
1734
|
+
-ms-flex-direction: row-reverse;
|
|
1735
|
+
flex-direction: row-reverse;
|
|
1587
1736
|
}
|
|
1588
1737
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
|
1589
1738
|
width: 100%;
|
|
@@ -1591,10 +1740,12 @@
|
|
|
1591
1740
|
top: calc(50% - var(--connector-size));
|
|
1592
1741
|
}
|
|
1593
1742
|
.e-timeline.e-horizontal .e-opposite-content {
|
|
1743
|
+
display: -webkit-box;
|
|
1594
1744
|
display: -ms-flexbox;
|
|
1595
1745
|
display: flex;
|
|
1596
|
-
-
|
|
1597
|
-
align
|
|
1746
|
+
-webkit-box-align: end;
|
|
1747
|
+
-ms-flex-align: end;
|
|
1748
|
+
align-items: flex-end;
|
|
1598
1749
|
text-align: left;
|
|
1599
1750
|
padding: 0;
|
|
1600
1751
|
}
|
|
@@ -1613,8 +1764,23 @@
|
|
|
1613
1764
|
}
|
|
1614
1765
|
.e-bigger.e-timeline .e-dot-item,
|
|
1615
1766
|
.e-bigger .e-timeline .e-dot-item {
|
|
1616
|
-
-
|
|
1617
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1767
|
+
-webkit-box-flex: 0;
|
|
1768
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
|
1769
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1770
|
+
}
|
|
1771
|
+
.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,
|
|
1772
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
|
1773
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1774
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
|
1775
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
|
1776
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1777
|
+
}
|
|
1778
|
+
.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,
|
|
1779
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
|
1780
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1781
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
|
1782
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
|
1783
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1618
1784
|
}
|
|
1619
1785
|
.e-bigger.e-timeline .e-dot,
|
|
1620
1786
|
.e-bigger .e-timeline .e-dot {
|