@syncfusion/ej2-layouts 25.2.3 → 26.1.35
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 +1 -1
- 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 +29 -0
- package/styles/avatar/_layout.scss +16 -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 +1094 -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 +0 -3
- 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 +1588 -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 +2795 -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-dark.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;
|
|
@@ -46,7 +49,6 @@
|
|
|
46
49
|
|
|
47
50
|
/*! component's default definitions and variables */
|
|
48
51
|
/*! component's theme wise override material-definitions and variables */
|
|
49
|
-
/*! card layout */
|
|
50
52
|
.e-bigger .e-card,
|
|
51
53
|
.e-bigger.e-card {
|
|
52
54
|
line-height: 36px;
|
|
@@ -184,15 +186,20 @@
|
|
|
184
186
|
|
|
185
187
|
.e-card {
|
|
186
188
|
border-radius: 0;
|
|
187
|
-
box-sizing: border-box;
|
|
189
|
+
-webkit-box-sizing: border-box;
|
|
190
|
+
box-sizing: border-box;
|
|
191
|
+
display: -webkit-box;
|
|
188
192
|
display: -ms-flexbox;
|
|
189
193
|
display: flex;
|
|
190
|
-
-
|
|
191
|
-
|
|
194
|
+
-webkit-box-orient: vertical;
|
|
195
|
+
-webkit-box-direction: normal;
|
|
196
|
+
-ms-flex-direction: column;
|
|
197
|
+
flex-direction: column;
|
|
192
198
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
193
199
|
font-size: 15px;
|
|
194
|
-
-
|
|
195
|
-
|
|
200
|
+
-webkit-box-pack: center;
|
|
201
|
+
-ms-flex-pack: center;
|
|
202
|
+
justify-content: center;
|
|
196
203
|
line-height: 16px;
|
|
197
204
|
min-height: 48px;
|
|
198
205
|
overflow: hidden;
|
|
@@ -202,11 +209,13 @@
|
|
|
202
209
|
width: 100%;
|
|
203
210
|
}
|
|
204
211
|
.e-card > * {
|
|
205
|
-
-
|
|
206
|
-
|
|
212
|
+
-webkit-box-pack: center;
|
|
213
|
+
-ms-flex-pack: center;
|
|
214
|
+
justify-content: center;
|
|
207
215
|
}
|
|
208
216
|
.e-card > .e-card-header-title {
|
|
209
|
-
box-sizing: border-box;
|
|
217
|
+
-webkit-box-sizing: border-box;
|
|
218
|
+
box-sizing: border-box;
|
|
210
219
|
font-size: 15px;
|
|
211
220
|
line-height: 16px;
|
|
212
221
|
padding: 16px;
|
|
@@ -239,22 +248,30 @@
|
|
|
239
248
|
font-size: 14px;
|
|
240
249
|
}
|
|
241
250
|
.e-card .e-card-stacked {
|
|
251
|
+
display: -webkit-box;
|
|
242
252
|
display: -ms-flexbox;
|
|
243
253
|
display: flex;
|
|
244
|
-
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
254
|
+
-webkit-box-orient: vertical;
|
|
255
|
+
-webkit-box-direction: normal;
|
|
256
|
+
-ms-flex-direction: column;
|
|
257
|
+
flex-direction: column;
|
|
258
|
+
-webkit-box-pack: center;
|
|
259
|
+
-ms-flex-pack: center;
|
|
260
|
+
justify-content: center;
|
|
248
261
|
overflow: hidden;
|
|
249
262
|
}
|
|
250
263
|
.e-card.e-card-horizontal,
|
|
251
264
|
.e-card .e-card-horizontal {
|
|
265
|
+
display: -webkit-box;
|
|
252
266
|
display: -ms-flexbox;
|
|
253
267
|
display: flex;
|
|
254
|
-
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
268
|
+
-webkit-box-orient: horizontal;
|
|
269
|
+
-webkit-box-direction: normal;
|
|
270
|
+
-ms-flex-direction: row;
|
|
271
|
+
flex-direction: row;
|
|
272
|
+
-webkit-box-pack: center;
|
|
273
|
+
-ms-flex-pack: center;
|
|
274
|
+
justify-content: center;
|
|
258
275
|
}
|
|
259
276
|
.e-card.e-card-horizontal .e-card-image,
|
|
260
277
|
.e-card.e-card-horizontal img,
|
|
@@ -267,21 +284,27 @@
|
|
|
267
284
|
padding: 2px;
|
|
268
285
|
}
|
|
269
286
|
.e-card.e-card-horizontal > * {
|
|
270
|
-
-
|
|
271
|
-
flex: 1;
|
|
287
|
+
-webkit-box-flex: 1;
|
|
288
|
+
-ms-flex: 1;
|
|
289
|
+
flex: 1;
|
|
272
290
|
}
|
|
273
291
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
292
|
+
display: -webkit-box;
|
|
274
293
|
display: -ms-flexbox;
|
|
275
294
|
display: flex;
|
|
276
|
-
-
|
|
277
|
-
flex: 1;
|
|
278
|
-
|
|
279
|
-
|
|
295
|
+
-webkit-box-flex: 1;
|
|
296
|
+
-ms-flex: 1;
|
|
297
|
+
flex: 1;
|
|
298
|
+
-webkit-box-orient: vertical;
|
|
299
|
+
-webkit-box-direction: normal;
|
|
300
|
+
-ms-flex-direction: column;
|
|
301
|
+
flex-direction: column;
|
|
280
302
|
overflow: hidden;
|
|
281
303
|
}
|
|
282
304
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
283
|
-
-
|
|
284
|
-
flex-
|
|
305
|
+
-webkit-box-flex: 1;
|
|
306
|
+
-ms-flex-positive: 1;
|
|
307
|
+
flex-grow: 1;
|
|
285
308
|
}
|
|
286
309
|
.e-card .e-card-separator {
|
|
287
310
|
display: block;
|
|
@@ -290,13 +313,18 @@
|
|
|
290
313
|
border-radius: 50%;
|
|
291
314
|
}
|
|
292
315
|
.e-card .e-card-header {
|
|
293
|
-
box-sizing: border-box;
|
|
316
|
+
-webkit-box-sizing: border-box;
|
|
317
|
+
box-sizing: border-box;
|
|
318
|
+
display: -webkit-box;
|
|
294
319
|
display: -ms-flexbox;
|
|
295
320
|
display: flex;
|
|
296
|
-
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
321
|
+
-webkit-box-orient: horizontal;
|
|
322
|
+
-webkit-box-direction: normal;
|
|
323
|
+
-ms-flex-direction: row;
|
|
324
|
+
flex-direction: row;
|
|
325
|
+
-webkit-box-pack: center;
|
|
326
|
+
-ms-flex-pack: center;
|
|
327
|
+
justify-content: center;
|
|
300
328
|
line-height: normal;
|
|
301
329
|
min-height: 30px;
|
|
302
330
|
padding: 16px 0 16px 16px;
|
|
@@ -307,24 +335,30 @@
|
|
|
307
335
|
padding-right: 0;
|
|
308
336
|
}
|
|
309
337
|
.e-card .e-card-header .e-card-actions {
|
|
310
|
-
-
|
|
311
|
-
|
|
338
|
+
-webkit-box-pack: start;
|
|
339
|
+
-ms-flex-pack: start;
|
|
340
|
+
justify-content: flex-start;
|
|
312
341
|
}
|
|
313
342
|
.e-card .e-card-header .e-card-header-image {
|
|
314
343
|
-ms-flex-item-align: center;
|
|
315
344
|
align-self: center;
|
|
345
|
+
display: -webkit-box;
|
|
316
346
|
display: -ms-flexbox;
|
|
317
347
|
display: flex;
|
|
318
348
|
}
|
|
319
349
|
.e-card .e-card-header .e-card-header-caption {
|
|
320
350
|
-ms-flex-item-align: center;
|
|
321
351
|
align-self: center;
|
|
352
|
+
display: -webkit-box;
|
|
322
353
|
display: -ms-flexbox;
|
|
323
354
|
display: flex;
|
|
324
|
-
-
|
|
325
|
-
flex: 1;
|
|
326
|
-
|
|
327
|
-
|
|
355
|
+
-webkit-box-flex: 1;
|
|
356
|
+
-ms-flex: 1;
|
|
357
|
+
flex: 1;
|
|
358
|
+
-webkit-box-orient: vertical;
|
|
359
|
+
-webkit-box-direction: normal;
|
|
360
|
+
-ms-flex-direction: column;
|
|
361
|
+
flex-direction: column;
|
|
328
362
|
overflow: hidden;
|
|
329
363
|
padding: 0 0 0 8px;
|
|
330
364
|
}
|
|
@@ -366,7 +400,8 @@
|
|
|
366
400
|
}
|
|
367
401
|
.e-card .e-card-image .e-card-title {
|
|
368
402
|
bottom: 0;
|
|
369
|
-
box-sizing: border-box;
|
|
403
|
+
-webkit-box-sizing: border-box;
|
|
404
|
+
box-sizing: border-box;
|
|
370
405
|
font-size: 24px;
|
|
371
406
|
line-height: 22px;
|
|
372
407
|
min-height: 40px;
|
|
@@ -387,28 +422,34 @@
|
|
|
387
422
|
text-align: right;
|
|
388
423
|
}
|
|
389
424
|
.e-card .e-card-actions {
|
|
390
|
-
box-sizing: border-box;
|
|
425
|
+
-webkit-box-sizing: border-box;
|
|
426
|
+
box-sizing: border-box;
|
|
391
427
|
display: inline-block;
|
|
392
|
-
-
|
|
393
|
-
|
|
428
|
+
-webkit-box-pack: start;
|
|
429
|
+
-ms-flex-pack: start;
|
|
430
|
+
justify-content: flex-start;
|
|
394
431
|
padding: 8px;
|
|
395
432
|
}
|
|
396
433
|
.e-card .e-card-actions.e-card-vertical {
|
|
434
|
+
display: -webkit-box;
|
|
397
435
|
display: -ms-flexbox;
|
|
398
436
|
display: flex;
|
|
399
|
-
-
|
|
400
|
-
|
|
437
|
+
-webkit-box-orient: vertical;
|
|
438
|
+
-webkit-box-direction: normal;
|
|
439
|
+
-ms-flex-direction: column;
|
|
440
|
+
flex-direction: column;
|
|
401
441
|
padding: 0 8px;
|
|
402
442
|
}
|
|
403
443
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
|
404
444
|
.e-card .e-card-actions.e-card-vertical a {
|
|
405
445
|
-ms-flex-item-align: initial;
|
|
406
|
-
-ms-grid-row-align: initial;
|
|
407
446
|
align-self: initial;
|
|
408
|
-
box-sizing: border-box;
|
|
447
|
+
-webkit-box-sizing: border-box;
|
|
448
|
+
box-sizing: border-box;
|
|
409
449
|
display: inline-block;
|
|
410
|
-
-
|
|
411
|
-
|
|
450
|
+
-webkit-box-pack: center;
|
|
451
|
+
-ms-flex-pack: center;
|
|
452
|
+
justify-content: center;
|
|
412
453
|
margin: 0 0 8px 0;
|
|
413
454
|
text-align: center;
|
|
414
455
|
width: 100%;
|
|
@@ -419,11 +460,13 @@
|
|
|
419
460
|
}
|
|
420
461
|
.e-card .e-card-actions button,
|
|
421
462
|
.e-card .e-card-actions a {
|
|
422
|
-
-
|
|
423
|
-
align
|
|
463
|
+
-webkit-box-align: center;
|
|
464
|
+
-ms-flex-align: center;
|
|
465
|
+
align-items: center;
|
|
424
466
|
-ms-flex-item-align: center;
|
|
425
467
|
align-self: center;
|
|
426
468
|
cursor: pointer;
|
|
469
|
+
display: -webkit-inline-box;
|
|
427
470
|
display: -ms-inline-flexbox;
|
|
428
471
|
display: inline-flex;
|
|
429
472
|
overflow: hidden;
|
|
@@ -432,6 +475,7 @@
|
|
|
432
475
|
}
|
|
433
476
|
.e-card .e-card-actions .e-card-btn span,
|
|
434
477
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
|
478
|
+
display: -webkit-box;
|
|
435
479
|
display: -ms-flexbox;
|
|
436
480
|
display: flex;
|
|
437
481
|
font-size: 14px;
|
|
@@ -442,10 +486,12 @@
|
|
|
442
486
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
|
443
487
|
-ms-flex-item-align: center;
|
|
444
488
|
align-self: center;
|
|
489
|
+
display: -webkit-box;
|
|
445
490
|
display: -ms-flexbox;
|
|
446
491
|
display: flex;
|
|
447
|
-
-
|
|
448
|
-
|
|
492
|
+
-webkit-box-pack: center;
|
|
493
|
+
-ms-flex-pack: center;
|
|
494
|
+
justify-content: center;
|
|
449
495
|
width: inherit;
|
|
450
496
|
}
|
|
451
497
|
.e-card .e-card-actions .e-card-btn > * {
|
|
@@ -490,13 +536,13 @@
|
|
|
490
536
|
text-overflow: ellipsis;
|
|
491
537
|
}
|
|
492
538
|
|
|
493
|
-
/*! card theme */
|
|
494
539
|
/* stylelint-disable property-no-vendor-prefix */
|
|
495
540
|
.e-card {
|
|
496
541
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
497
542
|
background: #201f1f;
|
|
498
543
|
border: 1px solid #dadada;
|
|
499
|
-
box-shadow: none;
|
|
544
|
+
-webkit-box-shadow: none;
|
|
545
|
+
box-shadow: none;
|
|
500
546
|
color: #dadada;
|
|
501
547
|
outline: none;
|
|
502
548
|
}
|
|
@@ -570,7 +616,8 @@
|
|
|
570
616
|
content: "\e984";
|
|
571
617
|
font-family: "e-icons";
|
|
572
618
|
font-size: 14px;
|
|
573
|
-
transform: rotate(90deg);
|
|
619
|
+
-webkit-transform: rotate(90deg);
|
|
620
|
+
transform: rotate(90deg);
|
|
574
621
|
}
|
|
575
622
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-template-resize-handler::before {
|
|
576
623
|
content: "";
|
|
@@ -585,6 +632,7 @@
|
|
|
585
632
|
|
|
586
633
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
587
634
|
border-width: 1px;
|
|
635
|
+
display: -webkit-box;
|
|
588
636
|
display: -ms-flexbox;
|
|
589
637
|
display: flex;
|
|
590
638
|
overflow: hidden;
|
|
@@ -594,8 +642,9 @@
|
|
|
594
642
|
width: 100%;
|
|
595
643
|
}
|
|
596
644
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
|
597
|
-
-
|
|
598
|
-
flex: 1 1 auto;
|
|
645
|
+
-webkit-box-flex: 1;
|
|
646
|
+
-ms-flex: 1 1 auto;
|
|
647
|
+
flex: 1 1 auto;
|
|
599
648
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
600
649
|
font-size: 13px;
|
|
601
650
|
font-weight: normal;
|
|
@@ -604,8 +653,9 @@
|
|
|
604
653
|
overflow: auto;
|
|
605
654
|
}
|
|
606
655
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
|
607
|
-
-
|
|
608
|
-
flex-
|
|
656
|
+
-webkit-box-flex: 0;
|
|
657
|
+
-ms-flex-positive: 0;
|
|
658
|
+
flex-grow: 0;
|
|
609
659
|
-ms-flex-negative: 0;
|
|
610
660
|
flex-shrink: 0;
|
|
611
661
|
}
|
|
@@ -618,27 +668,35 @@
|
|
|
618
668
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
619
669
|
}
|
|
620
670
|
.e-splitter.e-splitter-horizontal {
|
|
621
|
-
-
|
|
622
|
-
|
|
671
|
+
-webkit-box-orient: horizontal;
|
|
672
|
+
-webkit-box-direction: normal;
|
|
673
|
+
-ms-flex-direction: row;
|
|
674
|
+
flex-direction: row;
|
|
623
675
|
}
|
|
624
676
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
|
625
677
|
overflow: hidden;
|
|
626
678
|
}
|
|
627
679
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
|
628
|
-
-
|
|
629
|
-
|
|
680
|
+
-webkit-box-orient: horizontal;
|
|
681
|
+
-webkit-box-direction: reverse;
|
|
682
|
+
-ms-flex-direction: row-reverse;
|
|
683
|
+
flex-direction: row-reverse;
|
|
630
684
|
}
|
|
631
685
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
|
632
|
-
-
|
|
633
|
-
|
|
686
|
+
-webkit-box-orient: horizontal;
|
|
687
|
+
-webkit-box-direction: reverse;
|
|
688
|
+
-ms-flex-direction: row-reverse;
|
|
689
|
+
flex-direction: row-reverse;
|
|
634
690
|
}
|
|
635
691
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
|
636
692
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
|
637
693
|
right: auto;
|
|
638
694
|
}
|
|
639
695
|
.e-splitter.e-splitter-vertical {
|
|
640
|
-
-
|
|
641
|
-
|
|
696
|
+
-webkit-box-orient: vertical;
|
|
697
|
+
-webkit-box-direction: normal;
|
|
698
|
+
-ms-flex-direction: column;
|
|
699
|
+
flex-direction: column;
|
|
642
700
|
}
|
|
643
701
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
|
644
702
|
overflow: hidden;
|
|
@@ -670,14 +728,18 @@
|
|
|
670
728
|
right: auto;
|
|
671
729
|
}
|
|
672
730
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
|
673
|
-
-
|
|
674
|
-
align
|
|
731
|
+
-webkit-box-align: center;
|
|
732
|
+
-ms-flex-align: center;
|
|
733
|
+
align-items: center;
|
|
734
|
+
display: -webkit-box;
|
|
675
735
|
display: -ms-flexbox;
|
|
676
736
|
display: flex;
|
|
677
|
-
-
|
|
678
|
-
flex: 0 0 auto;
|
|
679
|
-
|
|
680
|
-
|
|
737
|
+
-webkit-box-flex: 0;
|
|
738
|
+
-ms-flex: 0 0 auto;
|
|
739
|
+
flex: 0 0 auto;
|
|
740
|
+
-webkit-box-pack: center;
|
|
741
|
+
-ms-flex-pack: center;
|
|
742
|
+
justify-content: center;
|
|
681
743
|
min-width: 1px;
|
|
682
744
|
z-index: 15;
|
|
683
745
|
}
|
|
@@ -697,13 +759,16 @@
|
|
|
697
759
|
z-index: 10;
|
|
698
760
|
}
|
|
699
761
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
|
700
|
-
-
|
|
701
|
-
align
|
|
762
|
+
-webkit-box-align: center;
|
|
763
|
+
-ms-flex-align: center;
|
|
764
|
+
align-items: center;
|
|
765
|
+
display: -webkit-box;
|
|
702
766
|
display: -ms-flexbox;
|
|
703
767
|
display: flex;
|
|
704
768
|
height: 18px;
|
|
705
|
-
-
|
|
706
|
-
|
|
769
|
+
-webkit-box-pack: center;
|
|
770
|
+
-ms-flex-pack: center;
|
|
771
|
+
justify-content: center;
|
|
707
772
|
position: relative;
|
|
708
773
|
width: 1px;
|
|
709
774
|
}
|
|
@@ -716,9 +781,11 @@
|
|
|
716
781
|
right: 3px;
|
|
717
782
|
}
|
|
718
783
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
|
719
|
-
border-image: none;
|
|
784
|
+
-o-border-image: none;
|
|
785
|
+
border-image: none;
|
|
720
786
|
border-width: 1px;
|
|
721
787
|
cursor: pointer;
|
|
788
|
+
display: -webkit-box;
|
|
722
789
|
display: -ms-flexbox;
|
|
723
790
|
display: flex;
|
|
724
791
|
height: 26px;
|
|
@@ -730,16 +797,19 @@
|
|
|
730
797
|
content: "";
|
|
731
798
|
height: 8px;
|
|
732
799
|
position: absolute;
|
|
733
|
-
transform: rotate(0deg);
|
|
800
|
+
-webkit-transform: rotate(0deg);
|
|
801
|
+
transform: rotate(0deg);
|
|
734
802
|
width: 2px;
|
|
735
803
|
}
|
|
736
804
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
|
737
805
|
top: 5px;
|
|
738
|
-
transform-origin: 1px 7px 0;
|
|
806
|
+
-webkit-transform-origin: 1px 7px 0;
|
|
807
|
+
transform-origin: 1px 7px 0;
|
|
739
808
|
}
|
|
740
809
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
|
741
810
|
top: 11px;
|
|
742
|
-
transform-origin: 1px 1px 0;
|
|
811
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
812
|
+
transform-origin: 1px 1px 0;
|
|
743
813
|
}
|
|
744
814
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
|
745
815
|
border-radius: 50%;
|
|
@@ -759,16 +829,20 @@
|
|
|
759
829
|
margin: 0 0 0 3px;
|
|
760
830
|
}
|
|
761
831
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
|
762
|
-
-
|
|
763
|
-
align
|
|
832
|
+
-webkit-box-align: center;
|
|
833
|
+
-ms-flex-align: center;
|
|
834
|
+
align-items: center;
|
|
764
835
|
border-left: none;
|
|
765
836
|
border-right: none;
|
|
837
|
+
display: -webkit-box;
|
|
766
838
|
display: -ms-flexbox;
|
|
767
839
|
display: flex;
|
|
768
|
-
-
|
|
769
|
-
flex: 0 0 auto;
|
|
770
|
-
|
|
771
|
-
|
|
840
|
+
-webkit-box-flex: 0;
|
|
841
|
+
-ms-flex: 0 0 auto;
|
|
842
|
+
flex: 0 0 auto;
|
|
843
|
+
-webkit-box-pack: center;
|
|
844
|
+
-ms-flex-pack: center;
|
|
845
|
+
justify-content: center;
|
|
772
846
|
min-height: 1px;
|
|
773
847
|
}
|
|
774
848
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
|
@@ -787,13 +861,16 @@
|
|
|
787
861
|
z-index: 12;
|
|
788
862
|
}
|
|
789
863
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
|
790
|
-
-
|
|
791
|
-
align
|
|
864
|
+
-webkit-box-align: center;
|
|
865
|
+
-ms-flex-align: center;
|
|
866
|
+
align-items: center;
|
|
867
|
+
display: -webkit-box;
|
|
792
868
|
display: -ms-flexbox;
|
|
793
869
|
display: flex;
|
|
794
870
|
height: 1px;
|
|
795
|
-
-
|
|
796
|
-
|
|
871
|
+
-webkit-box-pack: center;
|
|
872
|
+
-ms-flex-pack: center;
|
|
873
|
+
justify-content: center;
|
|
797
874
|
width: 18px;
|
|
798
875
|
}
|
|
799
876
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
|
@@ -804,9 +881,11 @@
|
|
|
804
881
|
left: 10px;
|
|
805
882
|
}
|
|
806
883
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
807
|
-
border-image: none;
|
|
884
|
+
-o-border-image: none;
|
|
885
|
+
border-image: none;
|
|
808
886
|
border-width: 0;
|
|
809
887
|
cursor: pointer;
|
|
888
|
+
display: -webkit-box;
|
|
810
889
|
display: -ms-flexbox;
|
|
811
890
|
display: flex;
|
|
812
891
|
height: 26px;
|
|
@@ -819,27 +898,32 @@
|
|
|
819
898
|
content: "";
|
|
820
899
|
height: 8px;
|
|
821
900
|
position: absolute;
|
|
822
|
-
transform: rotate(90deg);
|
|
901
|
+
-webkit-transform: rotate(90deg);
|
|
902
|
+
transform: rotate(90deg);
|
|
823
903
|
width: 2px;
|
|
824
904
|
}
|
|
825
905
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
|
826
906
|
top: 3px;
|
|
827
|
-
transform-origin: 2px 7px 0;
|
|
907
|
+
-webkit-transform-origin: 2px 7px 0;
|
|
908
|
+
transform-origin: 2px 7px 0;
|
|
828
909
|
}
|
|
829
910
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
|
830
911
|
left: 11px;
|
|
831
912
|
top: 8px;
|
|
832
|
-
transform-origin: 1px 1px 0;
|
|
913
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
914
|
+
transform-origin: 1px 1px 0;
|
|
833
915
|
}
|
|
834
916
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
|
835
917
|
left: 12px;
|
|
836
918
|
top: 8px;
|
|
837
|
-
transform-origin: 1px 6px 0;
|
|
919
|
+
-webkit-transform-origin: 1px 6px 0;
|
|
920
|
+
transform-origin: 1px 6px 0;
|
|
838
921
|
}
|
|
839
922
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
|
840
923
|
left: 10px;
|
|
841
924
|
top: 12px;
|
|
842
|
-
transform-origin: 1px 2px 0;
|
|
925
|
+
-webkit-transform-origin: 1px 2px 0;
|
|
926
|
+
transform-origin: 1px 2px 0;
|
|
843
927
|
}
|
|
844
928
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
|
845
929
|
border-radius: 50%;
|
|
@@ -879,8 +963,10 @@
|
|
|
879
963
|
}
|
|
880
964
|
|
|
881
965
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
|
882
|
-
-
|
|
883
|
-
|
|
966
|
+
-webkit-box-orient: horizontal;
|
|
967
|
+
-webkit-box-direction: reverse;
|
|
968
|
+
-ms-flex-direction: row-reverse;
|
|
969
|
+
flex-direction: row-reverse;
|
|
884
970
|
}
|
|
885
971
|
|
|
886
972
|
.e-bigger .e-splitter .e-pane {
|
|
@@ -909,8 +995,10 @@
|
|
|
909
995
|
}
|
|
910
996
|
|
|
911
997
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
|
912
|
-
-
|
|
913
|
-
|
|
998
|
+
-webkit-box-orient: vertical;
|
|
999
|
+
-webkit-box-direction: normal;
|
|
1000
|
+
-ms-flex-direction: column;
|
|
1001
|
+
flex-direction: column;
|
|
914
1002
|
}
|
|
915
1003
|
|
|
916
1004
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
@@ -936,13 +1024,16 @@
|
|
|
936
1024
|
background-color: transparent;
|
|
937
1025
|
border-color: transparent;
|
|
938
1026
|
color: transparent;
|
|
1027
|
+
-webkit-transition: background-color 500ms ease-out;
|
|
939
1028
|
transition: background-color 500ms ease-out;
|
|
940
1029
|
}
|
|
941
1030
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-icon-hidden)::before, .e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-icon-hidden)::after {
|
|
942
1031
|
background-color: #0078d6;
|
|
943
1032
|
opacity: 0;
|
|
944
|
-
transition-duration: 0.3s;
|
|
945
|
-
|
|
1033
|
+
-webkit-transition-duration: 0.3s;
|
|
1034
|
+
transition-duration: 0.3s;
|
|
1035
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1036
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
946
1037
|
}
|
|
947
1038
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
948
1039
|
background: #38a9ff;
|
|
@@ -962,22 +1053,26 @@
|
|
|
962
1053
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-hover .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-active .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-hover .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-active .e-navigate-arrow::before {
|
|
963
1054
|
background-color: #0078d6;
|
|
964
1055
|
opacity: 1;
|
|
965
|
-
transform: rotate(40deg);
|
|
1056
|
+
-webkit-transform: rotate(40deg);
|
|
1057
|
+
transform: rotate(40deg);
|
|
966
1058
|
}
|
|
967
1059
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-hover .e-navigate-arrow::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover.e-split-bar-active .e-navigate-arrow::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-hover .e-navigate-arrow::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active.e-split-bar-active .e-navigate-arrow::after {
|
|
968
1060
|
background-color: #0078d6;
|
|
969
1061
|
opacity: 1;
|
|
970
|
-
transform: rotate(-40deg);
|
|
1062
|
+
-webkit-transform: rotate(-40deg);
|
|
1063
|
+
transform: rotate(-40deg);
|
|
971
1064
|
}
|
|
972
1065
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-navigate-arrow.e-arrow-right::before, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-navigate-arrow.e-arrow-right::before {
|
|
973
1066
|
background-color: #0078d6;
|
|
974
1067
|
opacity: 1;
|
|
975
|
-
transform: rotate(-40deg);
|
|
1068
|
+
-webkit-transform: rotate(-40deg);
|
|
1069
|
+
transform: rotate(-40deg);
|
|
976
1070
|
}
|
|
977
1071
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-navigate-arrow.e-arrow-right::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-navigate-arrow.e-arrow-right::after {
|
|
978
1072
|
background-color: #0078d6;
|
|
979
1073
|
opacity: 1;
|
|
980
|
-
transform: rotate(40deg);
|
|
1074
|
+
-webkit-transform: rotate(40deg);
|
|
1075
|
+
transform: rotate(40deg);
|
|
981
1076
|
}
|
|
982
1077
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
983
1078
|
background: #38a9ff;
|
|
@@ -1012,34 +1107,41 @@
|
|
|
1012
1107
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up::before, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up::before {
|
|
1013
1108
|
background-color: #0078d6;
|
|
1014
1109
|
opacity: 1;
|
|
1015
|
-
transform: rotate(125deg);
|
|
1110
|
+
-webkit-transform: rotate(125deg);
|
|
1111
|
+
transform: rotate(125deg);
|
|
1016
1112
|
}
|
|
1017
1113
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-up::after, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-up::after {
|
|
1018
1114
|
background-color: #0078d6;
|
|
1019
1115
|
opacity: 1;
|
|
1020
|
-
transform: rotate(50deg);
|
|
1116
|
+
-webkit-transform: rotate(50deg);
|
|
1117
|
+
transform: rotate(50deg);
|
|
1021
1118
|
}
|
|
1022
1119
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down::before, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down::before {
|
|
1023
1120
|
background-color: #0078d6;
|
|
1024
1121
|
opacity: 1;
|
|
1025
|
-
transform: rotate(55deg);
|
|
1122
|
+
-webkit-transform: rotate(55deg);
|
|
1123
|
+
transform: rotate(55deg);
|
|
1026
1124
|
}
|
|
1027
1125
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-hover .e-navigate-arrow.e-arrow-down::after, .e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active .e-navigate-arrow.e-arrow-down::after {
|
|
1028
1126
|
background-color: #0078d6;
|
|
1029
1127
|
opacity: 1;
|
|
1030
|
-
transform: rotate(125deg);
|
|
1128
|
+
-webkit-transform: rotate(125deg);
|
|
1129
|
+
transform: rotate(125deg);
|
|
1031
1130
|
}
|
|
1032
1131
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
1033
1132
|
background-color: transparent;
|
|
1034
1133
|
border-color: transparent;
|
|
1035
1134
|
color: transparent;
|
|
1135
|
+
-webkit-transition: background-color 300ms ease-out;
|
|
1036
1136
|
transition: background-color 300ms ease-out;
|
|
1037
1137
|
}
|
|
1038
1138
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow::before, .e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow::after {
|
|
1039
1139
|
background-color: #0078d6;
|
|
1040
1140
|
opacity: 0;
|
|
1041
|
-
transition-duration: 0.3s;
|
|
1042
|
-
|
|
1141
|
+
-webkit-transition-duration: 0.3s;
|
|
1142
|
+
transition-duration: 0.3s;
|
|
1143
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1144
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1043
1145
|
}
|
|
1044
1146
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
|
1045
1147
|
background: #38a9ff;
|
|
@@ -1053,7 +1155,8 @@
|
|
|
1053
1155
|
pointer-events: none;
|
|
1054
1156
|
}
|
|
1055
1157
|
|
|
1056
|
-
/* stylelint-disable-line no-empty-source */
|
|
1158
|
+
/* stylelint-disable-line no-empty-source */
|
|
1159
|
+
/*! component's theme wise override fabric-definitions and variables */
|
|
1057
1160
|
/* stylelint-disable */
|
|
1058
1161
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
|
1059
1162
|
height: 100%;
|
|
@@ -1114,7 +1217,8 @@
|
|
|
1114
1217
|
font-size: 12px;
|
|
1115
1218
|
left: 0;
|
|
1116
1219
|
position: absolute;
|
|
1117
|
-
transform: rotateY(180deg);
|
|
1220
|
+
-webkit-transform: rotateY(180deg);
|
|
1221
|
+
transform: rotateY(180deg);
|
|
1118
1222
|
}
|
|
1119
1223
|
|
|
1120
1224
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
|
@@ -1123,7 +1227,7 @@
|
|
|
1123
1227
|
height: 100%;
|
|
1124
1228
|
width: 100%;
|
|
1125
1229
|
}
|
|
1126
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
|
1230
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
|
1127
1231
|
border: 1px dotted #3A3A3A;
|
|
1128
1232
|
position: absolute;
|
|
1129
1233
|
}
|
|
@@ -1132,10 +1236,21 @@
|
|
|
1132
1236
|
}
|
|
1133
1237
|
.e-dashboardlayout.e-control.e-prevent {
|
|
1134
1238
|
-webkit-user-select: none;
|
|
1239
|
+
-moz-user-select: none;
|
|
1135
1240
|
-ms-user-select: none;
|
|
1136
1241
|
user-select: none;
|
|
1137
1242
|
}
|
|
1243
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
|
1244
|
+
position: relative;
|
|
1245
|
+
}
|
|
1138
1246
|
.e-dashboardlayout.e-control .e-panel {
|
|
1247
|
+
border: 1px #414040 solid;
|
|
1248
|
+
height: 100%;
|
|
1249
|
+
-webkit-user-select: none;
|
|
1250
|
+
-moz-user-select: none;
|
|
1251
|
+
-ms-user-select: none;
|
|
1252
|
+
user-select: none;
|
|
1253
|
+
width: 100%;
|
|
1139
1254
|
border-radius: 2px;
|
|
1140
1255
|
}
|
|
1141
1256
|
.e-dashboardlayout.e-control .e-panel:hover {
|
|
@@ -1147,10 +1262,19 @@
|
|
|
1147
1262
|
.e-dashboardlayout.e-control .e-panel:active {
|
|
1148
1263
|
border: 1px #0074cc solid;
|
|
1149
1264
|
}
|
|
1265
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1266
|
+
height: 100%;
|
|
1267
|
+
width: 100%;
|
|
1268
|
+
}
|
|
1269
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1270
|
+
height: inherit;
|
|
1271
|
+
width: inherit;
|
|
1272
|
+
}
|
|
1150
1273
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
|
1151
1274
|
display: none;
|
|
1152
1275
|
}
|
|
1153
1276
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
|
1277
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
|
1154
1278
|
transition: top 0.5s, left 0.5s;
|
|
1155
1279
|
}
|
|
1156
1280
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
@@ -1173,22 +1297,6 @@
|
|
|
1173
1297
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
|
1174
1298
|
float: right;
|
|
1175
1299
|
}
|
|
1176
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1177
|
-
height: 100%;
|
|
1178
|
-
width: 100%;
|
|
1179
|
-
}
|
|
1180
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1181
|
-
height: inherit;
|
|
1182
|
-
width: inherit;
|
|
1183
|
-
}
|
|
1184
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1185
|
-
border: 1px #414040 solid;
|
|
1186
|
-
height: 100%;
|
|
1187
|
-
-webkit-user-select: none;
|
|
1188
|
-
-ms-user-select: none;
|
|
1189
|
-
user-select: none;
|
|
1190
|
-
width: 100%;
|
|
1191
|
-
}
|
|
1192
1300
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
|
1193
1301
|
position: absolute;
|
|
1194
1302
|
-ms-touch-action: none;
|
|
@@ -1225,13 +1333,6 @@
|
|
|
1225
1333
|
font-family: "e-icons";
|
|
1226
1334
|
position: absolute;
|
|
1227
1335
|
}
|
|
1228
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1229
|
-
cursor: move;
|
|
1230
|
-
}
|
|
1231
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1232
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1233
|
-
cursor: default;
|
|
1234
|
-
}
|
|
1235
1336
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
|
1236
1337
|
cursor: move;
|
|
1237
1338
|
z-index: 1111 !important;
|
|
@@ -1239,6 +1340,19 @@
|
|
|
1239
1340
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
|
1240
1341
|
float: left;
|
|
1241
1342
|
}
|
|
1343
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1344
|
+
font-size: 14px;
|
|
1345
|
+
font-weight: 500;
|
|
1346
|
+
height: 30px;
|
|
1347
|
+
padding: 0 12px;
|
|
1348
|
+
}
|
|
1349
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1350
|
+
cursor: move;
|
|
1351
|
+
}
|
|
1352
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1353
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1354
|
+
cursor: default;
|
|
1355
|
+
}
|
|
1242
1356
|
.e-dashboardlayout.e-control .e-holder {
|
|
1243
1357
|
background: rgba(0, 116, 204, 0.2);
|
|
1244
1358
|
border: 2px #0074cc dotted;
|
|
@@ -1247,14 +1361,9 @@
|
|
|
1247
1361
|
border-radius: 2px;
|
|
1248
1362
|
}
|
|
1249
1363
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
|
1364
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
|
1250
1365
|
transition: top 0.3s, left 0.3s;
|
|
1251
1366
|
}
|
|
1252
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1253
|
-
font-size: 14px;
|
|
1254
|
-
font-weight: 500;
|
|
1255
|
-
height: 30px;
|
|
1256
|
-
padding: 0 12px;
|
|
1257
|
-
}
|
|
1258
1367
|
|
|
1259
1368
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
1260
1369
|
font-size: 14px;
|
|
@@ -1273,17 +1382,10 @@
|
|
|
1273
1382
|
}
|
|
1274
1383
|
.e-dashboardlayout.e-control .e-panel {
|
|
1275
1384
|
background: #201f1f;
|
|
1276
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1281
|
-
color: #dadada;
|
|
1282
|
-
}
|
|
1283
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1284
|
-
background: #201f1f;
|
|
1285
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1286
|
-
box-sizing: border-box;
|
|
1385
|
+
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1386
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1387
|
+
-webkit-box-sizing: border-box;
|
|
1388
|
+
box-sizing: border-box;
|
|
1287
1389
|
position: absolute;
|
|
1288
1390
|
}
|
|
1289
1391
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
@@ -1362,12 +1464,15 @@
|
|
|
1362
1464
|
.e-timeline [class^="e-dot "]::before,
|
|
1363
1465
|
.e-timeline .e-dot-item,
|
|
1364
1466
|
.e-timeline .e-dot {
|
|
1467
|
+
display: -webkit-box;
|
|
1365
1468
|
display: -ms-flexbox;
|
|
1366
1469
|
display: flex;
|
|
1367
|
-
-
|
|
1368
|
-
align
|
|
1369
|
-
|
|
1370
|
-
|
|
1470
|
+
-webkit-box-align: center;
|
|
1471
|
+
-ms-flex-align: center;
|
|
1472
|
+
align-items: center;
|
|
1473
|
+
-webkit-box-pack: center;
|
|
1474
|
+
-ms-flex-pack: center;
|
|
1475
|
+
justify-content: center;
|
|
1371
1476
|
}
|
|
1372
1477
|
.e-timeline [class^="e-dot "]::before {
|
|
1373
1478
|
min-width: 32px;
|
|
@@ -1375,10 +1480,13 @@
|
|
|
1375
1480
|
border-radius: var(--dot-radius);
|
|
1376
1481
|
}
|
|
1377
1482
|
.e-timeline .e-timeline-items {
|
|
1483
|
+
display: -webkit-inline-box;
|
|
1378
1484
|
display: -ms-inline-flexbox;
|
|
1379
1485
|
display: inline-flex;
|
|
1380
|
-
-
|
|
1381
|
-
|
|
1486
|
+
-webkit-box-orient: vertical;
|
|
1487
|
+
-webkit-box-direction: normal;
|
|
1488
|
+
-ms-flex-direction: column;
|
|
1489
|
+
flex-direction: column;
|
|
1382
1490
|
list-style: none;
|
|
1383
1491
|
-ms-flex-wrap: nowrap;
|
|
1384
1492
|
flex-wrap: nowrap;
|
|
@@ -1387,13 +1495,17 @@
|
|
|
1387
1495
|
height: inherit;
|
|
1388
1496
|
}
|
|
1389
1497
|
.e-timeline .e-timeline-item {
|
|
1498
|
+
display: -webkit-box;
|
|
1390
1499
|
display: -ms-flexbox;
|
|
1391
1500
|
display: flex;
|
|
1392
|
-
-
|
|
1393
|
-
|
|
1501
|
+
-webkit-box-orient: horizontal;
|
|
1502
|
+
-webkit-box-direction: normal;
|
|
1503
|
+
-ms-flex-direction: row;
|
|
1504
|
+
flex-direction: row;
|
|
1394
1505
|
position: relative;
|
|
1395
|
-
-
|
|
1396
|
-
align
|
|
1506
|
+
-webkit-box-align: start;
|
|
1507
|
+
-ms-flex-align: start;
|
|
1508
|
+
align-items: flex-start;
|
|
1397
1509
|
width: inherit;
|
|
1398
1510
|
height: inherit;
|
|
1399
1511
|
}
|
|
@@ -1413,8 +1525,9 @@
|
|
|
1413
1525
|
}
|
|
1414
1526
|
.e-timeline .e-dot-item {
|
|
1415
1527
|
position: relative;
|
|
1416
|
-
-
|
|
1417
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1528
|
+
-webkit-box-flex: 0;
|
|
1529
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
|
1530
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1418
1531
|
z-index: 1000;
|
|
1419
1532
|
}
|
|
1420
1533
|
.e-timeline .e-dot {
|
|
@@ -1430,12 +1543,12 @@
|
|
|
1430
1543
|
}
|
|
1431
1544
|
.e-timeline .e-opposite-content,
|
|
1432
1545
|
.e-timeline .e-content {
|
|
1433
|
-
-
|
|
1434
|
-
flex: 1 1 50%;
|
|
1546
|
+
-webkit-box-flex: 1;
|
|
1547
|
+
-ms-flex: 1 1 50%;
|
|
1548
|
+
flex: 1 1 50%;
|
|
1435
1549
|
}
|
|
1436
1550
|
.e-timeline .e-opposite-content {
|
|
1437
1551
|
font-size: 12px;
|
|
1438
|
-
text-align: right;
|
|
1439
1552
|
}
|
|
1440
1553
|
.e-timeline .e-content {
|
|
1441
1554
|
text-align: left;
|
|
@@ -1449,12 +1562,16 @@
|
|
|
1449
1562
|
bottom: calc(var(--dot-size) * 2);
|
|
1450
1563
|
}
|
|
1451
1564
|
.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) {
|
|
1452
|
-
-
|
|
1453
|
-
|
|
1565
|
+
-webkit-box-orient: horizontal;
|
|
1566
|
+
-webkit-box-direction: reverse;
|
|
1567
|
+
-ms-flex-direction: row-reverse;
|
|
1568
|
+
flex-direction: row-reverse;
|
|
1454
1569
|
}
|
|
1455
1570
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
|
1456
|
-
-
|
|
1457
|
-
|
|
1571
|
+
-webkit-box-orient: vertical;
|
|
1572
|
+
-webkit-box-direction: reverse;
|
|
1573
|
+
-ms-flex-direction: column-reverse;
|
|
1574
|
+
flex-direction: column-reverse;
|
|
1458
1575
|
}
|
|
1459
1576
|
.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 {
|
|
1460
1577
|
text-align: left;
|
|
@@ -1462,6 +1579,19 @@
|
|
|
1462
1579
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
|
1463
1580
|
content: unset;
|
|
1464
1581
|
}
|
|
1582
|
+
.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 {
|
|
1583
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1584
|
+
right: auto;
|
|
1585
|
+
}
|
|
1586
|
+
.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 {
|
|
1587
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1588
|
+
left: auto;
|
|
1589
|
+
}
|
|
1590
|
+
.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 {
|
|
1591
|
+
-webkit-box-flex: 0;
|
|
1592
|
+
-ms-flex: 0;
|
|
1593
|
+
flex: 0;
|
|
1594
|
+
}
|
|
1465
1595
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
|
1466
1596
|
content: unset;
|
|
1467
1597
|
}
|
|
@@ -1479,13 +1609,27 @@
|
|
|
1479
1609
|
width: calc(var(--dot-size) * 2);
|
|
1480
1610
|
}
|
|
1481
1611
|
.e-timeline.e-horizontal .e-timeline-items {
|
|
1612
|
+
display: -webkit-inline-box;
|
|
1482
1613
|
display: -ms-inline-flexbox;
|
|
1483
1614
|
display: inline-flex;
|
|
1484
|
-
-
|
|
1485
|
-
|
|
1615
|
+
-webkit-box-orient: horizontal;
|
|
1616
|
+
-webkit-box-direction: normal;
|
|
1617
|
+
-ms-flex-direction: row;
|
|
1618
|
+
flex-direction: row;
|
|
1486
1619
|
}
|
|
1487
1620
|
.e-timeline.e-horizontal .e-timeline-item {
|
|
1488
1621
|
height: auto;
|
|
1622
|
+
-webkit-box-orient: vertical;
|
|
1623
|
+
-webkit-box-direction: normal;
|
|
1624
|
+
-ms-flex-direction: column;
|
|
1625
|
+
flex-direction: column;
|
|
1626
|
+
-webkit-box-align: center;
|
|
1627
|
+
-ms-flex-align: center;
|
|
1628
|
+
align-items: center;
|
|
1629
|
+
}
|
|
1630
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
|
1631
|
+
left: calc(50% - var(--connector-size));
|
|
1632
|
+
right: auto;
|
|
1489
1633
|
}
|
|
1490
1634
|
.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 {
|
|
1491
1635
|
right: calc(50% - var(--connector-size));
|
|
@@ -1494,32 +1638,33 @@
|
|
|
1494
1638
|
.e-timeline.e-horizontal .e-dot-item {
|
|
1495
1639
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
|
1496
1640
|
}
|
|
1497
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
|
1498
|
-
-ms-flex-direction: column;
|
|
1499
|
-
flex-direction: column;
|
|
1500
|
-
-ms-flex-align: center;
|
|
1501
|
-
align-items: center;
|
|
1502
|
-
}
|
|
1503
1641
|
.e-timeline.e-horizontal .e-opposite-content,
|
|
1504
1642
|
.e-timeline.e-horizontal .e-content {
|
|
1643
|
+
display: -webkit-box;
|
|
1505
1644
|
display: -ms-flexbox;
|
|
1506
1645
|
display: flex;
|
|
1507
1646
|
}
|
|
1508
1647
|
.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 {
|
|
1509
|
-
-
|
|
1510
|
-
align
|
|
1648
|
+
-webkit-box-align: end;
|
|
1649
|
+
-ms-flex-align: end;
|
|
1650
|
+
align-items: flex-end;
|
|
1511
1651
|
}
|
|
1512
1652
|
.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 {
|
|
1513
|
-
-
|
|
1514
|
-
align
|
|
1653
|
+
-webkit-box-align: start;
|
|
1654
|
+
-ms-flex-align: start;
|
|
1655
|
+
align-items: flex-start;
|
|
1515
1656
|
}
|
|
1516
1657
|
.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) {
|
|
1517
|
-
-
|
|
1518
|
-
|
|
1658
|
+
-webkit-box-orient: vertical;
|
|
1659
|
+
-webkit-box-direction: reverse;
|
|
1660
|
+
-ms-flex-direction: column-reverse;
|
|
1661
|
+
flex-direction: column-reverse;
|
|
1519
1662
|
}
|
|
1520
1663
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
|
1521
|
-
-
|
|
1522
|
-
|
|
1664
|
+
-webkit-box-orient: horizontal;
|
|
1665
|
+
-webkit-box-direction: reverse;
|
|
1666
|
+
-ms-flex-direction: row-reverse;
|
|
1667
|
+
flex-direction: row-reverse;
|
|
1523
1668
|
}
|
|
1524
1669
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
|
1525
1670
|
width: 100%;
|
|
@@ -1527,10 +1672,12 @@
|
|
|
1527
1672
|
top: calc(50% - var(--connector-size));
|
|
1528
1673
|
}
|
|
1529
1674
|
.e-timeline.e-horizontal .e-opposite-content {
|
|
1675
|
+
display: -webkit-box;
|
|
1530
1676
|
display: -ms-flexbox;
|
|
1531
1677
|
display: flex;
|
|
1532
|
-
-
|
|
1533
|
-
align
|
|
1678
|
+
-webkit-box-align: end;
|
|
1679
|
+
-ms-flex-align: end;
|
|
1680
|
+
align-items: flex-end;
|
|
1534
1681
|
text-align: left;
|
|
1535
1682
|
padding: 0;
|
|
1536
1683
|
}
|
|
@@ -1549,8 +1696,23 @@
|
|
|
1549
1696
|
}
|
|
1550
1697
|
.e-bigger.e-timeline .e-dot-item,
|
|
1551
1698
|
.e-bigger .e-timeline .e-dot-item {
|
|
1552
|
-
-
|
|
1553
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1699
|
+
-webkit-box-flex: 0;
|
|
1700
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
|
1701
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1702
|
+
}
|
|
1703
|
+
.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,
|
|
1704
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
|
1705
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1706
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
|
1707
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
|
1708
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1709
|
+
}
|
|
1710
|
+
.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,
|
|
1711
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
|
1712
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1713
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
|
1714
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
|
1715
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1554
1716
|
}
|
|
1555
1717
|
.e-bigger.e-timeline .e-dot,
|
|
1556
1718
|
.e-bigger .e-timeline .e-dot {
|