@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
|
@@ -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: #bcbcbc;
|
|
7
8
|
background-position: center;
|
|
8
9
|
background-repeat: no-repeat;
|
|
9
10
|
background-size: cover;
|
|
10
11
|
border-radius: 5px;
|
|
11
12
|
color: #fff;
|
|
13
|
+
display: -webkit-inline-box;
|
|
12
14
|
display: -ms-inline-flexbox;
|
|
13
15
|
display: inline-flex;
|
|
14
16
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
15
17
|
font-size: 1em;
|
|
16
18
|
font-weight: 400;
|
|
17
19
|
height: 3em;
|
|
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: 3em;
|
|
@@ -46,7 +49,6 @@
|
|
|
46
49
|
|
|
47
50
|
/*! component's default definitions and variables */
|
|
48
51
|
/*! component's theme wise override material-definitions and variables */
|
|
49
|
-
/*! card layout */
|
|
50
52
|
.e-bigger .e-card,
|
|
51
53
|
.e-bigger.e-card {
|
|
52
54
|
line-height: 36px;
|
|
@@ -184,15 +186,20 @@
|
|
|
184
186
|
|
|
185
187
|
.e-card {
|
|
186
188
|
border-radius: 0;
|
|
187
|
-
box-sizing: border-box;
|
|
189
|
+
-webkit-box-sizing: border-box;
|
|
190
|
+
box-sizing: border-box;
|
|
191
|
+
display: -webkit-box;
|
|
188
192
|
display: -ms-flexbox;
|
|
189
193
|
display: flex;
|
|
190
|
-
-
|
|
191
|
-
|
|
194
|
+
-webkit-box-orient: vertical;
|
|
195
|
+
-webkit-box-direction: normal;
|
|
196
|
+
-ms-flex-direction: column;
|
|
197
|
+
flex-direction: column;
|
|
192
198
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
193
199
|
font-size: 15px;
|
|
194
|
-
-
|
|
195
|
-
|
|
200
|
+
-webkit-box-pack: center;
|
|
201
|
+
-ms-flex-pack: center;
|
|
202
|
+
justify-content: center;
|
|
196
203
|
line-height: 16px;
|
|
197
204
|
min-height: 48px;
|
|
198
205
|
overflow: hidden;
|
|
@@ -202,11 +209,13 @@
|
|
|
202
209
|
width: 100%;
|
|
203
210
|
}
|
|
204
211
|
.e-card > * {
|
|
205
|
-
-
|
|
206
|
-
|
|
212
|
+
-webkit-box-pack: center;
|
|
213
|
+
-ms-flex-pack: center;
|
|
214
|
+
justify-content: center;
|
|
207
215
|
}
|
|
208
216
|
.e-card > .e-card-header-title {
|
|
209
|
-
box-sizing: border-box;
|
|
217
|
+
-webkit-box-sizing: border-box;
|
|
218
|
+
box-sizing: border-box;
|
|
210
219
|
font-size: 15px;
|
|
211
220
|
line-height: 16px;
|
|
212
221
|
padding: 16px;
|
|
@@ -239,22 +248,30 @@
|
|
|
239
248
|
font-size: 14px;
|
|
240
249
|
}
|
|
241
250
|
.e-card .e-card-stacked {
|
|
251
|
+
display: -webkit-box;
|
|
242
252
|
display: -ms-flexbox;
|
|
243
253
|
display: flex;
|
|
244
|
-
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
254
|
+
-webkit-box-orient: vertical;
|
|
255
|
+
-webkit-box-direction: normal;
|
|
256
|
+
-ms-flex-direction: column;
|
|
257
|
+
flex-direction: column;
|
|
258
|
+
-webkit-box-pack: center;
|
|
259
|
+
-ms-flex-pack: center;
|
|
260
|
+
justify-content: center;
|
|
248
261
|
overflow: hidden;
|
|
249
262
|
}
|
|
250
263
|
.e-card.e-card-horizontal,
|
|
251
264
|
.e-card .e-card-horizontal {
|
|
265
|
+
display: -webkit-box;
|
|
252
266
|
display: -ms-flexbox;
|
|
253
267
|
display: flex;
|
|
254
|
-
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
268
|
+
-webkit-box-orient: horizontal;
|
|
269
|
+
-webkit-box-direction: normal;
|
|
270
|
+
-ms-flex-direction: row;
|
|
271
|
+
flex-direction: row;
|
|
272
|
+
-webkit-box-pack: center;
|
|
273
|
+
-ms-flex-pack: center;
|
|
274
|
+
justify-content: center;
|
|
258
275
|
}
|
|
259
276
|
.e-card.e-card-horizontal .e-card-image,
|
|
260
277
|
.e-card.e-card-horizontal img,
|
|
@@ -267,21 +284,27 @@
|
|
|
267
284
|
padding: 2px;
|
|
268
285
|
}
|
|
269
286
|
.e-card.e-card-horizontal > * {
|
|
270
|
-
-
|
|
271
|
-
flex: 1;
|
|
287
|
+
-webkit-box-flex: 1;
|
|
288
|
+
-ms-flex: 1;
|
|
289
|
+
flex: 1;
|
|
272
290
|
}
|
|
273
291
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
292
|
+
display: -webkit-box;
|
|
274
293
|
display: -ms-flexbox;
|
|
275
294
|
display: flex;
|
|
276
|
-
-
|
|
277
|
-
flex: 1;
|
|
278
|
-
|
|
279
|
-
|
|
295
|
+
-webkit-box-flex: 1;
|
|
296
|
+
-ms-flex: 1;
|
|
297
|
+
flex: 1;
|
|
298
|
+
-webkit-box-orient: vertical;
|
|
299
|
+
-webkit-box-direction: normal;
|
|
300
|
+
-ms-flex-direction: column;
|
|
301
|
+
flex-direction: column;
|
|
280
302
|
overflow: hidden;
|
|
281
303
|
}
|
|
282
304
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
283
|
-
-
|
|
284
|
-
flex-
|
|
305
|
+
-webkit-box-flex: 1;
|
|
306
|
+
-ms-flex-positive: 1;
|
|
307
|
+
flex-grow: 1;
|
|
285
308
|
}
|
|
286
309
|
.e-card .e-card-separator {
|
|
287
310
|
display: block;
|
|
@@ -290,13 +313,18 @@
|
|
|
290
313
|
border-radius: 50%;
|
|
291
314
|
}
|
|
292
315
|
.e-card .e-card-header {
|
|
293
|
-
box-sizing: border-box;
|
|
316
|
+
-webkit-box-sizing: border-box;
|
|
317
|
+
box-sizing: border-box;
|
|
318
|
+
display: -webkit-box;
|
|
294
319
|
display: -ms-flexbox;
|
|
295
320
|
display: flex;
|
|
296
|
-
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
321
|
+
-webkit-box-orient: horizontal;
|
|
322
|
+
-webkit-box-direction: normal;
|
|
323
|
+
-ms-flex-direction: row;
|
|
324
|
+
flex-direction: row;
|
|
325
|
+
-webkit-box-pack: center;
|
|
326
|
+
-ms-flex-pack: center;
|
|
327
|
+
justify-content: center;
|
|
300
328
|
line-height: normal;
|
|
301
329
|
min-height: 30px;
|
|
302
330
|
padding: 16px 0 16px 16px;
|
|
@@ -307,24 +335,30 @@
|
|
|
307
335
|
padding-right: 0;
|
|
308
336
|
}
|
|
309
337
|
.e-card .e-card-header .e-card-actions {
|
|
310
|
-
-
|
|
311
|
-
|
|
338
|
+
-webkit-box-pack: start;
|
|
339
|
+
-ms-flex-pack: start;
|
|
340
|
+
justify-content: flex-start;
|
|
312
341
|
}
|
|
313
342
|
.e-card .e-card-header .e-card-header-image {
|
|
314
343
|
-ms-flex-item-align: center;
|
|
315
344
|
align-self: center;
|
|
345
|
+
display: -webkit-box;
|
|
316
346
|
display: -ms-flexbox;
|
|
317
347
|
display: flex;
|
|
318
348
|
}
|
|
319
349
|
.e-card .e-card-header .e-card-header-caption {
|
|
320
350
|
-ms-flex-item-align: center;
|
|
321
351
|
align-self: center;
|
|
352
|
+
display: -webkit-box;
|
|
322
353
|
display: -ms-flexbox;
|
|
323
354
|
display: flex;
|
|
324
|
-
-
|
|
325
|
-
flex: 1;
|
|
326
|
-
|
|
327
|
-
|
|
355
|
+
-webkit-box-flex: 1;
|
|
356
|
+
-ms-flex: 1;
|
|
357
|
+
flex: 1;
|
|
358
|
+
-webkit-box-orient: vertical;
|
|
359
|
+
-webkit-box-direction: normal;
|
|
360
|
+
-ms-flex-direction: column;
|
|
361
|
+
flex-direction: column;
|
|
328
362
|
overflow: hidden;
|
|
329
363
|
padding: 0 0 0 8px;
|
|
330
364
|
}
|
|
@@ -366,7 +400,8 @@
|
|
|
366
400
|
}
|
|
367
401
|
.e-card .e-card-image .e-card-title {
|
|
368
402
|
bottom: 0;
|
|
369
|
-
box-sizing: border-box;
|
|
403
|
+
-webkit-box-sizing: border-box;
|
|
404
|
+
box-sizing: border-box;
|
|
370
405
|
font-size: 24px;
|
|
371
406
|
line-height: 22px;
|
|
372
407
|
min-height: 40px;
|
|
@@ -387,28 +422,34 @@
|
|
|
387
422
|
text-align: right;
|
|
388
423
|
}
|
|
389
424
|
.e-card .e-card-actions {
|
|
390
|
-
box-sizing: border-box;
|
|
425
|
+
-webkit-box-sizing: border-box;
|
|
426
|
+
box-sizing: border-box;
|
|
391
427
|
display: inline-block;
|
|
392
|
-
-
|
|
393
|
-
|
|
428
|
+
-webkit-box-pack: start;
|
|
429
|
+
-ms-flex-pack: start;
|
|
430
|
+
justify-content: flex-start;
|
|
394
431
|
padding: 8px;
|
|
395
432
|
}
|
|
396
433
|
.e-card .e-card-actions.e-card-vertical {
|
|
434
|
+
display: -webkit-box;
|
|
397
435
|
display: -ms-flexbox;
|
|
398
436
|
display: flex;
|
|
399
|
-
-
|
|
400
|
-
|
|
437
|
+
-webkit-box-orient: vertical;
|
|
438
|
+
-webkit-box-direction: normal;
|
|
439
|
+
-ms-flex-direction: column;
|
|
440
|
+
flex-direction: column;
|
|
401
441
|
padding: 0 8px;
|
|
402
442
|
}
|
|
403
443
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
|
404
444
|
.e-card .e-card-actions.e-card-vertical a {
|
|
405
445
|
-ms-flex-item-align: initial;
|
|
406
|
-
-ms-grid-row-align: initial;
|
|
407
446
|
align-self: initial;
|
|
408
|
-
box-sizing: border-box;
|
|
447
|
+
-webkit-box-sizing: border-box;
|
|
448
|
+
box-sizing: border-box;
|
|
409
449
|
display: inline-block;
|
|
410
|
-
-
|
|
411
|
-
|
|
450
|
+
-webkit-box-pack: center;
|
|
451
|
+
-ms-flex-pack: center;
|
|
452
|
+
justify-content: center;
|
|
412
453
|
margin: 0 0 8px 0;
|
|
413
454
|
text-align: center;
|
|
414
455
|
width: 100%;
|
|
@@ -419,11 +460,13 @@
|
|
|
419
460
|
}
|
|
420
461
|
.e-card .e-card-actions button,
|
|
421
462
|
.e-card .e-card-actions a {
|
|
422
|
-
-
|
|
423
|
-
align
|
|
463
|
+
-webkit-box-align: center;
|
|
464
|
+
-ms-flex-align: center;
|
|
465
|
+
align-items: center;
|
|
424
466
|
-ms-flex-item-align: center;
|
|
425
467
|
align-self: center;
|
|
426
468
|
cursor: pointer;
|
|
469
|
+
display: -webkit-inline-box;
|
|
427
470
|
display: -ms-inline-flexbox;
|
|
428
471
|
display: inline-flex;
|
|
429
472
|
overflow: hidden;
|
|
@@ -432,6 +475,7 @@
|
|
|
432
475
|
}
|
|
433
476
|
.e-card .e-card-actions .e-card-btn span,
|
|
434
477
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
|
478
|
+
display: -webkit-box;
|
|
435
479
|
display: -ms-flexbox;
|
|
436
480
|
display: flex;
|
|
437
481
|
font-size: 14px;
|
|
@@ -442,10 +486,12 @@
|
|
|
442
486
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
|
443
487
|
-ms-flex-item-align: center;
|
|
444
488
|
align-self: center;
|
|
489
|
+
display: -webkit-box;
|
|
445
490
|
display: -ms-flexbox;
|
|
446
491
|
display: flex;
|
|
447
|
-
-
|
|
448
|
-
|
|
492
|
+
-webkit-box-pack: center;
|
|
493
|
+
-ms-flex-pack: center;
|
|
494
|
+
justify-content: center;
|
|
449
495
|
width: inherit;
|
|
450
496
|
}
|
|
451
497
|
.e-card .e-card-actions .e-card-btn > * {
|
|
@@ -490,13 +536,13 @@
|
|
|
490
536
|
text-overflow: ellipsis;
|
|
491
537
|
}
|
|
492
538
|
|
|
493
|
-
/*! card theme */
|
|
494
539
|
/* stylelint-disable property-no-vendor-prefix */
|
|
495
540
|
.e-card {
|
|
496
541
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
497
542
|
background: #ccc;
|
|
498
543
|
border: 1px solid #757575;
|
|
499
|
-
box-shadow: none;
|
|
544
|
+
-webkit-box-shadow: none;
|
|
545
|
+
box-shadow: none;
|
|
500
546
|
color: #000;
|
|
501
547
|
outline: none;
|
|
502
548
|
}
|
|
@@ -570,7 +616,8 @@
|
|
|
570
616
|
content: "\e984";
|
|
571
617
|
font-family: "e-icons";
|
|
572
618
|
font-size: 14px;
|
|
573
|
-
transform: rotate(90deg);
|
|
619
|
+
-webkit-transform: rotate(90deg);
|
|
620
|
+
transform: rotate(90deg);
|
|
574
621
|
}
|
|
575
622
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
|
|
576
623
|
content: "";
|
|
@@ -585,6 +632,7 @@
|
|
|
585
632
|
|
|
586
633
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
587
634
|
border-width: 1px;
|
|
635
|
+
display: -webkit-box;
|
|
588
636
|
display: -ms-flexbox;
|
|
589
637
|
display: flex;
|
|
590
638
|
overflow: hidden;
|
|
@@ -594,8 +642,9 @@
|
|
|
594
642
|
width: 100%;
|
|
595
643
|
}
|
|
596
644
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
|
597
|
-
-
|
|
598
|
-
flex: 1 1 auto;
|
|
645
|
+
-webkit-box-flex: 1;
|
|
646
|
+
-ms-flex: 1 1 auto;
|
|
647
|
+
flex: 1 1 auto;
|
|
599
648
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
600
649
|
font-size: 13px;
|
|
601
650
|
font-weight: normal;
|
|
@@ -604,8 +653,9 @@
|
|
|
604
653
|
overflow: auto;
|
|
605
654
|
}
|
|
606
655
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
|
607
|
-
-
|
|
608
|
-
flex-
|
|
656
|
+
-webkit-box-flex: 0;
|
|
657
|
+
-ms-flex-positive: 0;
|
|
658
|
+
flex-grow: 0;
|
|
609
659
|
-ms-flex-negative: 0;
|
|
610
660
|
flex-shrink: 0;
|
|
611
661
|
}
|
|
@@ -618,27 +668,35 @@
|
|
|
618
668
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
619
669
|
}
|
|
620
670
|
.e-splitter.e-splitter-horizontal {
|
|
621
|
-
-
|
|
622
|
-
|
|
671
|
+
-webkit-box-orient: horizontal;
|
|
672
|
+
-webkit-box-direction: normal;
|
|
673
|
+
-ms-flex-direction: row;
|
|
674
|
+
flex-direction: row;
|
|
623
675
|
}
|
|
624
676
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
|
625
677
|
overflow: hidden;
|
|
626
678
|
}
|
|
627
679
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
|
628
|
-
-
|
|
629
|
-
|
|
680
|
+
-webkit-box-orient: horizontal;
|
|
681
|
+
-webkit-box-direction: reverse;
|
|
682
|
+
-ms-flex-direction: row-reverse;
|
|
683
|
+
flex-direction: row-reverse;
|
|
630
684
|
}
|
|
631
685
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
|
632
|
-
-
|
|
633
|
-
|
|
686
|
+
-webkit-box-orient: horizontal;
|
|
687
|
+
-webkit-box-direction: reverse;
|
|
688
|
+
-ms-flex-direction: row-reverse;
|
|
689
|
+
flex-direction: row-reverse;
|
|
634
690
|
}
|
|
635
691
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
|
636
692
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
|
637
693
|
right: auto;
|
|
638
694
|
}
|
|
639
695
|
.e-splitter.e-splitter-vertical {
|
|
640
|
-
-
|
|
641
|
-
|
|
696
|
+
-webkit-box-orient: vertical;
|
|
697
|
+
-webkit-box-direction: normal;
|
|
698
|
+
-ms-flex-direction: column;
|
|
699
|
+
flex-direction: column;
|
|
642
700
|
}
|
|
643
701
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
|
644
702
|
overflow: hidden;
|
|
@@ -670,14 +728,18 @@
|
|
|
670
728
|
right: auto;
|
|
671
729
|
}
|
|
672
730
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
|
673
|
-
-
|
|
674
|
-
align
|
|
731
|
+
-webkit-box-align: center;
|
|
732
|
+
-ms-flex-align: center;
|
|
733
|
+
align-items: center;
|
|
734
|
+
display: -webkit-box;
|
|
675
735
|
display: -ms-flexbox;
|
|
676
736
|
display: flex;
|
|
677
|
-
-
|
|
678
|
-
flex: 0 0 auto;
|
|
679
|
-
|
|
680
|
-
|
|
737
|
+
-webkit-box-flex: 0;
|
|
738
|
+
-ms-flex: 0 0 auto;
|
|
739
|
+
flex: 0 0 auto;
|
|
740
|
+
-webkit-box-pack: center;
|
|
741
|
+
-ms-flex-pack: center;
|
|
742
|
+
justify-content: center;
|
|
681
743
|
min-width: 1px;
|
|
682
744
|
z-index: 15;
|
|
683
745
|
}
|
|
@@ -697,13 +759,16 @@
|
|
|
697
759
|
z-index: 10;
|
|
698
760
|
}
|
|
699
761
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
|
700
|
-
-
|
|
701
|
-
align
|
|
762
|
+
-webkit-box-align: center;
|
|
763
|
+
-ms-flex-align: center;
|
|
764
|
+
align-items: center;
|
|
765
|
+
display: -webkit-box;
|
|
702
766
|
display: -ms-flexbox;
|
|
703
767
|
display: flex;
|
|
704
768
|
height: 18px;
|
|
705
|
-
-
|
|
706
|
-
|
|
769
|
+
-webkit-box-pack: center;
|
|
770
|
+
-ms-flex-pack: center;
|
|
771
|
+
justify-content: center;
|
|
707
772
|
position: relative;
|
|
708
773
|
width: 1px;
|
|
709
774
|
}
|
|
@@ -716,9 +781,11 @@
|
|
|
716
781
|
right: 3px;
|
|
717
782
|
}
|
|
718
783
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
|
719
|
-
border-image: none;
|
|
784
|
+
-o-border-image: none;
|
|
785
|
+
border-image: none;
|
|
720
786
|
border-width: 1px;
|
|
721
787
|
cursor: pointer;
|
|
788
|
+
display: -webkit-box;
|
|
722
789
|
display: -ms-flexbox;
|
|
723
790
|
display: flex;
|
|
724
791
|
height: 26px;
|
|
@@ -730,16 +797,19 @@
|
|
|
730
797
|
content: "";
|
|
731
798
|
height: 8px;
|
|
732
799
|
position: absolute;
|
|
733
|
-
transform: rotate(0deg);
|
|
800
|
+
-webkit-transform: rotate(0deg);
|
|
801
|
+
transform: rotate(0deg);
|
|
734
802
|
width: 2px;
|
|
735
803
|
}
|
|
736
804
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
|
737
805
|
top: 5px;
|
|
738
|
-
transform-origin: 1px 7px 0;
|
|
806
|
+
-webkit-transform-origin: 1px 7px 0;
|
|
807
|
+
transform-origin: 1px 7px 0;
|
|
739
808
|
}
|
|
740
809
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
|
741
810
|
top: 11px;
|
|
742
|
-
transform-origin: 1px 1px 0;
|
|
811
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
812
|
+
transform-origin: 1px 1px 0;
|
|
743
813
|
}
|
|
744
814
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
|
745
815
|
border-radius: 50%;
|
|
@@ -759,16 +829,20 @@
|
|
|
759
829
|
margin: 0 0 0 3px;
|
|
760
830
|
}
|
|
761
831
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
|
762
|
-
-
|
|
763
|
-
align
|
|
832
|
+
-webkit-box-align: center;
|
|
833
|
+
-ms-flex-align: center;
|
|
834
|
+
align-items: center;
|
|
764
835
|
border-left: none;
|
|
765
836
|
border-right: none;
|
|
837
|
+
display: -webkit-box;
|
|
766
838
|
display: -ms-flexbox;
|
|
767
839
|
display: flex;
|
|
768
|
-
-
|
|
769
|
-
flex: 0 0 auto;
|
|
770
|
-
|
|
771
|
-
|
|
840
|
+
-webkit-box-flex: 0;
|
|
841
|
+
-ms-flex: 0 0 auto;
|
|
842
|
+
flex: 0 0 auto;
|
|
843
|
+
-webkit-box-pack: center;
|
|
844
|
+
-ms-flex-pack: center;
|
|
845
|
+
justify-content: center;
|
|
772
846
|
min-height: 1px;
|
|
773
847
|
}
|
|
774
848
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
|
@@ -787,13 +861,16 @@
|
|
|
787
861
|
z-index: 12;
|
|
788
862
|
}
|
|
789
863
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
|
790
|
-
-
|
|
791
|
-
align
|
|
864
|
+
-webkit-box-align: center;
|
|
865
|
+
-ms-flex-align: center;
|
|
866
|
+
align-items: center;
|
|
867
|
+
display: -webkit-box;
|
|
792
868
|
display: -ms-flexbox;
|
|
793
869
|
display: flex;
|
|
794
870
|
height: 1px;
|
|
795
|
-
-
|
|
796
|
-
|
|
871
|
+
-webkit-box-pack: center;
|
|
872
|
+
-ms-flex-pack: center;
|
|
873
|
+
justify-content: center;
|
|
797
874
|
width: 18px;
|
|
798
875
|
}
|
|
799
876
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
|
@@ -804,9 +881,11 @@
|
|
|
804
881
|
left: 10px;
|
|
805
882
|
}
|
|
806
883
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
807
|
-
border-image: none;
|
|
884
|
+
-o-border-image: none;
|
|
885
|
+
border-image: none;
|
|
808
886
|
border-width: 0;
|
|
809
887
|
cursor: pointer;
|
|
888
|
+
display: -webkit-box;
|
|
810
889
|
display: -ms-flexbox;
|
|
811
890
|
display: flex;
|
|
812
891
|
height: 26px;
|
|
@@ -819,27 +898,32 @@
|
|
|
819
898
|
content: "";
|
|
820
899
|
height: 8px;
|
|
821
900
|
position: absolute;
|
|
822
|
-
transform: rotate(90deg);
|
|
901
|
+
-webkit-transform: rotate(90deg);
|
|
902
|
+
transform: rotate(90deg);
|
|
823
903
|
width: 2px;
|
|
824
904
|
}
|
|
825
905
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
|
826
906
|
top: 3px;
|
|
827
|
-
transform-origin: 2px 7px 0;
|
|
907
|
+
-webkit-transform-origin: 2px 7px 0;
|
|
908
|
+
transform-origin: 2px 7px 0;
|
|
828
909
|
}
|
|
829
910
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
|
830
911
|
left: 11px;
|
|
831
912
|
top: 8px;
|
|
832
|
-
transform-origin: 1px 1px 0;
|
|
913
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
914
|
+
transform-origin: 1px 1px 0;
|
|
833
915
|
}
|
|
834
916
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
|
835
917
|
left: 12px;
|
|
836
918
|
top: 8px;
|
|
837
|
-
transform-origin: 1px 6px 0;
|
|
919
|
+
-webkit-transform-origin: 1px 6px 0;
|
|
920
|
+
transform-origin: 1px 6px 0;
|
|
838
921
|
}
|
|
839
922
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
|
840
923
|
left: 10px;
|
|
841
924
|
top: 12px;
|
|
842
|
-
transform-origin: 1px 2px 0;
|
|
925
|
+
-webkit-transform-origin: 1px 2px 0;
|
|
926
|
+
transform-origin: 1px 2px 0;
|
|
843
927
|
}
|
|
844
928
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
|
845
929
|
border-radius: 50%;
|
|
@@ -879,8 +963,10 @@
|
|
|
879
963
|
}
|
|
880
964
|
|
|
881
965
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
|
882
|
-
-
|
|
883
|
-
|
|
966
|
+
-webkit-box-orient: horizontal;
|
|
967
|
+
-webkit-box-direction: reverse;
|
|
968
|
+
-ms-flex-direction: row-reverse;
|
|
969
|
+
flex-direction: row-reverse;
|
|
884
970
|
}
|
|
885
971
|
|
|
886
972
|
.e-bigger .e-splitter .e-pane {
|
|
@@ -909,8 +995,10 @@
|
|
|
909
995
|
}
|
|
910
996
|
|
|
911
997
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
|
912
|
-
-
|
|
913
|
-
|
|
998
|
+
-webkit-box-orient: vertical;
|
|
999
|
+
-webkit-box-direction: normal;
|
|
1000
|
+
-ms-flex-direction: column;
|
|
1001
|
+
flex-direction: column;
|
|
914
1002
|
}
|
|
915
1003
|
|
|
916
1004
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
@@ -936,13 +1024,16 @@
|
|
|
936
1024
|
background-color: transparent;
|
|
937
1025
|
border-color: transparent;
|
|
938
1026
|
color: transparent;
|
|
1027
|
+
-webkit-transition: background-color 500ms ease-out;
|
|
939
1028
|
transition: background-color 500ms ease-out;
|
|
940
1029
|
}
|
|
941
1030
|
.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 {
|
|
942
1031
|
background-color: #ffd939;
|
|
943
1032
|
opacity: 0;
|
|
944
|
-
transition-duration: 0.3s;
|
|
945
|
-
|
|
1033
|
+
-webkit-transition-duration: 0.3s;
|
|
1034
|
+
transition-duration: 0.3s;
|
|
1035
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1036
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
946
1037
|
}
|
|
947
1038
|
.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 {
|
|
948
1039
|
background: #400074;
|
|
@@ -962,22 +1053,26 @@
|
|
|
962
1053
|
.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 {
|
|
963
1054
|
background-color: #ffd939;
|
|
964
1055
|
opacity: 1;
|
|
965
|
-
transform: rotate(40deg);
|
|
1056
|
+
-webkit-transform: rotate(40deg);
|
|
1057
|
+
transform: rotate(40deg);
|
|
966
1058
|
}
|
|
967
1059
|
.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 {
|
|
968
1060
|
background-color: #ffd939;
|
|
969
1061
|
opacity: 1;
|
|
970
|
-
transform: rotate(-40deg);
|
|
1062
|
+
-webkit-transform: rotate(-40deg);
|
|
1063
|
+
transform: rotate(-40deg);
|
|
971
1064
|
}
|
|
972
1065
|
.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 {
|
|
973
1066
|
background-color: #ffd939;
|
|
974
1067
|
opacity: 1;
|
|
975
|
-
transform: rotate(-40deg);
|
|
1068
|
+
-webkit-transform: rotate(-40deg);
|
|
1069
|
+
transform: rotate(-40deg);
|
|
976
1070
|
}
|
|
977
1071
|
.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 {
|
|
978
1072
|
background-color: #ffd939;
|
|
979
1073
|
opacity: 1;
|
|
980
|
-
transform: rotate(40deg);
|
|
1074
|
+
-webkit-transform: rotate(40deg);
|
|
1075
|
+
transform: rotate(40deg);
|
|
981
1076
|
}
|
|
982
1077
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
983
1078
|
background: #400074;
|
|
@@ -1012,34 +1107,41 @@
|
|
|
1012
1107
|
.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 {
|
|
1013
1108
|
background-color: #ffd939;
|
|
1014
1109
|
opacity: 1;
|
|
1015
|
-
transform: rotate(125deg);
|
|
1110
|
+
-webkit-transform: rotate(125deg);
|
|
1111
|
+
transform: rotate(125deg);
|
|
1016
1112
|
}
|
|
1017
1113
|
.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 {
|
|
1018
1114
|
background-color: #ffd939;
|
|
1019
1115
|
opacity: 1;
|
|
1020
|
-
transform: rotate(50deg);
|
|
1116
|
+
-webkit-transform: rotate(50deg);
|
|
1117
|
+
transform: rotate(50deg);
|
|
1021
1118
|
}
|
|
1022
1119
|
.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 {
|
|
1023
1120
|
background-color: #ffd939;
|
|
1024
1121
|
opacity: 1;
|
|
1025
|
-
transform: rotate(55deg);
|
|
1122
|
+
-webkit-transform: rotate(55deg);
|
|
1123
|
+
transform: rotate(55deg);
|
|
1026
1124
|
}
|
|
1027
1125
|
.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 {
|
|
1028
1126
|
background-color: #ffd939;
|
|
1029
1127
|
opacity: 1;
|
|
1030
|
-
transform: rotate(125deg);
|
|
1128
|
+
-webkit-transform: rotate(125deg);
|
|
1129
|
+
transform: rotate(125deg);
|
|
1031
1130
|
}
|
|
1032
1131
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
1033
1132
|
background-color: transparent;
|
|
1034
1133
|
border-color: transparent;
|
|
1035
1134
|
color: transparent;
|
|
1135
|
+
-webkit-transition: background-color 300ms ease-out;
|
|
1036
1136
|
transition: background-color 300ms ease-out;
|
|
1037
1137
|
}
|
|
1038
1138
|
.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 {
|
|
1039
1139
|
background-color: #ffd939;
|
|
1040
1140
|
opacity: 0;
|
|
1041
|
-
transition-duration: 0.3s;
|
|
1042
|
-
|
|
1141
|
+
-webkit-transition-duration: 0.3s;
|
|
1142
|
+
transition-duration: 0.3s;
|
|
1143
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1144
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1043
1145
|
}
|
|
1044
1146
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
|
1045
1147
|
background: #400074;
|
|
@@ -1053,7 +1155,8 @@
|
|
|
1053
1155
|
pointer-events: none;
|
|
1054
1156
|
}
|
|
1055
1157
|
|
|
1056
|
-
/* stylelint-disable-line no-empty-source */
|
|
1158
|
+
/* stylelint-disable-line no-empty-source */
|
|
1159
|
+
/*! component's theme wise override highcontrast-definitions and variables */
|
|
1057
1160
|
/* stylelint-disable */
|
|
1058
1161
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
|
1059
1162
|
background: #e4e4e4;
|
|
@@ -1061,7 +1164,7 @@
|
|
|
1061
1164
|
height: 100%;
|
|
1062
1165
|
width: 100%;
|
|
1063
1166
|
}
|
|
1064
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
|
1167
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
|
1065
1168
|
border: 1px dotted #757575;
|
|
1066
1169
|
position: absolute;
|
|
1067
1170
|
}
|
|
@@ -1070,10 +1173,21 @@
|
|
|
1070
1173
|
}
|
|
1071
1174
|
.e-dashboardlayout.e-control.e-prevent {
|
|
1072
1175
|
-webkit-user-select: none;
|
|
1176
|
+
-moz-user-select: none;
|
|
1073
1177
|
-ms-user-select: none;
|
|
1074
1178
|
user-select: none;
|
|
1075
1179
|
}
|
|
1180
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
|
1181
|
+
position: relative;
|
|
1182
|
+
}
|
|
1076
1183
|
.e-dashboardlayout.e-control .e-panel {
|
|
1184
|
+
border: 1px #757575 solid;
|
|
1185
|
+
height: 100%;
|
|
1186
|
+
-webkit-user-select: none;
|
|
1187
|
+
-moz-user-select: none;
|
|
1188
|
+
-ms-user-select: none;
|
|
1189
|
+
user-select: none;
|
|
1190
|
+
width: 100%;
|
|
1077
1191
|
border-radius: 2px;
|
|
1078
1192
|
}
|
|
1079
1193
|
.e-dashboardlayout.e-control .e-panel:hover {
|
|
@@ -1085,10 +1199,19 @@
|
|
|
1085
1199
|
.e-dashboardlayout.e-control .e-panel:active {
|
|
1086
1200
|
border: 1px #400074 solid;
|
|
1087
1201
|
}
|
|
1202
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1203
|
+
height: 100%;
|
|
1204
|
+
width: 100%;
|
|
1205
|
+
}
|
|
1206
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1207
|
+
height: inherit;
|
|
1208
|
+
width: inherit;
|
|
1209
|
+
}
|
|
1088
1210
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
|
1089
1211
|
display: none;
|
|
1090
1212
|
}
|
|
1091
1213
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
|
1214
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
|
1092
1215
|
transition: top 0.5s, left 0.5s;
|
|
1093
1216
|
}
|
|
1094
1217
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
@@ -1111,22 +1234,6 @@
|
|
|
1111
1234
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
|
1112
1235
|
float: right;
|
|
1113
1236
|
}
|
|
1114
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1115
|
-
height: 100%;
|
|
1116
|
-
width: 100%;
|
|
1117
|
-
}
|
|
1118
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1119
|
-
height: inherit;
|
|
1120
|
-
width: inherit;
|
|
1121
|
-
}
|
|
1122
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1123
|
-
border: 1px #757575 solid;
|
|
1124
|
-
height: 100%;
|
|
1125
|
-
-webkit-user-select: none;
|
|
1126
|
-
-ms-user-select: none;
|
|
1127
|
-
user-select: none;
|
|
1128
|
-
width: 100%;
|
|
1129
|
-
}
|
|
1130
1237
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
|
1131
1238
|
position: absolute;
|
|
1132
1239
|
-ms-touch-action: none;
|
|
@@ -1163,13 +1270,6 @@
|
|
|
1163
1270
|
font-family: "e-icons";
|
|
1164
1271
|
position: absolute;
|
|
1165
1272
|
}
|
|
1166
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1167
|
-
cursor: move;
|
|
1168
|
-
}
|
|
1169
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1170
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1171
|
-
cursor: default;
|
|
1172
|
-
}
|
|
1173
1273
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
|
1174
1274
|
cursor: move;
|
|
1175
1275
|
z-index: 1111 !important;
|
|
@@ -1177,6 +1277,19 @@
|
|
|
1177
1277
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
|
1178
1278
|
float: left;
|
|
1179
1279
|
}
|
|
1280
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1281
|
+
font-size: 14px;
|
|
1282
|
+
font-weight: 500;
|
|
1283
|
+
height: 30px;
|
|
1284
|
+
padding: 0 12px;
|
|
1285
|
+
}
|
|
1286
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1287
|
+
cursor: move;
|
|
1288
|
+
}
|
|
1289
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1290
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1291
|
+
cursor: default;
|
|
1292
|
+
}
|
|
1180
1293
|
.e-dashboardlayout.e-control .e-holder {
|
|
1181
1294
|
background: #400074;
|
|
1182
1295
|
border: 2px #400074 dotted;
|
|
@@ -1185,14 +1298,9 @@
|
|
|
1185
1298
|
border-radius: 2px;
|
|
1186
1299
|
}
|
|
1187
1300
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
|
1301
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
|
1188
1302
|
transition: top 0.3s, left 0.3s;
|
|
1189
1303
|
}
|
|
1190
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1191
|
-
font-size: 14px;
|
|
1192
|
-
font-weight: 500;
|
|
1193
|
-
height: 30px;
|
|
1194
|
-
padding: 0 12px;
|
|
1195
|
-
}
|
|
1196
1304
|
|
|
1197
1305
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
1198
1306
|
font-size: 14px;
|
|
@@ -1211,17 +1319,10 @@
|
|
|
1211
1319
|
}
|
|
1212
1320
|
.e-dashboardlayout.e-control .e-panel {
|
|
1213
1321
|
background: #fff;
|
|
1214
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1219
|
-
color: #000;
|
|
1220
|
-
}
|
|
1221
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1222
|
-
background: #fff;
|
|
1223
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1224
|
-
box-sizing: border-box;
|
|
1322
|
+
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1323
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1324
|
+
-webkit-box-sizing: border-box;
|
|
1325
|
+
box-sizing: border-box;
|
|
1225
1326
|
position: absolute;
|
|
1226
1327
|
}
|
|
1227
1328
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
@@ -1300,12 +1401,15 @@
|
|
|
1300
1401
|
.e-timeline [class^="e-dot "]::before,
|
|
1301
1402
|
.e-timeline .e-dot-item,
|
|
1302
1403
|
.e-timeline .e-dot {
|
|
1404
|
+
display: -webkit-box;
|
|
1303
1405
|
display: -ms-flexbox;
|
|
1304
1406
|
display: flex;
|
|
1305
|
-
-
|
|
1306
|
-
align
|
|
1307
|
-
|
|
1308
|
-
|
|
1407
|
+
-webkit-box-align: center;
|
|
1408
|
+
-ms-flex-align: center;
|
|
1409
|
+
align-items: center;
|
|
1410
|
+
-webkit-box-pack: center;
|
|
1411
|
+
-ms-flex-pack: center;
|
|
1412
|
+
justify-content: center;
|
|
1309
1413
|
}
|
|
1310
1414
|
.e-timeline [class^="e-dot "]::before {
|
|
1311
1415
|
min-width: 32px;
|
|
@@ -1313,10 +1417,13 @@
|
|
|
1313
1417
|
border-radius: var(--dot-radius);
|
|
1314
1418
|
}
|
|
1315
1419
|
.e-timeline .e-timeline-items {
|
|
1420
|
+
display: -webkit-inline-box;
|
|
1316
1421
|
display: -ms-inline-flexbox;
|
|
1317
1422
|
display: inline-flex;
|
|
1318
|
-
-
|
|
1319
|
-
|
|
1423
|
+
-webkit-box-orient: vertical;
|
|
1424
|
+
-webkit-box-direction: normal;
|
|
1425
|
+
-ms-flex-direction: column;
|
|
1426
|
+
flex-direction: column;
|
|
1320
1427
|
list-style: none;
|
|
1321
1428
|
-ms-flex-wrap: nowrap;
|
|
1322
1429
|
flex-wrap: nowrap;
|
|
@@ -1325,13 +1432,17 @@
|
|
|
1325
1432
|
height: inherit;
|
|
1326
1433
|
}
|
|
1327
1434
|
.e-timeline .e-timeline-item {
|
|
1435
|
+
display: -webkit-box;
|
|
1328
1436
|
display: -ms-flexbox;
|
|
1329
1437
|
display: flex;
|
|
1330
|
-
-
|
|
1331
|
-
|
|
1438
|
+
-webkit-box-orient: horizontal;
|
|
1439
|
+
-webkit-box-direction: normal;
|
|
1440
|
+
-ms-flex-direction: row;
|
|
1441
|
+
flex-direction: row;
|
|
1332
1442
|
position: relative;
|
|
1333
|
-
-
|
|
1334
|
-
align
|
|
1443
|
+
-webkit-box-align: start;
|
|
1444
|
+
-ms-flex-align: start;
|
|
1445
|
+
align-items: flex-start;
|
|
1335
1446
|
width: inherit;
|
|
1336
1447
|
height: inherit;
|
|
1337
1448
|
}
|
|
@@ -1351,8 +1462,9 @@
|
|
|
1351
1462
|
}
|
|
1352
1463
|
.e-timeline .e-dot-item {
|
|
1353
1464
|
position: relative;
|
|
1354
|
-
-
|
|
1355
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1465
|
+
-webkit-box-flex: 0;
|
|
1466
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
|
1467
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1356
1468
|
z-index: 1000;
|
|
1357
1469
|
}
|
|
1358
1470
|
.e-timeline .e-dot {
|
|
@@ -1368,12 +1480,12 @@
|
|
|
1368
1480
|
}
|
|
1369
1481
|
.e-timeline .e-opposite-content,
|
|
1370
1482
|
.e-timeline .e-content {
|
|
1371
|
-
-
|
|
1372
|
-
flex: 1 1 50%;
|
|
1483
|
+
-webkit-box-flex: 1;
|
|
1484
|
+
-ms-flex: 1 1 50%;
|
|
1485
|
+
flex: 1 1 50%;
|
|
1373
1486
|
}
|
|
1374
1487
|
.e-timeline .e-opposite-content {
|
|
1375
1488
|
font-size: 12px;
|
|
1376
|
-
text-align: right;
|
|
1377
1489
|
}
|
|
1378
1490
|
.e-timeline .e-content {
|
|
1379
1491
|
text-align: left;
|
|
@@ -1387,12 +1499,16 @@
|
|
|
1387
1499
|
bottom: calc(var(--dot-size) * 2);
|
|
1388
1500
|
}
|
|
1389
1501
|
.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) {
|
|
1390
|
-
-
|
|
1391
|
-
|
|
1502
|
+
-webkit-box-orient: horizontal;
|
|
1503
|
+
-webkit-box-direction: reverse;
|
|
1504
|
+
-ms-flex-direction: row-reverse;
|
|
1505
|
+
flex-direction: row-reverse;
|
|
1392
1506
|
}
|
|
1393
1507
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
|
1394
|
-
-
|
|
1395
|
-
|
|
1508
|
+
-webkit-box-orient: vertical;
|
|
1509
|
+
-webkit-box-direction: reverse;
|
|
1510
|
+
-ms-flex-direction: column-reverse;
|
|
1511
|
+
flex-direction: column-reverse;
|
|
1396
1512
|
}
|
|
1397
1513
|
.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 {
|
|
1398
1514
|
text-align: left;
|
|
@@ -1400,6 +1516,19 @@
|
|
|
1400
1516
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
|
1401
1517
|
content: unset;
|
|
1402
1518
|
}
|
|
1519
|
+
.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 {
|
|
1520
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1521
|
+
right: auto;
|
|
1522
|
+
}
|
|
1523
|
+
.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 {
|
|
1524
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1525
|
+
left: auto;
|
|
1526
|
+
}
|
|
1527
|
+
.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 {
|
|
1528
|
+
-webkit-box-flex: 0;
|
|
1529
|
+
-ms-flex: 0;
|
|
1530
|
+
flex: 0;
|
|
1531
|
+
}
|
|
1403
1532
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
|
1404
1533
|
content: unset;
|
|
1405
1534
|
}
|
|
@@ -1417,13 +1546,27 @@
|
|
|
1417
1546
|
width: calc(var(--dot-size) * 2);
|
|
1418
1547
|
}
|
|
1419
1548
|
.e-timeline.e-horizontal .e-timeline-items {
|
|
1549
|
+
display: -webkit-inline-box;
|
|
1420
1550
|
display: -ms-inline-flexbox;
|
|
1421
1551
|
display: inline-flex;
|
|
1422
|
-
-
|
|
1423
|
-
|
|
1552
|
+
-webkit-box-orient: horizontal;
|
|
1553
|
+
-webkit-box-direction: normal;
|
|
1554
|
+
-ms-flex-direction: row;
|
|
1555
|
+
flex-direction: row;
|
|
1424
1556
|
}
|
|
1425
1557
|
.e-timeline.e-horizontal .e-timeline-item {
|
|
1426
1558
|
height: auto;
|
|
1559
|
+
-webkit-box-orient: vertical;
|
|
1560
|
+
-webkit-box-direction: normal;
|
|
1561
|
+
-ms-flex-direction: column;
|
|
1562
|
+
flex-direction: column;
|
|
1563
|
+
-webkit-box-align: center;
|
|
1564
|
+
-ms-flex-align: center;
|
|
1565
|
+
align-items: center;
|
|
1566
|
+
}
|
|
1567
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
|
1568
|
+
left: calc(50% - var(--connector-size));
|
|
1569
|
+
right: auto;
|
|
1427
1570
|
}
|
|
1428
1571
|
.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 {
|
|
1429
1572
|
right: calc(50% - var(--connector-size));
|
|
@@ -1432,32 +1575,33 @@
|
|
|
1432
1575
|
.e-timeline.e-horizontal .e-dot-item {
|
|
1433
1576
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
|
1434
1577
|
}
|
|
1435
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
|
1436
|
-
-ms-flex-direction: column;
|
|
1437
|
-
flex-direction: column;
|
|
1438
|
-
-ms-flex-align: center;
|
|
1439
|
-
align-items: center;
|
|
1440
|
-
}
|
|
1441
1578
|
.e-timeline.e-horizontal .e-opposite-content,
|
|
1442
1579
|
.e-timeline.e-horizontal .e-content {
|
|
1580
|
+
display: -webkit-box;
|
|
1443
1581
|
display: -ms-flexbox;
|
|
1444
1582
|
display: flex;
|
|
1445
1583
|
}
|
|
1446
1584
|
.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 {
|
|
1447
|
-
-
|
|
1448
|
-
align
|
|
1585
|
+
-webkit-box-align: end;
|
|
1586
|
+
-ms-flex-align: end;
|
|
1587
|
+
align-items: flex-end;
|
|
1449
1588
|
}
|
|
1450
1589
|
.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 {
|
|
1451
|
-
-
|
|
1452
|
-
align
|
|
1590
|
+
-webkit-box-align: start;
|
|
1591
|
+
-ms-flex-align: start;
|
|
1592
|
+
align-items: flex-start;
|
|
1453
1593
|
}
|
|
1454
1594
|
.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) {
|
|
1455
|
-
-
|
|
1456
|
-
|
|
1595
|
+
-webkit-box-orient: vertical;
|
|
1596
|
+
-webkit-box-direction: reverse;
|
|
1597
|
+
-ms-flex-direction: column-reverse;
|
|
1598
|
+
flex-direction: column-reverse;
|
|
1457
1599
|
}
|
|
1458
1600
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
|
1459
|
-
-
|
|
1460
|
-
|
|
1601
|
+
-webkit-box-orient: horizontal;
|
|
1602
|
+
-webkit-box-direction: reverse;
|
|
1603
|
+
-ms-flex-direction: row-reverse;
|
|
1604
|
+
flex-direction: row-reverse;
|
|
1461
1605
|
}
|
|
1462
1606
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
|
1463
1607
|
width: 100%;
|
|
@@ -1465,10 +1609,12 @@
|
|
|
1465
1609
|
top: calc(50% - var(--connector-size));
|
|
1466
1610
|
}
|
|
1467
1611
|
.e-timeline.e-horizontal .e-opposite-content {
|
|
1612
|
+
display: -webkit-box;
|
|
1468
1613
|
display: -ms-flexbox;
|
|
1469
1614
|
display: flex;
|
|
1470
|
-
-
|
|
1471
|
-
align
|
|
1615
|
+
-webkit-box-align: end;
|
|
1616
|
+
-ms-flex-align: end;
|
|
1617
|
+
align-items: flex-end;
|
|
1472
1618
|
text-align: left;
|
|
1473
1619
|
padding: 0;
|
|
1474
1620
|
}
|
|
@@ -1487,8 +1633,23 @@
|
|
|
1487
1633
|
}
|
|
1488
1634
|
.e-bigger.e-timeline .e-dot-item,
|
|
1489
1635
|
.e-bigger .e-timeline .e-dot-item {
|
|
1490
|
-
-
|
|
1491
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1636
|
+
-webkit-box-flex: 0;
|
|
1637
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
|
1638
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1639
|
+
}
|
|
1640
|
+
.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,
|
|
1641
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
|
1642
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1643
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
|
1644
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
|
1645
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1646
|
+
}
|
|
1647
|
+
.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,
|
|
1648
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
|
1649
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1650
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
|
1651
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
|
1652
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1492
1653
|
}
|
|
1493
1654
|
.e-bigger.e-timeline .e-dot,
|
|
1494
1655
|
.e-bigger .e-timeline .e-dot {
|