@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/fabric.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: #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;
|
|
@@ -45,7 +48,6 @@
|
|
|
45
48
|
}
|
|
46
49
|
|
|
47
50
|
/*! component's theme wise override material-definitions and variables */
|
|
48
|
-
/*! card layout */
|
|
49
51
|
.e-bigger .e-card,
|
|
50
52
|
.e-bigger.e-card {
|
|
51
53
|
line-height: 45px;
|
|
@@ -184,15 +186,20 @@
|
|
|
184
186
|
|
|
185
187
|
.e-card {
|
|
186
188
|
border-radius: 4px;
|
|
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: 36px;
|
|
197
204
|
min-height: 36px;
|
|
198
205
|
overflow: hidden;
|
|
@@ -211,11 +218,13 @@
|
|
|
211
218
|
padding: 0;
|
|
212
219
|
}
|
|
213
220
|
.e-card > * {
|
|
214
|
-
-
|
|
215
|
-
|
|
221
|
+
-webkit-box-pack: center;
|
|
222
|
+
-ms-flex-pack: center;
|
|
223
|
+
justify-content: center;
|
|
216
224
|
}
|
|
217
225
|
.e-card > .e-card-header-title {
|
|
218
|
-
box-sizing: border-box;
|
|
226
|
+
-webkit-box-sizing: border-box;
|
|
227
|
+
box-sizing: border-box;
|
|
219
228
|
font-size: 15px;
|
|
220
229
|
line-height: normal;
|
|
221
230
|
padding: 12px;
|
|
@@ -249,22 +258,30 @@
|
|
|
249
258
|
font-size: 14px;
|
|
250
259
|
}
|
|
251
260
|
.e-card .e-card-stacked {
|
|
261
|
+
display: -webkit-box;
|
|
252
262
|
display: -ms-flexbox;
|
|
253
263
|
display: flex;
|
|
254
|
-
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
264
|
+
-webkit-box-orient: vertical;
|
|
265
|
+
-webkit-box-direction: normal;
|
|
266
|
+
-ms-flex-direction: column;
|
|
267
|
+
flex-direction: column;
|
|
268
|
+
-webkit-box-pack: center;
|
|
269
|
+
-ms-flex-pack: center;
|
|
270
|
+
justify-content: center;
|
|
258
271
|
overflow: hidden;
|
|
259
272
|
}
|
|
260
273
|
.e-card.e-card-horizontal,
|
|
261
274
|
.e-card .e-card-horizontal {
|
|
275
|
+
display: -webkit-box;
|
|
262
276
|
display: -ms-flexbox;
|
|
263
277
|
display: flex;
|
|
264
|
-
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
278
|
+
-webkit-box-orient: horizontal;
|
|
279
|
+
-webkit-box-direction: normal;
|
|
280
|
+
-ms-flex-direction: row;
|
|
281
|
+
flex-direction: row;
|
|
282
|
+
-webkit-box-pack: center;
|
|
283
|
+
-ms-flex-pack: center;
|
|
284
|
+
justify-content: center;
|
|
268
285
|
}
|
|
269
286
|
.e-card.e-card-horizontal .e-card-image,
|
|
270
287
|
.e-card.e-card-horizontal img,
|
|
@@ -277,21 +294,27 @@
|
|
|
277
294
|
padding: 2px;
|
|
278
295
|
}
|
|
279
296
|
.e-card.e-card-horizontal > * {
|
|
280
|
-
-
|
|
281
|
-
flex: 1;
|
|
297
|
+
-webkit-box-flex: 1;
|
|
298
|
+
-ms-flex: 1;
|
|
299
|
+
flex: 1;
|
|
282
300
|
}
|
|
283
301
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
302
|
+
display: -webkit-box;
|
|
284
303
|
display: -ms-flexbox;
|
|
285
304
|
display: flex;
|
|
286
|
-
-
|
|
287
|
-
flex: 1;
|
|
288
|
-
|
|
289
|
-
|
|
305
|
+
-webkit-box-flex: 1;
|
|
306
|
+
-ms-flex: 1;
|
|
307
|
+
flex: 1;
|
|
308
|
+
-webkit-box-orient: vertical;
|
|
309
|
+
-webkit-box-direction: normal;
|
|
310
|
+
-ms-flex-direction: column;
|
|
311
|
+
flex-direction: column;
|
|
290
312
|
overflow: hidden;
|
|
291
313
|
}
|
|
292
314
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
293
|
-
-
|
|
294
|
-
flex-
|
|
315
|
+
-webkit-box-flex: 1;
|
|
316
|
+
-ms-flex-positive: 1;
|
|
317
|
+
flex-grow: 1;
|
|
295
318
|
}
|
|
296
319
|
.e-card .e-card-separator {
|
|
297
320
|
display: block;
|
|
@@ -300,13 +323,18 @@
|
|
|
300
323
|
border-radius: 50%;
|
|
301
324
|
}
|
|
302
325
|
.e-card .e-card-header {
|
|
303
|
-
box-sizing: border-box;
|
|
326
|
+
-webkit-box-sizing: border-box;
|
|
327
|
+
box-sizing: border-box;
|
|
328
|
+
display: -webkit-box;
|
|
304
329
|
display: -ms-flexbox;
|
|
305
330
|
display: flex;
|
|
306
|
-
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
331
|
+
-webkit-box-orient: horizontal;
|
|
332
|
+
-webkit-box-direction: normal;
|
|
333
|
+
-ms-flex-direction: row;
|
|
334
|
+
flex-direction: row;
|
|
335
|
+
-webkit-box-pack: center;
|
|
336
|
+
-ms-flex-pack: center;
|
|
337
|
+
justify-content: center;
|
|
310
338
|
line-height: normal;
|
|
311
339
|
min-height: 22.5px;
|
|
312
340
|
padding: 12px;
|
|
@@ -317,24 +345,30 @@
|
|
|
317
345
|
padding-right: 0;
|
|
318
346
|
}
|
|
319
347
|
.e-card .e-card-header .e-card-actions {
|
|
320
|
-
-
|
|
321
|
-
|
|
348
|
+
-webkit-box-pack: start;
|
|
349
|
+
-ms-flex-pack: start;
|
|
350
|
+
justify-content: flex-start;
|
|
322
351
|
}
|
|
323
352
|
.e-card .e-card-header .e-card-header-image {
|
|
324
353
|
-ms-flex-item-align: center;
|
|
325
354
|
align-self: center;
|
|
355
|
+
display: -webkit-box;
|
|
326
356
|
display: -ms-flexbox;
|
|
327
357
|
display: flex;
|
|
328
358
|
}
|
|
329
359
|
.e-card .e-card-header .e-card-header-caption {
|
|
330
360
|
-ms-flex-item-align: center;
|
|
331
361
|
align-self: center;
|
|
362
|
+
display: -webkit-box;
|
|
332
363
|
display: -ms-flexbox;
|
|
333
364
|
display: flex;
|
|
334
|
-
-
|
|
335
|
-
flex: 1;
|
|
336
|
-
|
|
337
|
-
|
|
365
|
+
-webkit-box-flex: 1;
|
|
366
|
+
-ms-flex: 1;
|
|
367
|
+
flex: 1;
|
|
368
|
+
-webkit-box-orient: vertical;
|
|
369
|
+
-webkit-box-direction: normal;
|
|
370
|
+
-ms-flex-direction: column;
|
|
371
|
+
flex-direction: column;
|
|
338
372
|
overflow: hidden;
|
|
339
373
|
padding: 0 0 0 7.5px;
|
|
340
374
|
}
|
|
@@ -377,7 +411,8 @@
|
|
|
377
411
|
}
|
|
378
412
|
.e-card .e-card-image .e-card-title {
|
|
379
413
|
bottom: 0;
|
|
380
|
-
box-sizing: border-box;
|
|
414
|
+
-webkit-box-sizing: border-box;
|
|
415
|
+
box-sizing: border-box;
|
|
381
416
|
font-size: 17px;
|
|
382
417
|
line-height: 27px;
|
|
383
418
|
min-height: 27px;
|
|
@@ -398,28 +433,34 @@
|
|
|
398
433
|
text-align: right;
|
|
399
434
|
}
|
|
400
435
|
.e-card .e-card-actions {
|
|
401
|
-
box-sizing: border-box;
|
|
436
|
+
-webkit-box-sizing: border-box;
|
|
437
|
+
box-sizing: border-box;
|
|
402
438
|
display: inline-block;
|
|
403
|
-
-
|
|
404
|
-
|
|
439
|
+
-webkit-box-pack: start;
|
|
440
|
+
-ms-flex-pack: start;
|
|
441
|
+
justify-content: flex-start;
|
|
405
442
|
padding: 6px;
|
|
406
443
|
}
|
|
407
444
|
.e-card .e-card-actions.e-card-vertical {
|
|
445
|
+
display: -webkit-box;
|
|
408
446
|
display: -ms-flexbox;
|
|
409
447
|
display: flex;
|
|
410
|
-
-
|
|
411
|
-
|
|
448
|
+
-webkit-box-orient: vertical;
|
|
449
|
+
-webkit-box-direction: normal;
|
|
450
|
+
-ms-flex-direction: column;
|
|
451
|
+
flex-direction: column;
|
|
412
452
|
padding: 12px;
|
|
413
453
|
}
|
|
414
454
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
|
415
455
|
.e-card .e-card-actions.e-card-vertical a {
|
|
416
456
|
-ms-flex-item-align: initial;
|
|
417
|
-
-ms-grid-row-align: initial;
|
|
418
457
|
align-self: initial;
|
|
419
|
-
box-sizing: border-box;
|
|
458
|
+
-webkit-box-sizing: border-box;
|
|
459
|
+
box-sizing: border-box;
|
|
420
460
|
display: inline-block;
|
|
421
|
-
-
|
|
422
|
-
|
|
461
|
+
-webkit-box-pack: center;
|
|
462
|
+
-ms-flex-pack: center;
|
|
463
|
+
justify-content: center;
|
|
423
464
|
margin: 0 0 6px 0;
|
|
424
465
|
text-align: center;
|
|
425
466
|
width: 100%;
|
|
@@ -430,11 +471,13 @@
|
|
|
430
471
|
}
|
|
431
472
|
.e-card .e-card-actions button,
|
|
432
473
|
.e-card .e-card-actions a {
|
|
433
|
-
-
|
|
434
|
-
align
|
|
474
|
+
-webkit-box-align: center;
|
|
475
|
+
-ms-flex-align: center;
|
|
476
|
+
align-items: center;
|
|
435
477
|
-ms-flex-item-align: center;
|
|
436
478
|
align-self: center;
|
|
437
479
|
cursor: pointer;
|
|
480
|
+
display: -webkit-inline-box;
|
|
438
481
|
display: -ms-inline-flexbox;
|
|
439
482
|
display: inline-flex;
|
|
440
483
|
overflow: hidden;
|
|
@@ -443,6 +486,7 @@
|
|
|
443
486
|
}
|
|
444
487
|
.e-card .e-card-actions .e-card-btn span,
|
|
445
488
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
|
489
|
+
display: -webkit-box;
|
|
446
490
|
display: -ms-flexbox;
|
|
447
491
|
display: flex;
|
|
448
492
|
font-size: 14px;
|
|
@@ -453,10 +497,12 @@
|
|
|
453
497
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
|
454
498
|
-ms-flex-item-align: center;
|
|
455
499
|
align-self: center;
|
|
500
|
+
display: -webkit-box;
|
|
456
501
|
display: -ms-flexbox;
|
|
457
502
|
display: flex;
|
|
458
|
-
-
|
|
459
|
-
|
|
503
|
+
-webkit-box-pack: center;
|
|
504
|
+
-ms-flex-pack: center;
|
|
505
|
+
justify-content: center;
|
|
460
506
|
width: inherit;
|
|
461
507
|
}
|
|
462
508
|
.e-card .e-card-actions .e-card-btn > * {
|
|
@@ -501,13 +547,13 @@
|
|
|
501
547
|
text-overflow: ellipsis;
|
|
502
548
|
}
|
|
503
549
|
|
|
504
|
-
/*! card theme */
|
|
505
550
|
/* stylelint-disable property-no-vendor-prefix */
|
|
506
551
|
.e-card {
|
|
507
552
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
508
553
|
background: #fff;
|
|
509
554
|
border: 1px solid #eaeaea;
|
|
510
|
-
box-shadow: none;
|
|
555
|
+
-webkit-box-shadow: none;
|
|
556
|
+
box-shadow: none;
|
|
511
557
|
color: #333;
|
|
512
558
|
outline: none;
|
|
513
559
|
}
|
|
@@ -581,7 +627,8 @@
|
|
|
581
627
|
content: "\e984";
|
|
582
628
|
font-family: "e-icons";
|
|
583
629
|
font-size: 14px;
|
|
584
|
-
transform: rotate(90deg);
|
|
630
|
+
-webkit-transform: rotate(90deg);
|
|
631
|
+
transform: rotate(90deg);
|
|
585
632
|
}
|
|
586
633
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
|
|
587
634
|
content: "";
|
|
@@ -596,6 +643,7 @@
|
|
|
596
643
|
|
|
597
644
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
598
645
|
border-width: 1px;
|
|
646
|
+
display: -webkit-box;
|
|
599
647
|
display: -ms-flexbox;
|
|
600
648
|
display: flex;
|
|
601
649
|
overflow: hidden;
|
|
@@ -605,8 +653,9 @@
|
|
|
605
653
|
width: 100%;
|
|
606
654
|
}
|
|
607
655
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
|
608
|
-
-
|
|
609
|
-
flex: 1 1 auto;
|
|
656
|
+
-webkit-box-flex: 1;
|
|
657
|
+
-ms-flex: 1 1 auto;
|
|
658
|
+
flex: 1 1 auto;
|
|
610
659
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
611
660
|
font-size: 13px;
|
|
612
661
|
font-weight: normal;
|
|
@@ -615,8 +664,9 @@
|
|
|
615
664
|
overflow: auto;
|
|
616
665
|
}
|
|
617
666
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
|
618
|
-
-
|
|
619
|
-
flex-
|
|
667
|
+
-webkit-box-flex: 0;
|
|
668
|
+
-ms-flex-positive: 0;
|
|
669
|
+
flex-grow: 0;
|
|
620
670
|
-ms-flex-negative: 0;
|
|
621
671
|
flex-shrink: 0;
|
|
622
672
|
}
|
|
@@ -629,27 +679,35 @@
|
|
|
629
679
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
630
680
|
}
|
|
631
681
|
.e-splitter.e-splitter-horizontal {
|
|
632
|
-
-
|
|
633
|
-
|
|
682
|
+
-webkit-box-orient: horizontal;
|
|
683
|
+
-webkit-box-direction: normal;
|
|
684
|
+
-ms-flex-direction: row;
|
|
685
|
+
flex-direction: row;
|
|
634
686
|
}
|
|
635
687
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
|
636
688
|
overflow: hidden;
|
|
637
689
|
}
|
|
638
690
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
|
639
|
-
-
|
|
640
|
-
|
|
691
|
+
-webkit-box-orient: horizontal;
|
|
692
|
+
-webkit-box-direction: reverse;
|
|
693
|
+
-ms-flex-direction: row-reverse;
|
|
694
|
+
flex-direction: row-reverse;
|
|
641
695
|
}
|
|
642
696
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
|
643
|
-
-
|
|
644
|
-
|
|
697
|
+
-webkit-box-orient: horizontal;
|
|
698
|
+
-webkit-box-direction: reverse;
|
|
699
|
+
-ms-flex-direction: row-reverse;
|
|
700
|
+
flex-direction: row-reverse;
|
|
645
701
|
}
|
|
646
702
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
|
647
703
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
|
648
704
|
right: auto;
|
|
649
705
|
}
|
|
650
706
|
.e-splitter.e-splitter-vertical {
|
|
651
|
-
-
|
|
652
|
-
|
|
707
|
+
-webkit-box-orient: vertical;
|
|
708
|
+
-webkit-box-direction: normal;
|
|
709
|
+
-ms-flex-direction: column;
|
|
710
|
+
flex-direction: column;
|
|
653
711
|
}
|
|
654
712
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
|
655
713
|
overflow: hidden;
|
|
@@ -681,14 +739,18 @@
|
|
|
681
739
|
right: auto;
|
|
682
740
|
}
|
|
683
741
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
|
684
|
-
-
|
|
685
|
-
align
|
|
742
|
+
-webkit-box-align: center;
|
|
743
|
+
-ms-flex-align: center;
|
|
744
|
+
align-items: center;
|
|
745
|
+
display: -webkit-box;
|
|
686
746
|
display: -ms-flexbox;
|
|
687
747
|
display: flex;
|
|
688
|
-
-
|
|
689
|
-
flex: 0 0 auto;
|
|
690
|
-
|
|
691
|
-
|
|
748
|
+
-webkit-box-flex: 0;
|
|
749
|
+
-ms-flex: 0 0 auto;
|
|
750
|
+
flex: 0 0 auto;
|
|
751
|
+
-webkit-box-pack: center;
|
|
752
|
+
-ms-flex-pack: center;
|
|
753
|
+
justify-content: center;
|
|
692
754
|
min-width: 1px;
|
|
693
755
|
z-index: 15;
|
|
694
756
|
}
|
|
@@ -708,13 +770,16 @@
|
|
|
708
770
|
z-index: 10;
|
|
709
771
|
}
|
|
710
772
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
|
711
|
-
-
|
|
712
|
-
align
|
|
773
|
+
-webkit-box-align: center;
|
|
774
|
+
-ms-flex-align: center;
|
|
775
|
+
align-items: center;
|
|
776
|
+
display: -webkit-box;
|
|
713
777
|
display: -ms-flexbox;
|
|
714
778
|
display: flex;
|
|
715
779
|
height: 18px;
|
|
716
|
-
-
|
|
717
|
-
|
|
780
|
+
-webkit-box-pack: center;
|
|
781
|
+
-ms-flex-pack: center;
|
|
782
|
+
justify-content: center;
|
|
718
783
|
position: relative;
|
|
719
784
|
width: 1px;
|
|
720
785
|
}
|
|
@@ -727,9 +792,11 @@
|
|
|
727
792
|
right: 3px;
|
|
728
793
|
}
|
|
729
794
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
|
730
|
-
border-image: none;
|
|
795
|
+
-o-border-image: none;
|
|
796
|
+
border-image: none;
|
|
731
797
|
border-width: 1px;
|
|
732
798
|
cursor: pointer;
|
|
799
|
+
display: -webkit-box;
|
|
733
800
|
display: -ms-flexbox;
|
|
734
801
|
display: flex;
|
|
735
802
|
height: 26px;
|
|
@@ -741,16 +808,19 @@
|
|
|
741
808
|
content: "";
|
|
742
809
|
height: 8px;
|
|
743
810
|
position: absolute;
|
|
744
|
-
transform: rotate(0deg);
|
|
811
|
+
-webkit-transform: rotate(0deg);
|
|
812
|
+
transform: rotate(0deg);
|
|
745
813
|
width: 2px;
|
|
746
814
|
}
|
|
747
815
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
|
748
816
|
top: 5px;
|
|
749
|
-
transform-origin: 1px 7px 0;
|
|
817
|
+
-webkit-transform-origin: 1px 7px 0;
|
|
818
|
+
transform-origin: 1px 7px 0;
|
|
750
819
|
}
|
|
751
820
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
|
752
821
|
top: 11px;
|
|
753
|
-
transform-origin: 1px 1px 0;
|
|
822
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
823
|
+
transform-origin: 1px 1px 0;
|
|
754
824
|
}
|
|
755
825
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
|
756
826
|
border-radius: 50%;
|
|
@@ -770,16 +840,20 @@
|
|
|
770
840
|
margin: 0 0 0 3px;
|
|
771
841
|
}
|
|
772
842
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
|
773
|
-
-
|
|
774
|
-
align
|
|
843
|
+
-webkit-box-align: center;
|
|
844
|
+
-ms-flex-align: center;
|
|
845
|
+
align-items: center;
|
|
775
846
|
border-left: none;
|
|
776
847
|
border-right: none;
|
|
848
|
+
display: -webkit-box;
|
|
777
849
|
display: -ms-flexbox;
|
|
778
850
|
display: flex;
|
|
779
|
-
-
|
|
780
|
-
flex: 0 0 auto;
|
|
781
|
-
|
|
782
|
-
|
|
851
|
+
-webkit-box-flex: 0;
|
|
852
|
+
-ms-flex: 0 0 auto;
|
|
853
|
+
flex: 0 0 auto;
|
|
854
|
+
-webkit-box-pack: center;
|
|
855
|
+
-ms-flex-pack: center;
|
|
856
|
+
justify-content: center;
|
|
783
857
|
min-height: 1px;
|
|
784
858
|
}
|
|
785
859
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
|
@@ -798,13 +872,16 @@
|
|
|
798
872
|
z-index: 12;
|
|
799
873
|
}
|
|
800
874
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
|
801
|
-
-
|
|
802
|
-
align
|
|
875
|
+
-webkit-box-align: center;
|
|
876
|
+
-ms-flex-align: center;
|
|
877
|
+
align-items: center;
|
|
878
|
+
display: -webkit-box;
|
|
803
879
|
display: -ms-flexbox;
|
|
804
880
|
display: flex;
|
|
805
881
|
height: 1px;
|
|
806
|
-
-
|
|
807
|
-
|
|
882
|
+
-webkit-box-pack: center;
|
|
883
|
+
-ms-flex-pack: center;
|
|
884
|
+
justify-content: center;
|
|
808
885
|
width: 18px;
|
|
809
886
|
}
|
|
810
887
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
|
@@ -815,9 +892,11 @@
|
|
|
815
892
|
left: 10px;
|
|
816
893
|
}
|
|
817
894
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
818
|
-
border-image: none;
|
|
895
|
+
-o-border-image: none;
|
|
896
|
+
border-image: none;
|
|
819
897
|
border-width: 0;
|
|
820
898
|
cursor: pointer;
|
|
899
|
+
display: -webkit-box;
|
|
821
900
|
display: -ms-flexbox;
|
|
822
901
|
display: flex;
|
|
823
902
|
height: 26px;
|
|
@@ -830,27 +909,32 @@
|
|
|
830
909
|
content: "";
|
|
831
910
|
height: 8px;
|
|
832
911
|
position: absolute;
|
|
833
|
-
transform: rotate(90deg);
|
|
912
|
+
-webkit-transform: rotate(90deg);
|
|
913
|
+
transform: rotate(90deg);
|
|
834
914
|
width: 2px;
|
|
835
915
|
}
|
|
836
916
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
|
837
917
|
top: 3px;
|
|
838
|
-
transform-origin: 2px 7px 0;
|
|
918
|
+
-webkit-transform-origin: 2px 7px 0;
|
|
919
|
+
transform-origin: 2px 7px 0;
|
|
839
920
|
}
|
|
840
921
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
|
841
922
|
left: 11px;
|
|
842
923
|
top: 8px;
|
|
843
|
-
transform-origin: 1px 1px 0;
|
|
924
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
925
|
+
transform-origin: 1px 1px 0;
|
|
844
926
|
}
|
|
845
927
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
|
846
928
|
left: 12px;
|
|
847
929
|
top: 8px;
|
|
848
|
-
transform-origin: 1px 6px 0;
|
|
930
|
+
-webkit-transform-origin: 1px 6px 0;
|
|
931
|
+
transform-origin: 1px 6px 0;
|
|
849
932
|
}
|
|
850
933
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
|
851
934
|
left: 10px;
|
|
852
935
|
top: 12px;
|
|
853
|
-
transform-origin: 1px 2px 0;
|
|
936
|
+
-webkit-transform-origin: 1px 2px 0;
|
|
937
|
+
transform-origin: 1px 2px 0;
|
|
854
938
|
}
|
|
855
939
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
|
856
940
|
border-radius: 50%;
|
|
@@ -890,8 +974,10 @@
|
|
|
890
974
|
}
|
|
891
975
|
|
|
892
976
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
|
893
|
-
-
|
|
894
|
-
|
|
977
|
+
-webkit-box-orient: horizontal;
|
|
978
|
+
-webkit-box-direction: reverse;
|
|
979
|
+
-ms-flex-direction: row-reverse;
|
|
980
|
+
flex-direction: row-reverse;
|
|
895
981
|
}
|
|
896
982
|
|
|
897
983
|
.e-bigger .e-splitter .e-pane {
|
|
@@ -920,8 +1006,10 @@
|
|
|
920
1006
|
}
|
|
921
1007
|
|
|
922
1008
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
|
923
|
-
-
|
|
924
|
-
|
|
1009
|
+
-webkit-box-orient: vertical;
|
|
1010
|
+
-webkit-box-direction: normal;
|
|
1011
|
+
-ms-flex-direction: column;
|
|
1012
|
+
flex-direction: column;
|
|
925
1013
|
}
|
|
926
1014
|
|
|
927
1015
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
@@ -947,13 +1035,16 @@
|
|
|
947
1035
|
background-color: transparent;
|
|
948
1036
|
border-color: transparent;
|
|
949
1037
|
color: transparent;
|
|
1038
|
+
-webkit-transition: background-color 500ms ease-out;
|
|
950
1039
|
transition: background-color 500ms ease-out;
|
|
951
1040
|
}
|
|
952
1041
|
.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 {
|
|
953
1042
|
background-color: #0078d6;
|
|
954
1043
|
opacity: 0;
|
|
955
|
-
transition-duration: 0.3s;
|
|
956
|
-
|
|
1044
|
+
-webkit-transition-duration: 0.3s;
|
|
1045
|
+
transition-duration: 0.3s;
|
|
1046
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1047
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
957
1048
|
}
|
|
958
1049
|
.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 {
|
|
959
1050
|
background: #0078d6;
|
|
@@ -973,22 +1064,26 @@
|
|
|
973
1064
|
.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 {
|
|
974
1065
|
background-color: #0078d6;
|
|
975
1066
|
opacity: 1;
|
|
976
|
-
transform: rotate(40deg);
|
|
1067
|
+
-webkit-transform: rotate(40deg);
|
|
1068
|
+
transform: rotate(40deg);
|
|
977
1069
|
}
|
|
978
1070
|
.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 {
|
|
979
1071
|
background-color: #0078d6;
|
|
980
1072
|
opacity: 1;
|
|
981
|
-
transform: rotate(-40deg);
|
|
1073
|
+
-webkit-transform: rotate(-40deg);
|
|
1074
|
+
transform: rotate(-40deg);
|
|
982
1075
|
}
|
|
983
1076
|
.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 {
|
|
984
1077
|
background-color: #0078d6;
|
|
985
1078
|
opacity: 1;
|
|
986
|
-
transform: rotate(-40deg);
|
|
1079
|
+
-webkit-transform: rotate(-40deg);
|
|
1080
|
+
transform: rotate(-40deg);
|
|
987
1081
|
}
|
|
988
1082
|
.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 {
|
|
989
1083
|
background-color: #0078d6;
|
|
990
1084
|
opacity: 1;
|
|
991
|
-
transform: rotate(40deg);
|
|
1085
|
+
-webkit-transform: rotate(40deg);
|
|
1086
|
+
transform: rotate(40deg);
|
|
992
1087
|
}
|
|
993
1088
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
994
1089
|
background: #0078d6;
|
|
@@ -1023,34 +1118,41 @@
|
|
|
1023
1118
|
.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 {
|
|
1024
1119
|
background-color: #0078d6;
|
|
1025
1120
|
opacity: 1;
|
|
1026
|
-
transform: rotate(125deg);
|
|
1121
|
+
-webkit-transform: rotate(125deg);
|
|
1122
|
+
transform: rotate(125deg);
|
|
1027
1123
|
}
|
|
1028
1124
|
.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 {
|
|
1029
1125
|
background-color: #0078d6;
|
|
1030
1126
|
opacity: 1;
|
|
1031
|
-
transform: rotate(50deg);
|
|
1127
|
+
-webkit-transform: rotate(50deg);
|
|
1128
|
+
transform: rotate(50deg);
|
|
1032
1129
|
}
|
|
1033
1130
|
.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 {
|
|
1034
1131
|
background-color: #0078d6;
|
|
1035
1132
|
opacity: 1;
|
|
1036
|
-
transform: rotate(55deg);
|
|
1133
|
+
-webkit-transform: rotate(55deg);
|
|
1134
|
+
transform: rotate(55deg);
|
|
1037
1135
|
}
|
|
1038
1136
|
.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 {
|
|
1039
1137
|
background-color: #0078d6;
|
|
1040
1138
|
opacity: 1;
|
|
1041
|
-
transform: rotate(125deg);
|
|
1139
|
+
-webkit-transform: rotate(125deg);
|
|
1140
|
+
transform: rotate(125deg);
|
|
1042
1141
|
}
|
|
1043
1142
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
1044
1143
|
background-color: transparent;
|
|
1045
1144
|
border-color: transparent;
|
|
1046
1145
|
color: transparent;
|
|
1146
|
+
-webkit-transition: background-color 300ms ease-out;
|
|
1047
1147
|
transition: background-color 300ms ease-out;
|
|
1048
1148
|
}
|
|
1049
1149
|
.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 {
|
|
1050
1150
|
background-color: #0078d6;
|
|
1051
1151
|
opacity: 0;
|
|
1052
|
-
transition-duration: 0.3s;
|
|
1053
|
-
|
|
1152
|
+
-webkit-transition-duration: 0.3s;
|
|
1153
|
+
transition-duration: 0.3s;
|
|
1154
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1155
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1054
1156
|
}
|
|
1055
1157
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
|
1056
1158
|
background: #0078d6;
|
|
@@ -1064,7 +1166,8 @@
|
|
|
1064
1166
|
pointer-events: none;
|
|
1065
1167
|
}
|
|
1066
1168
|
|
|
1067
|
-
/* stylelint-disable-line no-empty-source */
|
|
1169
|
+
/* stylelint-disable-line no-empty-source */
|
|
1170
|
+
/*! component's theme wise override fabric-definitions and variables */
|
|
1068
1171
|
/* stylelint-disable */
|
|
1069
1172
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
|
1070
1173
|
height: 100%;
|
|
@@ -1125,7 +1228,8 @@
|
|
|
1125
1228
|
font-size: 12px;
|
|
1126
1229
|
left: 0;
|
|
1127
1230
|
position: absolute;
|
|
1128
|
-
transform: rotateY(180deg);
|
|
1231
|
+
-webkit-transform: rotateY(180deg);
|
|
1232
|
+
transform: rotateY(180deg);
|
|
1129
1233
|
}
|
|
1130
1234
|
|
|
1131
1235
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
|
@@ -1134,7 +1238,7 @@
|
|
|
1134
1238
|
height: 100%;
|
|
1135
1239
|
width: 100%;
|
|
1136
1240
|
}
|
|
1137
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
|
1241
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
|
1138
1242
|
border: 1px dotted #a6a6a6;
|
|
1139
1243
|
position: absolute;
|
|
1140
1244
|
}
|
|
@@ -1143,10 +1247,21 @@
|
|
|
1143
1247
|
}
|
|
1144
1248
|
.e-dashboardlayout.e-control.e-prevent {
|
|
1145
1249
|
-webkit-user-select: none;
|
|
1250
|
+
-moz-user-select: none;
|
|
1146
1251
|
-ms-user-select: none;
|
|
1147
1252
|
user-select: none;
|
|
1148
1253
|
}
|
|
1254
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
|
1255
|
+
position: relative;
|
|
1256
|
+
}
|
|
1149
1257
|
.e-dashboardlayout.e-control .e-panel {
|
|
1258
|
+
border: 1px #eaeaea solid;
|
|
1259
|
+
height: 100%;
|
|
1260
|
+
-webkit-user-select: none;
|
|
1261
|
+
-moz-user-select: none;
|
|
1262
|
+
-ms-user-select: none;
|
|
1263
|
+
user-select: none;
|
|
1264
|
+
width: 100%;
|
|
1150
1265
|
border-radius: 0;
|
|
1151
1266
|
}
|
|
1152
1267
|
.e-dashboardlayout.e-control .e-panel:hover {
|
|
@@ -1158,10 +1273,19 @@
|
|
|
1158
1273
|
.e-dashboardlayout.e-control .e-panel:active {
|
|
1159
1274
|
border: 1px #0078d6 solid;
|
|
1160
1275
|
}
|
|
1276
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1277
|
+
height: 100%;
|
|
1278
|
+
width: 100%;
|
|
1279
|
+
}
|
|
1280
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1281
|
+
height: inherit;
|
|
1282
|
+
width: inherit;
|
|
1283
|
+
}
|
|
1161
1284
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
|
1162
1285
|
display: none;
|
|
1163
1286
|
}
|
|
1164
1287
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
|
1288
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
|
1165
1289
|
transition: top 0.5s, left 0.5s;
|
|
1166
1290
|
}
|
|
1167
1291
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
@@ -1184,22 +1308,6 @@
|
|
|
1184
1308
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
|
1185
1309
|
float: right;
|
|
1186
1310
|
}
|
|
1187
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1188
|
-
height: 100%;
|
|
1189
|
-
width: 100%;
|
|
1190
|
-
}
|
|
1191
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1192
|
-
height: inherit;
|
|
1193
|
-
width: inherit;
|
|
1194
|
-
}
|
|
1195
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1196
|
-
border: 1px #eaeaea solid;
|
|
1197
|
-
height: 100%;
|
|
1198
|
-
-webkit-user-select: none;
|
|
1199
|
-
-ms-user-select: none;
|
|
1200
|
-
user-select: none;
|
|
1201
|
-
width: 100%;
|
|
1202
|
-
}
|
|
1203
1311
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
|
1204
1312
|
position: absolute;
|
|
1205
1313
|
-ms-touch-action: none;
|
|
@@ -1236,13 +1344,6 @@
|
|
|
1236
1344
|
font-family: "e-icons";
|
|
1237
1345
|
position: absolute;
|
|
1238
1346
|
}
|
|
1239
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1240
|
-
cursor: move;
|
|
1241
|
-
}
|
|
1242
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1243
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1244
|
-
cursor: default;
|
|
1245
|
-
}
|
|
1246
1347
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
|
1247
1348
|
cursor: move;
|
|
1248
1349
|
z-index: 1111 !important;
|
|
@@ -1250,6 +1351,19 @@
|
|
|
1250
1351
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
|
1251
1352
|
float: left;
|
|
1252
1353
|
}
|
|
1354
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1355
|
+
font-size: 14px;
|
|
1356
|
+
font-weight: 500;
|
|
1357
|
+
height: 30px;
|
|
1358
|
+
padding: 0 12px;
|
|
1359
|
+
}
|
|
1360
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1361
|
+
cursor: move;
|
|
1362
|
+
}
|
|
1363
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1364
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1365
|
+
cursor: default;
|
|
1366
|
+
}
|
|
1253
1367
|
.e-dashboardlayout.e-control .e-holder {
|
|
1254
1368
|
background: rgba(0, 120, 214, 0.3);
|
|
1255
1369
|
border: 1px #0078d6 dotted;
|
|
@@ -1258,14 +1372,9 @@
|
|
|
1258
1372
|
border-radius: 0;
|
|
1259
1373
|
}
|
|
1260
1374
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
|
1375
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
|
1261
1376
|
transition: top 0.3s, left 0.3s;
|
|
1262
1377
|
}
|
|
1263
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1264
|
-
font-size: 14px;
|
|
1265
|
-
font-weight: 500;
|
|
1266
|
-
height: 30px;
|
|
1267
|
-
padding: 0 12px;
|
|
1268
|
-
}
|
|
1269
1378
|
|
|
1270
1379
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
1271
1380
|
font-size: 14px;
|
|
@@ -1284,17 +1393,10 @@
|
|
|
1284
1393
|
}
|
|
1285
1394
|
.e-dashboardlayout.e-control .e-panel {
|
|
1286
1395
|
background: #fff;
|
|
1287
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1292
|
-
color: #333;
|
|
1293
|
-
}
|
|
1294
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1295
|
-
background: #fff;
|
|
1296
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1297
|
-
box-sizing: border-box;
|
|
1396
|
+
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1397
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1398
|
+
-webkit-box-sizing: border-box;
|
|
1399
|
+
box-sizing: border-box;
|
|
1298
1400
|
position: absolute;
|
|
1299
1401
|
}
|
|
1300
1402
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
@@ -1373,12 +1475,15 @@
|
|
|
1373
1475
|
.e-timeline [class^="e-dot "]::before,
|
|
1374
1476
|
.e-timeline .e-dot-item,
|
|
1375
1477
|
.e-timeline .e-dot {
|
|
1478
|
+
display: -webkit-box;
|
|
1376
1479
|
display: -ms-flexbox;
|
|
1377
1480
|
display: flex;
|
|
1378
|
-
-
|
|
1379
|
-
align
|
|
1380
|
-
|
|
1381
|
-
|
|
1481
|
+
-webkit-box-align: center;
|
|
1482
|
+
-ms-flex-align: center;
|
|
1483
|
+
align-items: center;
|
|
1484
|
+
-webkit-box-pack: center;
|
|
1485
|
+
-ms-flex-pack: center;
|
|
1486
|
+
justify-content: center;
|
|
1382
1487
|
}
|
|
1383
1488
|
.e-timeline [class^="e-dot "]::before {
|
|
1384
1489
|
min-width: 32px;
|
|
@@ -1386,10 +1491,13 @@
|
|
|
1386
1491
|
border-radius: var(--dot-radius);
|
|
1387
1492
|
}
|
|
1388
1493
|
.e-timeline .e-timeline-items {
|
|
1494
|
+
display: -webkit-inline-box;
|
|
1389
1495
|
display: -ms-inline-flexbox;
|
|
1390
1496
|
display: inline-flex;
|
|
1391
|
-
-
|
|
1392
|
-
|
|
1497
|
+
-webkit-box-orient: vertical;
|
|
1498
|
+
-webkit-box-direction: normal;
|
|
1499
|
+
-ms-flex-direction: column;
|
|
1500
|
+
flex-direction: column;
|
|
1393
1501
|
list-style: none;
|
|
1394
1502
|
-ms-flex-wrap: nowrap;
|
|
1395
1503
|
flex-wrap: nowrap;
|
|
@@ -1398,13 +1506,17 @@
|
|
|
1398
1506
|
height: inherit;
|
|
1399
1507
|
}
|
|
1400
1508
|
.e-timeline .e-timeline-item {
|
|
1509
|
+
display: -webkit-box;
|
|
1401
1510
|
display: -ms-flexbox;
|
|
1402
1511
|
display: flex;
|
|
1403
|
-
-
|
|
1404
|
-
|
|
1512
|
+
-webkit-box-orient: horizontal;
|
|
1513
|
+
-webkit-box-direction: normal;
|
|
1514
|
+
-ms-flex-direction: row;
|
|
1515
|
+
flex-direction: row;
|
|
1405
1516
|
position: relative;
|
|
1406
|
-
-
|
|
1407
|
-
align
|
|
1517
|
+
-webkit-box-align: start;
|
|
1518
|
+
-ms-flex-align: start;
|
|
1519
|
+
align-items: flex-start;
|
|
1408
1520
|
width: inherit;
|
|
1409
1521
|
height: inherit;
|
|
1410
1522
|
}
|
|
@@ -1424,8 +1536,9 @@
|
|
|
1424
1536
|
}
|
|
1425
1537
|
.e-timeline .e-dot-item {
|
|
1426
1538
|
position: relative;
|
|
1427
|
-
-
|
|
1428
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1539
|
+
-webkit-box-flex: 0;
|
|
1540
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
|
1541
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1429
1542
|
z-index: 1000;
|
|
1430
1543
|
}
|
|
1431
1544
|
.e-timeline .e-dot {
|
|
@@ -1441,12 +1554,12 @@
|
|
|
1441
1554
|
}
|
|
1442
1555
|
.e-timeline .e-opposite-content,
|
|
1443
1556
|
.e-timeline .e-content {
|
|
1444
|
-
-
|
|
1445
|
-
flex: 1 1 50%;
|
|
1557
|
+
-webkit-box-flex: 1;
|
|
1558
|
+
-ms-flex: 1 1 50%;
|
|
1559
|
+
flex: 1 1 50%;
|
|
1446
1560
|
}
|
|
1447
1561
|
.e-timeline .e-opposite-content {
|
|
1448
1562
|
font-size: 12px;
|
|
1449
|
-
text-align: right;
|
|
1450
1563
|
}
|
|
1451
1564
|
.e-timeline .e-content {
|
|
1452
1565
|
text-align: left;
|
|
@@ -1460,12 +1573,16 @@
|
|
|
1460
1573
|
bottom: calc(var(--dot-size) * 2);
|
|
1461
1574
|
}
|
|
1462
1575
|
.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) {
|
|
1463
|
-
-
|
|
1464
|
-
|
|
1576
|
+
-webkit-box-orient: horizontal;
|
|
1577
|
+
-webkit-box-direction: reverse;
|
|
1578
|
+
-ms-flex-direction: row-reverse;
|
|
1579
|
+
flex-direction: row-reverse;
|
|
1465
1580
|
}
|
|
1466
1581
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
|
1467
|
-
-
|
|
1468
|
-
|
|
1582
|
+
-webkit-box-orient: vertical;
|
|
1583
|
+
-webkit-box-direction: reverse;
|
|
1584
|
+
-ms-flex-direction: column-reverse;
|
|
1585
|
+
flex-direction: column-reverse;
|
|
1469
1586
|
}
|
|
1470
1587
|
.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 {
|
|
1471
1588
|
text-align: left;
|
|
@@ -1473,6 +1590,19 @@
|
|
|
1473
1590
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
|
1474
1591
|
content: unset;
|
|
1475
1592
|
}
|
|
1593
|
+
.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 {
|
|
1594
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1595
|
+
right: auto;
|
|
1596
|
+
}
|
|
1597
|
+
.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 {
|
|
1598
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1599
|
+
left: auto;
|
|
1600
|
+
}
|
|
1601
|
+
.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 {
|
|
1602
|
+
-webkit-box-flex: 0;
|
|
1603
|
+
-ms-flex: 0;
|
|
1604
|
+
flex: 0;
|
|
1605
|
+
}
|
|
1476
1606
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
|
1477
1607
|
content: unset;
|
|
1478
1608
|
}
|
|
@@ -1490,13 +1620,27 @@
|
|
|
1490
1620
|
width: calc(var(--dot-size) * 2);
|
|
1491
1621
|
}
|
|
1492
1622
|
.e-timeline.e-horizontal .e-timeline-items {
|
|
1623
|
+
display: -webkit-inline-box;
|
|
1493
1624
|
display: -ms-inline-flexbox;
|
|
1494
1625
|
display: inline-flex;
|
|
1495
|
-
-
|
|
1496
|
-
|
|
1626
|
+
-webkit-box-orient: horizontal;
|
|
1627
|
+
-webkit-box-direction: normal;
|
|
1628
|
+
-ms-flex-direction: row;
|
|
1629
|
+
flex-direction: row;
|
|
1497
1630
|
}
|
|
1498
1631
|
.e-timeline.e-horizontal .e-timeline-item {
|
|
1499
1632
|
height: auto;
|
|
1633
|
+
-webkit-box-orient: vertical;
|
|
1634
|
+
-webkit-box-direction: normal;
|
|
1635
|
+
-ms-flex-direction: column;
|
|
1636
|
+
flex-direction: column;
|
|
1637
|
+
-webkit-box-align: center;
|
|
1638
|
+
-ms-flex-align: center;
|
|
1639
|
+
align-items: center;
|
|
1640
|
+
}
|
|
1641
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
|
1642
|
+
left: calc(50% - var(--connector-size));
|
|
1643
|
+
right: auto;
|
|
1500
1644
|
}
|
|
1501
1645
|
.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 {
|
|
1502
1646
|
right: calc(50% - var(--connector-size));
|
|
@@ -1505,32 +1649,33 @@
|
|
|
1505
1649
|
.e-timeline.e-horizontal .e-dot-item {
|
|
1506
1650
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
|
1507
1651
|
}
|
|
1508
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
|
1509
|
-
-ms-flex-direction: column;
|
|
1510
|
-
flex-direction: column;
|
|
1511
|
-
-ms-flex-align: center;
|
|
1512
|
-
align-items: center;
|
|
1513
|
-
}
|
|
1514
1652
|
.e-timeline.e-horizontal .e-opposite-content,
|
|
1515
1653
|
.e-timeline.e-horizontal .e-content {
|
|
1654
|
+
display: -webkit-box;
|
|
1516
1655
|
display: -ms-flexbox;
|
|
1517
1656
|
display: flex;
|
|
1518
1657
|
}
|
|
1519
1658
|
.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 {
|
|
1520
|
-
-
|
|
1521
|
-
align
|
|
1659
|
+
-webkit-box-align: end;
|
|
1660
|
+
-ms-flex-align: end;
|
|
1661
|
+
align-items: flex-end;
|
|
1522
1662
|
}
|
|
1523
1663
|
.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 {
|
|
1524
|
-
-
|
|
1525
|
-
align
|
|
1664
|
+
-webkit-box-align: start;
|
|
1665
|
+
-ms-flex-align: start;
|
|
1666
|
+
align-items: flex-start;
|
|
1526
1667
|
}
|
|
1527
1668
|
.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) {
|
|
1528
|
-
-
|
|
1529
|
-
|
|
1669
|
+
-webkit-box-orient: vertical;
|
|
1670
|
+
-webkit-box-direction: reverse;
|
|
1671
|
+
-ms-flex-direction: column-reverse;
|
|
1672
|
+
flex-direction: column-reverse;
|
|
1530
1673
|
}
|
|
1531
1674
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
|
1532
|
-
-
|
|
1533
|
-
|
|
1675
|
+
-webkit-box-orient: horizontal;
|
|
1676
|
+
-webkit-box-direction: reverse;
|
|
1677
|
+
-ms-flex-direction: row-reverse;
|
|
1678
|
+
flex-direction: row-reverse;
|
|
1534
1679
|
}
|
|
1535
1680
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
|
1536
1681
|
width: 100%;
|
|
@@ -1538,10 +1683,12 @@
|
|
|
1538
1683
|
top: calc(50% - var(--connector-size));
|
|
1539
1684
|
}
|
|
1540
1685
|
.e-timeline.e-horizontal .e-opposite-content {
|
|
1686
|
+
display: -webkit-box;
|
|
1541
1687
|
display: -ms-flexbox;
|
|
1542
1688
|
display: flex;
|
|
1543
|
-
-
|
|
1544
|
-
align
|
|
1689
|
+
-webkit-box-align: end;
|
|
1690
|
+
-ms-flex-align: end;
|
|
1691
|
+
align-items: flex-end;
|
|
1545
1692
|
text-align: left;
|
|
1546
1693
|
padding: 0;
|
|
1547
1694
|
}
|
|
@@ -1560,8 +1707,23 @@
|
|
|
1560
1707
|
}
|
|
1561
1708
|
.e-bigger.e-timeline .e-dot-item,
|
|
1562
1709
|
.e-bigger .e-timeline .e-dot-item {
|
|
1563
|
-
-
|
|
1564
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1710
|
+
-webkit-box-flex: 0;
|
|
1711
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
|
1712
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1713
|
+
}
|
|
1714
|
+
.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,
|
|
1715
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
|
1716
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1717
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
|
1718
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
|
1719
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1720
|
+
}
|
|
1721
|
+
.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,
|
|
1722
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
|
1723
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1724
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
|
1725
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
|
1726
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1565
1727
|
}
|
|
1566
1728
|
.e-bigger.e-timeline .e-dot,
|
|
1567
1729
|
.e-bigger .e-timeline .e-dot {
|