@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
package/styles/bootstrap5.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: #dee2e6;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 2px;
|
11
12
|
color: #6c757d;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
15
17
|
font-size: 14px;
|
16
18
|
font-weight: 500;
|
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,31 +38,30 @@
|
|
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: 18px;
|
49
|
-
border-radius: 4px;
|
50
52
|
height: 48px;
|
51
|
-
line-height: 28px;
|
52
53
|
width: 48px;
|
54
|
+
line-height: 28px;
|
55
|
+
border-radius: 4px;
|
53
56
|
}
|
54
57
|
.e-avatar.e-avatar-xlarge {
|
55
58
|
font-size: 20px;
|
56
|
-
border-radius: 4px;
|
57
59
|
height: 56px;
|
58
|
-
line-height: 28px;
|
59
60
|
width: 56px;
|
61
|
+
line-height: 28px;
|
62
|
+
border-radius: 4px;
|
60
63
|
}
|
61
64
|
|
62
|
-
/*! card layout */
|
63
65
|
.e-bigger .e-card,
|
64
66
|
.e-bigger.e-card {
|
65
67
|
line-height: 48px;
|
@@ -198,15 +200,20 @@
|
|
198
200
|
|
199
201
|
.e-card {
|
200
202
|
border-radius: 4px;
|
201
|
-
box-sizing: border-box;
|
203
|
+
-webkit-box-sizing: border-box;
|
204
|
+
box-sizing: border-box;
|
205
|
+
display: -webkit-box;
|
202
206
|
display: -ms-flexbox;
|
203
207
|
display: flex;
|
204
|
-
-
|
205
|
-
|
208
|
+
-webkit-box-orient: vertical;
|
209
|
+
-webkit-box-direction: normal;
|
210
|
+
-ms-flex-direction: column;
|
211
|
+
flex-direction: column;
|
206
212
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
207
213
|
font-size: 15px;
|
208
|
-
-
|
209
|
-
|
214
|
+
-webkit-box-pack: center;
|
215
|
+
-ms-flex-pack: center;
|
216
|
+
justify-content: center;
|
210
217
|
line-height: 36px;
|
211
218
|
min-height: 36px;
|
212
219
|
overflow: hidden;
|
@@ -216,11 +223,13 @@
|
|
216
223
|
width: 100%;
|
217
224
|
}
|
218
225
|
.e-card > * {
|
219
|
-
-
|
220
|
-
|
226
|
+
-webkit-box-pack: center;
|
227
|
+
-ms-flex-pack: center;
|
228
|
+
justify-content: center;
|
221
229
|
}
|
222
230
|
.e-card > .e-card-header-title {
|
223
|
-
box-sizing: border-box;
|
231
|
+
-webkit-box-sizing: border-box;
|
232
|
+
box-sizing: border-box;
|
224
233
|
font-size: 16px;
|
225
234
|
line-height: 1.25;
|
226
235
|
padding: 12px;
|
@@ -253,22 +262,30 @@
|
|
253
262
|
font-size: 14px;
|
254
263
|
}
|
255
264
|
.e-card .e-card-stacked {
|
265
|
+
display: -webkit-box;
|
256
266
|
display: -ms-flexbox;
|
257
267
|
display: flex;
|
258
|
-
-
|
259
|
-
|
260
|
-
|
261
|
-
|
268
|
+
-webkit-box-orient: vertical;
|
269
|
+
-webkit-box-direction: normal;
|
270
|
+
-ms-flex-direction: column;
|
271
|
+
flex-direction: column;
|
272
|
+
-webkit-box-pack: center;
|
273
|
+
-ms-flex-pack: center;
|
274
|
+
justify-content: center;
|
262
275
|
overflow: hidden;
|
263
276
|
}
|
264
277
|
.e-card.e-card-horizontal,
|
265
278
|
.e-card .e-card-horizontal {
|
279
|
+
display: -webkit-box;
|
266
280
|
display: -ms-flexbox;
|
267
281
|
display: flex;
|
268
|
-
-
|
269
|
-
|
270
|
-
|
271
|
-
|
282
|
+
-webkit-box-orient: horizontal;
|
283
|
+
-webkit-box-direction: normal;
|
284
|
+
-ms-flex-direction: row;
|
285
|
+
flex-direction: row;
|
286
|
+
-webkit-box-pack: center;
|
287
|
+
-ms-flex-pack: center;
|
288
|
+
justify-content: center;
|
272
289
|
}
|
273
290
|
.e-card.e-card-horizontal .e-card-image,
|
274
291
|
.e-card.e-card-horizontal img,
|
@@ -281,21 +298,27 @@
|
|
281
298
|
padding: 2px;
|
282
299
|
}
|
283
300
|
.e-card.e-card-horizontal > * {
|
284
|
-
-
|
285
|
-
flex: 1;
|
301
|
+
-webkit-box-flex: 1;
|
302
|
+
-ms-flex: 1;
|
303
|
+
flex: 1;
|
286
304
|
}
|
287
305
|
.e-card.e-card-horizontal .e-card-stacked {
|
306
|
+
display: -webkit-box;
|
288
307
|
display: -ms-flexbox;
|
289
308
|
display: flex;
|
290
|
-
-
|
291
|
-
flex: 1;
|
292
|
-
|
293
|
-
|
309
|
+
-webkit-box-flex: 1;
|
310
|
+
-ms-flex: 1;
|
311
|
+
flex: 1;
|
312
|
+
-webkit-box-orient: vertical;
|
313
|
+
-webkit-box-direction: normal;
|
314
|
+
-ms-flex-direction: column;
|
315
|
+
flex-direction: column;
|
294
316
|
overflow: hidden;
|
295
317
|
}
|
296
318
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
297
|
-
-
|
298
|
-
flex-
|
319
|
+
-webkit-box-flex: 1;
|
320
|
+
-ms-flex-positive: 1;
|
321
|
+
flex-grow: 1;
|
299
322
|
}
|
300
323
|
.e-card .e-card-separator {
|
301
324
|
display: block;
|
@@ -304,13 +327,18 @@
|
|
304
327
|
border-radius: 50%;
|
305
328
|
}
|
306
329
|
.e-card .e-card-header {
|
307
|
-
box-sizing: border-box;
|
330
|
+
-webkit-box-sizing: border-box;
|
331
|
+
box-sizing: border-box;
|
332
|
+
display: -webkit-box;
|
308
333
|
display: -ms-flexbox;
|
309
334
|
display: flex;
|
310
|
-
-
|
311
|
-
|
312
|
-
|
313
|
-
|
335
|
+
-webkit-box-orient: horizontal;
|
336
|
+
-webkit-box-direction: normal;
|
337
|
+
-ms-flex-direction: row;
|
338
|
+
flex-direction: row;
|
339
|
+
-webkit-box-pack: center;
|
340
|
+
-ms-flex-pack: center;
|
341
|
+
justify-content: center;
|
314
342
|
line-height: normal;
|
315
343
|
min-height: 22.5px;
|
316
344
|
padding: 12px;
|
@@ -322,24 +350,30 @@
|
|
322
350
|
padding-right: 0;
|
323
351
|
}
|
324
352
|
.e-card .e-card-header .e-card-actions {
|
325
|
-
-
|
326
|
-
|
353
|
+
-webkit-box-pack: start;
|
354
|
+
-ms-flex-pack: start;
|
355
|
+
justify-content: flex-start;
|
327
356
|
}
|
328
357
|
.e-card .e-card-header .e-card-header-image {
|
329
358
|
-ms-flex-item-align: center;
|
330
359
|
align-self: center;
|
360
|
+
display: -webkit-box;
|
331
361
|
display: -ms-flexbox;
|
332
362
|
display: flex;
|
333
363
|
}
|
334
364
|
.e-card .e-card-header .e-card-header-caption {
|
335
365
|
-ms-flex-item-align: center;
|
336
366
|
align-self: center;
|
367
|
+
display: -webkit-box;
|
337
368
|
display: -ms-flexbox;
|
338
369
|
display: flex;
|
339
|
-
-
|
340
|
-
flex: 1;
|
341
|
-
|
342
|
-
|
370
|
+
-webkit-box-flex: 1;
|
371
|
+
-ms-flex: 1;
|
372
|
+
flex: 1;
|
373
|
+
-webkit-box-orient: vertical;
|
374
|
+
-webkit-box-direction: normal;
|
375
|
+
-ms-flex-direction: column;
|
376
|
+
flex-direction: column;
|
343
377
|
overflow: hidden;
|
344
378
|
padding: 0 0 0 12px;
|
345
379
|
}
|
@@ -381,7 +415,8 @@
|
|
381
415
|
}
|
382
416
|
.e-card .e-card-image .e-card-title {
|
383
417
|
bottom: 0;
|
384
|
-
box-sizing: border-box;
|
418
|
+
-webkit-box-sizing: border-box;
|
419
|
+
box-sizing: border-box;
|
385
420
|
font-size: 16px;
|
386
421
|
line-height: 30px;
|
387
422
|
min-height: 30px;
|
@@ -402,28 +437,34 @@
|
|
402
437
|
text-align: right;
|
403
438
|
}
|
404
439
|
.e-card .e-card-actions {
|
405
|
-
box-sizing: border-box;
|
440
|
+
-webkit-box-sizing: border-box;
|
441
|
+
box-sizing: border-box;
|
406
442
|
display: inline-block;
|
407
|
-
-
|
408
|
-
|
443
|
+
-webkit-box-pack: start;
|
444
|
+
-ms-flex-pack: start;
|
445
|
+
justify-content: flex-start;
|
409
446
|
padding: 12px;
|
410
447
|
}
|
411
448
|
.e-card .e-card-actions.e-card-vertical {
|
449
|
+
display: -webkit-box;
|
412
450
|
display: -ms-flexbox;
|
413
451
|
display: flex;
|
414
|
-
-
|
415
|
-
|
452
|
+
-webkit-box-orient: vertical;
|
453
|
+
-webkit-box-direction: normal;
|
454
|
+
-ms-flex-direction: column;
|
455
|
+
flex-direction: column;
|
416
456
|
padding: 12px;
|
417
457
|
}
|
418
458
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
419
459
|
.e-card .e-card-actions.e-card-vertical a {
|
420
460
|
-ms-flex-item-align: initial;
|
421
|
-
-ms-grid-row-align: initial;
|
422
461
|
align-self: initial;
|
423
|
-
box-sizing: border-box;
|
462
|
+
-webkit-box-sizing: border-box;
|
463
|
+
box-sizing: border-box;
|
424
464
|
display: inline-block;
|
425
|
-
-
|
426
|
-
|
465
|
+
-webkit-box-pack: center;
|
466
|
+
-ms-flex-pack: center;
|
467
|
+
justify-content: center;
|
427
468
|
margin: 0 0 0 8px;
|
428
469
|
text-align: center;
|
429
470
|
width: 100%;
|
@@ -434,11 +475,13 @@
|
|
434
475
|
}
|
435
476
|
.e-card .e-card-actions button,
|
436
477
|
.e-card .e-card-actions a {
|
437
|
-
-
|
438
|
-
align
|
478
|
+
-webkit-box-align: center;
|
479
|
+
-ms-flex-align: center;
|
480
|
+
align-items: center;
|
439
481
|
-ms-flex-item-align: center;
|
440
482
|
align-self: center;
|
441
483
|
cursor: pointer;
|
484
|
+
display: -webkit-inline-box;
|
442
485
|
display: -ms-inline-flexbox;
|
443
486
|
display: inline-flex;
|
444
487
|
overflow: hidden;
|
@@ -447,6 +490,7 @@
|
|
447
490
|
}
|
448
491
|
.e-card .e-card-actions .e-card-btn span,
|
449
492
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
493
|
+
display: -webkit-box;
|
450
494
|
display: -ms-flexbox;
|
451
495
|
display: flex;
|
452
496
|
font-size: 14px;
|
@@ -457,10 +501,12 @@
|
|
457
501
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
458
502
|
-ms-flex-item-align: center;
|
459
503
|
align-self: center;
|
504
|
+
display: -webkit-box;
|
460
505
|
display: -ms-flexbox;
|
461
506
|
display: flex;
|
462
|
-
-
|
463
|
-
|
507
|
+
-webkit-box-pack: center;
|
508
|
+
-ms-flex-pack: center;
|
509
|
+
justify-content: center;
|
464
510
|
width: inherit;
|
465
511
|
}
|
466
512
|
.e-card .e-card-actions .e-card-btn > * {
|
@@ -505,13 +551,13 @@
|
|
505
551
|
text-overflow: ellipsis;
|
506
552
|
}
|
507
553
|
|
508
|
-
/*! card theme */
|
509
554
|
/* stylelint-disable property-no-vendor-prefix */
|
510
555
|
.e-card {
|
511
556
|
-webkit-tap-highlight-color: #0d6efd;
|
512
557
|
background: #fff;
|
513
558
|
border: 1px solid #dee2e6;
|
514
|
-
box-shadow: none;
|
559
|
+
-webkit-box-shadow: none;
|
560
|
+
box-shadow: none;
|
515
561
|
color: #212529;
|
516
562
|
outline: none;
|
517
563
|
}
|
@@ -593,6 +639,7 @@
|
|
593
639
|
|
594
640
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
595
641
|
border-width: 1px;
|
642
|
+
display: -webkit-box;
|
596
643
|
display: -ms-flexbox;
|
597
644
|
display: flex;
|
598
645
|
overflow: hidden;
|
@@ -602,8 +649,9 @@
|
|
602
649
|
width: 100%;
|
603
650
|
}
|
604
651
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
605
|
-
-
|
606
|
-
flex: 1 1 auto;
|
652
|
+
-webkit-box-flex: 1;
|
653
|
+
-ms-flex: 1 1 auto;
|
654
|
+
flex: 1 1 auto;
|
607
655
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
608
656
|
font-size: 14px;
|
609
657
|
font-weight: 400;
|
@@ -612,8 +660,9 @@
|
|
612
660
|
overflow: auto;
|
613
661
|
}
|
614
662
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
615
|
-
-
|
616
|
-
flex-
|
663
|
+
-webkit-box-flex: 0;
|
664
|
+
-ms-flex-positive: 0;
|
665
|
+
flex-grow: 0;
|
617
666
|
-ms-flex-negative: 0;
|
618
667
|
flex-shrink: 0;
|
619
668
|
}
|
@@ -626,27 +675,35 @@
|
|
626
675
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
627
676
|
}
|
628
677
|
.e-splitter.e-splitter-horizontal {
|
629
|
-
-
|
630
|
-
|
678
|
+
-webkit-box-orient: horizontal;
|
679
|
+
-webkit-box-direction: normal;
|
680
|
+
-ms-flex-direction: row;
|
681
|
+
flex-direction: row;
|
631
682
|
}
|
632
683
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
633
684
|
overflow: hidden;
|
634
685
|
}
|
635
686
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
636
|
-
-
|
637
|
-
|
687
|
+
-webkit-box-orient: horizontal;
|
688
|
+
-webkit-box-direction: reverse;
|
689
|
+
-ms-flex-direction: row-reverse;
|
690
|
+
flex-direction: row-reverse;
|
638
691
|
}
|
639
692
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
640
|
-
-
|
641
|
-
|
693
|
+
-webkit-box-orient: horizontal;
|
694
|
+
-webkit-box-direction: reverse;
|
695
|
+
-ms-flex-direction: row-reverse;
|
696
|
+
flex-direction: row-reverse;
|
642
697
|
}
|
643
698
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
644
699
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
645
700
|
right: auto;
|
646
701
|
}
|
647
702
|
.e-splitter.e-splitter-vertical {
|
648
|
-
-
|
649
|
-
|
703
|
+
-webkit-box-orient: vertical;
|
704
|
+
-webkit-box-direction: normal;
|
705
|
+
-ms-flex-direction: column;
|
706
|
+
flex-direction: column;
|
650
707
|
}
|
651
708
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
652
709
|
overflow: hidden;
|
@@ -678,14 +735,18 @@
|
|
678
735
|
right: auto;
|
679
736
|
}
|
680
737
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
681
|
-
-
|
682
|
-
align
|
738
|
+
-webkit-box-align: center;
|
739
|
+
-ms-flex-align: center;
|
740
|
+
align-items: center;
|
741
|
+
display: -webkit-box;
|
683
742
|
display: -ms-flexbox;
|
684
743
|
display: flex;
|
685
|
-
-
|
686
|
-
flex: 0 0 auto;
|
687
|
-
|
688
|
-
|
744
|
+
-webkit-box-flex: 0;
|
745
|
+
-ms-flex: 0 0 auto;
|
746
|
+
flex: 0 0 auto;
|
747
|
+
-webkit-box-pack: center;
|
748
|
+
-ms-flex-pack: center;
|
749
|
+
justify-content: center;
|
689
750
|
min-width: 1px;
|
690
751
|
z-index: 15;
|
691
752
|
}
|
@@ -705,13 +766,16 @@
|
|
705
766
|
z-index: 10;
|
706
767
|
}
|
707
768
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
708
|
-
-
|
709
|
-
align
|
769
|
+
-webkit-box-align: center;
|
770
|
+
-ms-flex-align: center;
|
771
|
+
align-items: center;
|
772
|
+
display: -webkit-box;
|
710
773
|
display: -ms-flexbox;
|
711
774
|
display: flex;
|
712
775
|
height: 18px;
|
713
|
-
-
|
714
|
-
|
776
|
+
-webkit-box-pack: center;
|
777
|
+
-ms-flex-pack: center;
|
778
|
+
justify-content: center;
|
715
779
|
position: relative;
|
716
780
|
width: 1px;
|
717
781
|
}
|
@@ -724,9 +788,11 @@
|
|
724
788
|
right: 3px;
|
725
789
|
}
|
726
790
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
727
|
-
border-image: none;
|
791
|
+
-o-border-image: none;
|
792
|
+
border-image: none;
|
728
793
|
border-width: 1px;
|
729
794
|
cursor: pointer;
|
795
|
+
display: -webkit-box;
|
730
796
|
display: -ms-flexbox;
|
731
797
|
display: flex;
|
732
798
|
height: 26px;
|
@@ -738,16 +804,19 @@
|
|
738
804
|
content: "";
|
739
805
|
height: 8px;
|
740
806
|
position: absolute;
|
741
|
-
transform: rotate(0deg);
|
807
|
+
-webkit-transform: rotate(0deg);
|
808
|
+
transform: rotate(0deg);
|
742
809
|
width: 2px;
|
743
810
|
}
|
744
811
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
745
812
|
top: 5px;
|
746
|
-
transform-origin: 1px 7px 0;
|
813
|
+
-webkit-transform-origin: 1px 7px 0;
|
814
|
+
transform-origin: 1px 7px 0;
|
747
815
|
}
|
748
816
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
749
817
|
top: 11px;
|
750
|
-
transform-origin: 1px 1px 0;
|
818
|
+
-webkit-transform-origin: 1px 1px 0;
|
819
|
+
transform-origin: 1px 1px 0;
|
751
820
|
}
|
752
821
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
753
822
|
border-radius: 50%;
|
@@ -767,16 +836,20 @@
|
|
767
836
|
margin: 0 0 0 3px;
|
768
837
|
}
|
769
838
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
770
|
-
-
|
771
|
-
align
|
839
|
+
-webkit-box-align: center;
|
840
|
+
-ms-flex-align: center;
|
841
|
+
align-items: center;
|
772
842
|
border-left: none;
|
773
843
|
border-right: none;
|
844
|
+
display: -webkit-box;
|
774
845
|
display: -ms-flexbox;
|
775
846
|
display: flex;
|
776
|
-
-
|
777
|
-
flex: 0 0 auto;
|
778
|
-
|
779
|
-
|
847
|
+
-webkit-box-flex: 0;
|
848
|
+
-ms-flex: 0 0 auto;
|
849
|
+
flex: 0 0 auto;
|
850
|
+
-webkit-box-pack: center;
|
851
|
+
-ms-flex-pack: center;
|
852
|
+
justify-content: center;
|
780
853
|
min-height: 1px;
|
781
854
|
}
|
782
855
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
@@ -795,13 +868,16 @@
|
|
795
868
|
z-index: 12;
|
796
869
|
}
|
797
870
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
798
|
-
-
|
799
|
-
align
|
871
|
+
-webkit-box-align: center;
|
872
|
+
-ms-flex-align: center;
|
873
|
+
align-items: center;
|
874
|
+
display: -webkit-box;
|
800
875
|
display: -ms-flexbox;
|
801
876
|
display: flex;
|
802
877
|
height: 1px;
|
803
|
-
-
|
804
|
-
|
878
|
+
-webkit-box-pack: center;
|
879
|
+
-ms-flex-pack: center;
|
880
|
+
justify-content: center;
|
805
881
|
width: 18px;
|
806
882
|
}
|
807
883
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
@@ -812,9 +888,11 @@
|
|
812
888
|
left: 10px;
|
813
889
|
}
|
814
890
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
815
|
-
border-image: none;
|
891
|
+
-o-border-image: none;
|
892
|
+
border-image: none;
|
816
893
|
border-width: 0;
|
817
894
|
cursor: pointer;
|
895
|
+
display: -webkit-box;
|
818
896
|
display: -ms-flexbox;
|
819
897
|
display: flex;
|
820
898
|
height: 26px;
|
@@ -827,27 +905,32 @@
|
|
827
905
|
content: "";
|
828
906
|
height: 8px;
|
829
907
|
position: absolute;
|
830
|
-
transform: rotate(90deg);
|
908
|
+
-webkit-transform: rotate(90deg);
|
909
|
+
transform: rotate(90deg);
|
831
910
|
width: 2px;
|
832
911
|
}
|
833
912
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
834
913
|
top: 3px;
|
835
|
-
transform-origin: 2px 7px 0;
|
914
|
+
-webkit-transform-origin: 2px 7px 0;
|
915
|
+
transform-origin: 2px 7px 0;
|
836
916
|
}
|
837
917
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
838
918
|
left: 11px;
|
839
919
|
top: 8px;
|
840
|
-
transform-origin: 1px 1px 0;
|
920
|
+
-webkit-transform-origin: 1px 1px 0;
|
921
|
+
transform-origin: 1px 1px 0;
|
841
922
|
}
|
842
923
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
843
924
|
left: 12px;
|
844
925
|
top: 8px;
|
845
|
-
transform-origin: 1px 6px 0;
|
926
|
+
-webkit-transform-origin: 1px 6px 0;
|
927
|
+
transform-origin: 1px 6px 0;
|
846
928
|
}
|
847
929
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
848
930
|
left: 10px;
|
849
931
|
top: 12px;
|
850
|
-
transform-origin: 1px 2px 0;
|
932
|
+
-webkit-transform-origin: 1px 2px 0;
|
933
|
+
transform-origin: 1px 2px 0;
|
851
934
|
}
|
852
935
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
853
936
|
border-radius: 50%;
|
@@ -887,8 +970,10 @@
|
|
887
970
|
}
|
888
971
|
|
889
972
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
890
|
-
-
|
891
|
-
|
973
|
+
-webkit-box-orient: horizontal;
|
974
|
+
-webkit-box-direction: reverse;
|
975
|
+
-ms-flex-direction: row-reverse;
|
976
|
+
flex-direction: row-reverse;
|
892
977
|
}
|
893
978
|
|
894
979
|
.e-bigger .e-splitter .e-pane {
|
@@ -917,8 +1002,10 @@
|
|
917
1002
|
}
|
918
1003
|
|
919
1004
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
920
|
-
-
|
921
|
-
|
1005
|
+
-webkit-box-orient: vertical;
|
1006
|
+
-webkit-box-direction: normal;
|
1007
|
+
-ms-flex-direction: column;
|
1008
|
+
flex-direction: column;
|
922
1009
|
}
|
923
1010
|
|
924
1011
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
@@ -944,13 +1031,16 @@
|
|
944
1031
|
background-color: transparent;
|
945
1032
|
border-color: transparent;
|
946
1033
|
color: transparent;
|
1034
|
+
-webkit-transition: background-color 500ms ease-out;
|
947
1035
|
transition: background-color 500ms ease-out;
|
948
1036
|
}
|
949
1037
|
.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 {
|
950
1038
|
background-color: #0d6efd;
|
951
1039
|
opacity: 0;
|
952
|
-
transition-duration: 0.3s;
|
953
|
-
|
1040
|
+
-webkit-transition-duration: 0.3s;
|
1041
|
+
transition-duration: 0.3s;
|
1042
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1043
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
954
1044
|
}
|
955
1045
|
.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 {
|
956
1046
|
background: #0d6efd;
|
@@ -970,22 +1060,26 @@
|
|
970
1060
|
.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 {
|
971
1061
|
background-color: #0d6efd;
|
972
1062
|
opacity: 1;
|
973
|
-
transform: rotate(40deg);
|
1063
|
+
-webkit-transform: rotate(40deg);
|
1064
|
+
transform: rotate(40deg);
|
974
1065
|
}
|
975
1066
|
.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 {
|
976
1067
|
background-color: #0d6efd;
|
977
1068
|
opacity: 1;
|
978
|
-
transform: rotate(-40deg);
|
1069
|
+
-webkit-transform: rotate(-40deg);
|
1070
|
+
transform: rotate(-40deg);
|
979
1071
|
}
|
980
1072
|
.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 {
|
981
1073
|
background-color: #0d6efd;
|
982
1074
|
opacity: 1;
|
983
|
-
transform: rotate(-40deg);
|
1075
|
+
-webkit-transform: rotate(-40deg);
|
1076
|
+
transform: rotate(-40deg);
|
984
1077
|
}
|
985
1078
|
.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 {
|
986
1079
|
background-color: #0d6efd;
|
987
1080
|
opacity: 1;
|
988
|
-
transform: rotate(40deg);
|
1081
|
+
-webkit-transform: rotate(40deg);
|
1082
|
+
transform: rotate(40deg);
|
989
1083
|
}
|
990
1084
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
991
1085
|
background: #0d6efd;
|
@@ -1020,34 +1114,41 @@
|
|
1020
1114
|
.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 {
|
1021
1115
|
background-color: #0d6efd;
|
1022
1116
|
opacity: 1;
|
1023
|
-
transform: rotate(125deg);
|
1117
|
+
-webkit-transform: rotate(125deg);
|
1118
|
+
transform: rotate(125deg);
|
1024
1119
|
}
|
1025
1120
|
.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 {
|
1026
1121
|
background-color: #0d6efd;
|
1027
1122
|
opacity: 1;
|
1028
|
-
transform: rotate(50deg);
|
1123
|
+
-webkit-transform: rotate(50deg);
|
1124
|
+
transform: rotate(50deg);
|
1029
1125
|
}
|
1030
1126
|
.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 {
|
1031
1127
|
background-color: #0d6efd;
|
1032
1128
|
opacity: 1;
|
1033
|
-
transform: rotate(55deg);
|
1129
|
+
-webkit-transform: rotate(55deg);
|
1130
|
+
transform: rotate(55deg);
|
1034
1131
|
}
|
1035
1132
|
.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 {
|
1036
1133
|
background-color: #0d6efd;
|
1037
1134
|
opacity: 1;
|
1038
|
-
transform: rotate(125deg);
|
1135
|
+
-webkit-transform: rotate(125deg);
|
1136
|
+
transform: rotate(125deg);
|
1039
1137
|
}
|
1040
1138
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
1041
1139
|
background-color: transparent;
|
1042
1140
|
border-color: transparent;
|
1043
1141
|
color: transparent;
|
1142
|
+
-webkit-transition: background-color 300ms ease-out;
|
1044
1143
|
transition: background-color 300ms ease-out;
|
1045
1144
|
}
|
1046
1145
|
.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 {
|
1047
1146
|
background-color: #0d6efd;
|
1048
1147
|
opacity: 0;
|
1049
|
-
transition-duration: 0.3s;
|
1050
|
-
|
1148
|
+
-webkit-transition-duration: 0.3s;
|
1149
|
+
transition-duration: 0.3s;
|
1150
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1151
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1051
1152
|
}
|
1052
1153
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1053
1154
|
background: #0d6efd;
|
@@ -1061,7 +1162,8 @@
|
|
1061
1162
|
pointer-events: none;
|
1062
1163
|
}
|
1063
1164
|
|
1064
|
-
/* stylelint-disable-line no-empty-source */
|
1165
|
+
/* stylelint-disable-line no-empty-source */
|
1166
|
+
/*! component's theme wise override tailwind-definitions and variables */
|
1065
1167
|
/* stylelint-disable */
|
1066
1168
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
1067
1169
|
height: 100%;
|
@@ -1122,7 +1224,8 @@
|
|
1122
1224
|
font-size: 12px;
|
1123
1225
|
left: 4px;
|
1124
1226
|
position: absolute;
|
1125
|
-
transform: rotateY(180deg);
|
1227
|
+
-webkit-transform: rotateY(180deg);
|
1228
|
+
transform: rotateY(180deg);
|
1126
1229
|
}
|
1127
1230
|
|
1128
1231
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
@@ -1131,7 +1234,7 @@
|
|
1131
1234
|
height: 100%;
|
1132
1235
|
width: 100%;
|
1133
1236
|
}
|
1134
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
1237
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
1135
1238
|
border: 1px dashed #adb5bd;
|
1136
1239
|
border-radius: 6px;
|
1137
1240
|
position: absolute;
|
@@ -1141,15 +1244,27 @@
|
|
1141
1244
|
}
|
1142
1245
|
.e-dashboardlayout.e-control.e-prevent {
|
1143
1246
|
-webkit-user-select: none;
|
1247
|
+
-moz-user-select: none;
|
1144
1248
|
-ms-user-select: none;
|
1145
1249
|
user-select: none;
|
1146
1250
|
}
|
1251
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
1252
|
+
position: relative;
|
1253
|
+
}
|
1147
1254
|
.e-dashboardlayout.e-control .e-panel {
|
1255
|
+
border: 1px solid #dee2e6;
|
1256
|
+
height: 100%;
|
1257
|
+
-webkit-user-select: none;
|
1258
|
+
-moz-user-select: none;
|
1259
|
+
-ms-user-select: none;
|
1260
|
+
user-select: none;
|
1261
|
+
width: 100%;
|
1148
1262
|
border-radius: 4px;
|
1149
1263
|
}
|
1150
1264
|
.e-dashboardlayout.e-control .e-panel:hover {
|
1151
1265
|
border: 1px solid #adb5bd;
|
1152
|
-
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
1266
|
+
-webkit-box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
1267
|
+
box-shadow: 0 0.8px 16px rgba(0, 0, 0, 0.15);
|
1153
1268
|
}
|
1154
1269
|
.e-dashboardlayout.e-control .e-panel:hover .e-panel-container .e-resize.e-dl-icon {
|
1155
1270
|
display: block;
|
@@ -1157,10 +1272,19 @@
|
|
1157
1272
|
.e-dashboardlayout.e-control .e-panel:active {
|
1158
1273
|
border: 1px solid #0d6efd;
|
1159
1274
|
}
|
1275
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
1276
|
+
height: 100%;
|
1277
|
+
width: 100%;
|
1278
|
+
}
|
1279
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
1280
|
+
height: inherit;
|
1281
|
+
width: inherit;
|
1282
|
+
}
|
1160
1283
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
1161
1284
|
display: none;
|
1162
1285
|
}
|
1163
1286
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
1287
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
1164
1288
|
transition: top 0.5s, left 0.5s;
|
1165
1289
|
}
|
1166
1290
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
@@ -1185,22 +1309,6 @@
|
|
1185
1309
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
1186
1310
|
float: right;
|
1187
1311
|
}
|
1188
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
1189
|
-
height: 100%;
|
1190
|
-
width: 100%;
|
1191
|
-
}
|
1192
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
1193
|
-
height: inherit;
|
1194
|
-
width: inherit;
|
1195
|
-
}
|
1196
|
-
.e-dashboardlayout.e-control .e-panel {
|
1197
|
-
border: 1px solid #dee2e6;
|
1198
|
-
height: 100%;
|
1199
|
-
-webkit-user-select: none;
|
1200
|
-
-ms-user-select: none;
|
1201
|
-
user-select: none;
|
1202
|
-
width: 100%;
|
1203
|
-
}
|
1204
1312
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
1205
1313
|
position: absolute;
|
1206
1314
|
-ms-touch-action: none;
|
@@ -1237,13 +1345,6 @@
|
|
1237
1345
|
font-family: "e-icons";
|
1238
1346
|
position: absolute;
|
1239
1347
|
}
|
1240
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
1241
|
-
cursor: move;
|
1242
|
-
}
|
1243
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
1244
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
1245
|
-
cursor: default;
|
1246
|
-
}
|
1247
1348
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
1248
1349
|
cursor: move;
|
1249
1350
|
z-index: 1111 !important;
|
@@ -1251,6 +1352,19 @@
|
|
1251
1352
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
1252
1353
|
float: left;
|
1253
1354
|
}
|
1355
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1356
|
+
font-size: 16px;
|
1357
|
+
font-weight: 500;
|
1358
|
+
height: 40px;
|
1359
|
+
padding: 8px 18px;
|
1360
|
+
}
|
1361
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
1362
|
+
cursor: move;
|
1363
|
+
}
|
1364
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
1365
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
1366
|
+
cursor: default;
|
1367
|
+
}
|
1254
1368
|
.e-dashboardlayout.e-control .e-holder {
|
1255
1369
|
background: #e7f1ff;
|
1256
1370
|
border: 1px #0d6efd dashed;
|
@@ -1259,14 +1373,9 @@
|
|
1259
1373
|
border-radius: 4px;
|
1260
1374
|
}
|
1261
1375
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
1376
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
1262
1377
|
transition: top 0.3s, left 0.3s;
|
1263
1378
|
}
|
1264
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1265
|
-
font-size: 16px;
|
1266
|
-
font-weight: 500;
|
1267
|
-
height: 40px;
|
1268
|
-
padding: 8px 18px;
|
1269
|
-
}
|
1270
1379
|
|
1271
1380
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
1272
1381
|
font-size: 16px;
|
@@ -1285,26 +1394,17 @@
|
|
1285
1394
|
}
|
1286
1395
|
.e-dashboardlayout.e-control .e-panel {
|
1287
1396
|
background: #fff;
|
1288
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
|
1289
|
-
|
1397
|
+
-webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
|
1398
|
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
|
1399
|
+
-webkit-box-sizing: border-box;
|
1400
|
+
box-sizing: border-box;
|
1290
1401
|
position: absolute;
|
1291
1402
|
}
|
1292
1403
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
1293
1404
|
color: #212529;
|
1294
1405
|
background: #f8f9fa;
|
1295
|
-
box-sizing: border-box;
|
1296
|
-
|
1297
|
-
.e-dashboardlayout.e-control .e-panel {
|
1298
|
-
background: #fff;
|
1299
|
-
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.075);
|
1300
|
-
box-sizing: border-box;
|
1301
|
-
position: absolute;
|
1302
|
-
}
|
1303
|
-
.e-dashboardlayout.e-control .e-panel:active {
|
1304
|
-
background: #fff;
|
1305
|
-
}
|
1306
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
1307
|
-
color: #212529;
|
1406
|
+
-webkit-box-sizing: border-box;
|
1407
|
+
box-sizing: border-box;
|
1308
1408
|
}
|
1309
1409
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-single {
|
1310
1410
|
background: none;
|
@@ -1363,6 +1463,9 @@
|
|
1363
1463
|
bottom: 2px;
|
1364
1464
|
right: 2px;
|
1365
1465
|
}
|
1466
|
+
.e-dashboardlayout.e-control .e-panel:active {
|
1467
|
+
background: #fff;
|
1468
|
+
}
|
1366
1469
|
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1367
1470
|
color: #212529;
|
1368
1471
|
}
|
@@ -1379,12 +1482,15 @@
|
|
1379
1482
|
.e-timeline [class^="e-dot "]::before,
|
1380
1483
|
.e-timeline .e-dot-item,
|
1381
1484
|
.e-timeline .e-dot {
|
1485
|
+
display: -webkit-box;
|
1382
1486
|
display: -ms-flexbox;
|
1383
1487
|
display: flex;
|
1384
|
-
-
|
1385
|
-
align
|
1386
|
-
|
1387
|
-
|
1488
|
+
-webkit-box-align: center;
|
1489
|
+
-ms-flex-align: center;
|
1490
|
+
align-items: center;
|
1491
|
+
-webkit-box-pack: center;
|
1492
|
+
-ms-flex-pack: center;
|
1493
|
+
justify-content: center;
|
1388
1494
|
}
|
1389
1495
|
.e-timeline [class^="e-dot "]::before {
|
1390
1496
|
min-width: 32px;
|
@@ -1392,10 +1498,13 @@
|
|
1392
1498
|
border-radius: var(--dot-radius);
|
1393
1499
|
}
|
1394
1500
|
.e-timeline .e-timeline-items {
|
1501
|
+
display: -webkit-inline-box;
|
1395
1502
|
display: -ms-inline-flexbox;
|
1396
1503
|
display: inline-flex;
|
1397
|
-
-
|
1398
|
-
|
1504
|
+
-webkit-box-orient: vertical;
|
1505
|
+
-webkit-box-direction: normal;
|
1506
|
+
-ms-flex-direction: column;
|
1507
|
+
flex-direction: column;
|
1399
1508
|
list-style: none;
|
1400
1509
|
-ms-flex-wrap: nowrap;
|
1401
1510
|
flex-wrap: nowrap;
|
@@ -1404,13 +1513,17 @@
|
|
1404
1513
|
height: inherit;
|
1405
1514
|
}
|
1406
1515
|
.e-timeline .e-timeline-item {
|
1516
|
+
display: -webkit-box;
|
1407
1517
|
display: -ms-flexbox;
|
1408
1518
|
display: flex;
|
1409
|
-
-
|
1410
|
-
|
1519
|
+
-webkit-box-orient: horizontal;
|
1520
|
+
-webkit-box-direction: normal;
|
1521
|
+
-ms-flex-direction: row;
|
1522
|
+
flex-direction: row;
|
1411
1523
|
position: relative;
|
1412
|
-
-
|
1413
|
-
align
|
1524
|
+
-webkit-box-align: start;
|
1525
|
+
-ms-flex-align: start;
|
1526
|
+
align-items: flex-start;
|
1414
1527
|
width: inherit;
|
1415
1528
|
height: inherit;
|
1416
1529
|
}
|
@@ -1430,8 +1543,9 @@
|
|
1430
1543
|
}
|
1431
1544
|
.e-timeline .e-dot-item {
|
1432
1545
|
position: relative;
|
1433
|
-
-
|
1434
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
1546
|
+
-webkit-box-flex: 0;
|
1547
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
1548
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
1435
1549
|
z-index: 1000;
|
1436
1550
|
}
|
1437
1551
|
.e-timeline .e-dot {
|
@@ -1447,12 +1561,12 @@
|
|
1447
1561
|
}
|
1448
1562
|
.e-timeline .e-opposite-content,
|
1449
1563
|
.e-timeline .e-content {
|
1450
|
-
-
|
1451
|
-
flex: 1 1 50%;
|
1564
|
+
-webkit-box-flex: 1;
|
1565
|
+
-ms-flex: 1 1 50%;
|
1566
|
+
flex: 1 1 50%;
|
1452
1567
|
}
|
1453
1568
|
.e-timeline .e-opposite-content {
|
1454
1569
|
font-size: 12px;
|
1455
|
-
text-align: right;
|
1456
1570
|
}
|
1457
1571
|
.e-timeline .e-content {
|
1458
1572
|
text-align: left;
|
@@ -1466,12 +1580,16 @@
|
|
1466
1580
|
bottom: calc(var(--dot-size) * 2);
|
1467
1581
|
}
|
1468
1582
|
.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) {
|
1469
|
-
-
|
1470
|
-
|
1583
|
+
-webkit-box-orient: horizontal;
|
1584
|
+
-webkit-box-direction: reverse;
|
1585
|
+
-ms-flex-direction: row-reverse;
|
1586
|
+
flex-direction: row-reverse;
|
1471
1587
|
}
|
1472
1588
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
1473
|
-
-
|
1474
|
-
|
1589
|
+
-webkit-box-orient: vertical;
|
1590
|
+
-webkit-box-direction: reverse;
|
1591
|
+
-ms-flex-direction: column-reverse;
|
1592
|
+
flex-direction: column-reverse;
|
1475
1593
|
}
|
1476
1594
|
.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 {
|
1477
1595
|
text-align: left;
|
@@ -1479,6 +1597,19 @@
|
|
1479
1597
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
1480
1598
|
content: unset;
|
1481
1599
|
}
|
1600
|
+
.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 {
|
1601
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
1602
|
+
right: auto;
|
1603
|
+
}
|
1604
|
+
.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 {
|
1605
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
1606
|
+
left: auto;
|
1607
|
+
}
|
1608
|
+
.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 {
|
1609
|
+
-webkit-box-flex: 0;
|
1610
|
+
-ms-flex: 0;
|
1611
|
+
flex: 0;
|
1612
|
+
}
|
1482
1613
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
1483
1614
|
content: unset;
|
1484
1615
|
}
|
@@ -1496,13 +1627,27 @@
|
|
1496
1627
|
width: calc(var(--dot-size) * 2);
|
1497
1628
|
}
|
1498
1629
|
.e-timeline.e-horizontal .e-timeline-items {
|
1630
|
+
display: -webkit-inline-box;
|
1499
1631
|
display: -ms-inline-flexbox;
|
1500
1632
|
display: inline-flex;
|
1501
|
-
-
|
1502
|
-
|
1633
|
+
-webkit-box-orient: horizontal;
|
1634
|
+
-webkit-box-direction: normal;
|
1635
|
+
-ms-flex-direction: row;
|
1636
|
+
flex-direction: row;
|
1503
1637
|
}
|
1504
1638
|
.e-timeline.e-horizontal .e-timeline-item {
|
1505
1639
|
height: auto;
|
1640
|
+
-webkit-box-orient: vertical;
|
1641
|
+
-webkit-box-direction: normal;
|
1642
|
+
-ms-flex-direction: column;
|
1643
|
+
flex-direction: column;
|
1644
|
+
-webkit-box-align: center;
|
1645
|
+
-ms-flex-align: center;
|
1646
|
+
align-items: center;
|
1647
|
+
}
|
1648
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
1649
|
+
left: calc(50% - var(--connector-size));
|
1650
|
+
right: auto;
|
1506
1651
|
}
|
1507
1652
|
.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 {
|
1508
1653
|
right: calc(50% - var(--connector-size));
|
@@ -1511,32 +1656,33 @@
|
|
1511
1656
|
.e-timeline.e-horizontal .e-dot-item {
|
1512
1657
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
1513
1658
|
}
|
1514
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
1515
|
-
-ms-flex-direction: column;
|
1516
|
-
flex-direction: column;
|
1517
|
-
-ms-flex-align: center;
|
1518
|
-
align-items: center;
|
1519
|
-
}
|
1520
1659
|
.e-timeline.e-horizontal .e-opposite-content,
|
1521
1660
|
.e-timeline.e-horizontal .e-content {
|
1661
|
+
display: -webkit-box;
|
1522
1662
|
display: -ms-flexbox;
|
1523
1663
|
display: flex;
|
1524
1664
|
}
|
1525
1665
|
.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 {
|
1526
|
-
-
|
1527
|
-
align
|
1666
|
+
-webkit-box-align: end;
|
1667
|
+
-ms-flex-align: end;
|
1668
|
+
align-items: flex-end;
|
1528
1669
|
}
|
1529
1670
|
.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 {
|
1530
|
-
-
|
1531
|
-
align
|
1671
|
+
-webkit-box-align: start;
|
1672
|
+
-ms-flex-align: start;
|
1673
|
+
align-items: flex-start;
|
1532
1674
|
}
|
1533
1675
|
.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) {
|
1534
|
-
-
|
1535
|
-
|
1676
|
+
-webkit-box-orient: vertical;
|
1677
|
+
-webkit-box-direction: reverse;
|
1678
|
+
-ms-flex-direction: column-reverse;
|
1679
|
+
flex-direction: column-reverse;
|
1536
1680
|
}
|
1537
1681
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
1538
|
-
-
|
1539
|
-
|
1682
|
+
-webkit-box-orient: horizontal;
|
1683
|
+
-webkit-box-direction: reverse;
|
1684
|
+
-ms-flex-direction: row-reverse;
|
1685
|
+
flex-direction: row-reverse;
|
1540
1686
|
}
|
1541
1687
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
1542
1688
|
width: 100%;
|
@@ -1544,10 +1690,12 @@
|
|
1544
1690
|
top: calc(50% - var(--connector-size));
|
1545
1691
|
}
|
1546
1692
|
.e-timeline.e-horizontal .e-opposite-content {
|
1693
|
+
display: -webkit-box;
|
1547
1694
|
display: -ms-flexbox;
|
1548
1695
|
display: flex;
|
1549
|
-
-
|
1550
|
-
align
|
1696
|
+
-webkit-box-align: end;
|
1697
|
+
-ms-flex-align: end;
|
1698
|
+
align-items: flex-end;
|
1551
1699
|
text-align: left;
|
1552
1700
|
padding: 0;
|
1553
1701
|
}
|
@@ -1566,8 +1714,23 @@
|
|
1566
1714
|
}
|
1567
1715
|
.e-bigger.e-timeline .e-dot-item,
|
1568
1716
|
.e-bigger .e-timeline .e-dot-item {
|
1569
|
-
-
|
1570
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
1717
|
+
-webkit-box-flex: 0;
|
1718
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
1719
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
1720
|
+
}
|
1721
|
+
.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,
|
1722
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
1723
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
1724
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
1725
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
1726
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
1727
|
+
}
|
1728
|
+
.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,
|
1729
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
1730
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
1731
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
1732
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
1733
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
1571
1734
|
}
|
1572
1735
|
.e-bigger.e-timeline .e-dot,
|
1573
1736
|
.e-bigger .e-timeline .e-dot {
|