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