@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/material-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: "Roboto", "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: "Roboto", "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: #303030;
|
|
498
543
|
border: 1px solid #000;
|
|
499
|
-
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.4);
|
|
544
|
+
-webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.4);
|
|
545
|
+
box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.4);
|
|
500
546
|
color: #000;
|
|
501
547
|
outline: none;
|
|
502
548
|
}
|
|
@@ -584,6 +630,7 @@
|
|
|
584
630
|
|
|
585
631
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
586
632
|
border-width: 1px;
|
|
633
|
+
display: -webkit-box;
|
|
587
634
|
display: -ms-flexbox;
|
|
588
635
|
display: flex;
|
|
589
636
|
overflow: hidden;
|
|
@@ -593,8 +640,9 @@
|
|
|
593
640
|
width: 100%;
|
|
594
641
|
}
|
|
595
642
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
|
596
|
-
-
|
|
597
|
-
flex: 1 1 auto;
|
|
643
|
+
-webkit-box-flex: 1;
|
|
644
|
+
-ms-flex: 1 1 auto;
|
|
645
|
+
flex: 1 1 auto;
|
|
598
646
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
599
647
|
font-size: 13px;
|
|
600
648
|
font-weight: normal;
|
|
@@ -603,8 +651,9 @@
|
|
|
603
651
|
overflow: auto;
|
|
604
652
|
}
|
|
605
653
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
|
606
|
-
-
|
|
607
|
-
flex-
|
|
654
|
+
-webkit-box-flex: 0;
|
|
655
|
+
-ms-flex-positive: 0;
|
|
656
|
+
flex-grow: 0;
|
|
608
657
|
-ms-flex-negative: 0;
|
|
609
658
|
flex-shrink: 0;
|
|
610
659
|
}
|
|
@@ -617,27 +666,35 @@
|
|
|
617
666
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
618
667
|
}
|
|
619
668
|
.e-splitter.e-splitter-horizontal {
|
|
620
|
-
-
|
|
621
|
-
|
|
669
|
+
-webkit-box-orient: horizontal;
|
|
670
|
+
-webkit-box-direction: normal;
|
|
671
|
+
-ms-flex-direction: row;
|
|
672
|
+
flex-direction: row;
|
|
622
673
|
}
|
|
623
674
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
|
624
675
|
overflow: hidden;
|
|
625
676
|
}
|
|
626
677
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
|
627
|
-
-
|
|
628
|
-
|
|
678
|
+
-webkit-box-orient: horizontal;
|
|
679
|
+
-webkit-box-direction: reverse;
|
|
680
|
+
-ms-flex-direction: row-reverse;
|
|
681
|
+
flex-direction: row-reverse;
|
|
629
682
|
}
|
|
630
683
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
|
631
|
-
-
|
|
632
|
-
|
|
684
|
+
-webkit-box-orient: horizontal;
|
|
685
|
+
-webkit-box-direction: reverse;
|
|
686
|
+
-ms-flex-direction: row-reverse;
|
|
687
|
+
flex-direction: row-reverse;
|
|
633
688
|
}
|
|
634
689
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
|
635
690
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
|
636
691
|
right: auto;
|
|
637
692
|
}
|
|
638
693
|
.e-splitter.e-splitter-vertical {
|
|
639
|
-
-
|
|
640
|
-
|
|
694
|
+
-webkit-box-orient: vertical;
|
|
695
|
+
-webkit-box-direction: normal;
|
|
696
|
+
-ms-flex-direction: column;
|
|
697
|
+
flex-direction: column;
|
|
641
698
|
}
|
|
642
699
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
|
643
700
|
overflow: hidden;
|
|
@@ -669,14 +726,18 @@
|
|
|
669
726
|
right: auto;
|
|
670
727
|
}
|
|
671
728
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
|
672
|
-
-
|
|
673
|
-
align
|
|
729
|
+
-webkit-box-align: center;
|
|
730
|
+
-ms-flex-align: center;
|
|
731
|
+
align-items: center;
|
|
732
|
+
display: -webkit-box;
|
|
674
733
|
display: -ms-flexbox;
|
|
675
734
|
display: flex;
|
|
676
|
-
-
|
|
677
|
-
flex: 0 0 auto;
|
|
678
|
-
|
|
679
|
-
|
|
735
|
+
-webkit-box-flex: 0;
|
|
736
|
+
-ms-flex: 0 0 auto;
|
|
737
|
+
flex: 0 0 auto;
|
|
738
|
+
-webkit-box-pack: center;
|
|
739
|
+
-ms-flex-pack: center;
|
|
740
|
+
justify-content: center;
|
|
680
741
|
min-width: 1px;
|
|
681
742
|
z-index: 15;
|
|
682
743
|
}
|
|
@@ -696,13 +757,16 @@
|
|
|
696
757
|
z-index: 10;
|
|
697
758
|
}
|
|
698
759
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
|
699
|
-
-
|
|
700
|
-
align
|
|
760
|
+
-webkit-box-align: center;
|
|
761
|
+
-ms-flex-align: center;
|
|
762
|
+
align-items: center;
|
|
763
|
+
display: -webkit-box;
|
|
701
764
|
display: -ms-flexbox;
|
|
702
765
|
display: flex;
|
|
703
766
|
height: 18px;
|
|
704
|
-
-
|
|
705
|
-
|
|
767
|
+
-webkit-box-pack: center;
|
|
768
|
+
-ms-flex-pack: center;
|
|
769
|
+
justify-content: center;
|
|
706
770
|
position: relative;
|
|
707
771
|
width: 1px;
|
|
708
772
|
}
|
|
@@ -715,9 +779,11 @@
|
|
|
715
779
|
right: 3px;
|
|
716
780
|
}
|
|
717
781
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
|
718
|
-
border-image: none;
|
|
782
|
+
-o-border-image: none;
|
|
783
|
+
border-image: none;
|
|
719
784
|
border-width: 1px;
|
|
720
785
|
cursor: pointer;
|
|
786
|
+
display: -webkit-box;
|
|
721
787
|
display: -ms-flexbox;
|
|
722
788
|
display: flex;
|
|
723
789
|
height: 26px;
|
|
@@ -729,16 +795,19 @@
|
|
|
729
795
|
content: "";
|
|
730
796
|
height: 8px;
|
|
731
797
|
position: absolute;
|
|
732
|
-
transform: rotate(0deg);
|
|
798
|
+
-webkit-transform: rotate(0deg);
|
|
799
|
+
transform: rotate(0deg);
|
|
733
800
|
width: 2px;
|
|
734
801
|
}
|
|
735
802
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
|
736
803
|
top: 5px;
|
|
737
|
-
transform-origin: 1px 7px 0;
|
|
804
|
+
-webkit-transform-origin: 1px 7px 0;
|
|
805
|
+
transform-origin: 1px 7px 0;
|
|
738
806
|
}
|
|
739
807
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
|
740
808
|
top: 11px;
|
|
741
|
-
transform-origin: 1px 1px 0;
|
|
809
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
810
|
+
transform-origin: 1px 1px 0;
|
|
742
811
|
}
|
|
743
812
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
|
744
813
|
border-radius: 50%;
|
|
@@ -758,16 +827,20 @@
|
|
|
758
827
|
margin: 0 0 0 3px;
|
|
759
828
|
}
|
|
760
829
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
|
761
|
-
-
|
|
762
|
-
align
|
|
830
|
+
-webkit-box-align: center;
|
|
831
|
+
-ms-flex-align: center;
|
|
832
|
+
align-items: center;
|
|
763
833
|
border-left: none;
|
|
764
834
|
border-right: none;
|
|
835
|
+
display: -webkit-box;
|
|
765
836
|
display: -ms-flexbox;
|
|
766
837
|
display: flex;
|
|
767
|
-
-
|
|
768
|
-
flex: 0 0 auto;
|
|
769
|
-
|
|
770
|
-
|
|
838
|
+
-webkit-box-flex: 0;
|
|
839
|
+
-ms-flex: 0 0 auto;
|
|
840
|
+
flex: 0 0 auto;
|
|
841
|
+
-webkit-box-pack: center;
|
|
842
|
+
-ms-flex-pack: center;
|
|
843
|
+
justify-content: center;
|
|
771
844
|
min-height: 1px;
|
|
772
845
|
}
|
|
773
846
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
|
@@ -786,13 +859,16 @@
|
|
|
786
859
|
z-index: 12;
|
|
787
860
|
}
|
|
788
861
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
|
789
|
-
-
|
|
790
|
-
align
|
|
862
|
+
-webkit-box-align: center;
|
|
863
|
+
-ms-flex-align: center;
|
|
864
|
+
align-items: center;
|
|
865
|
+
display: -webkit-box;
|
|
791
866
|
display: -ms-flexbox;
|
|
792
867
|
display: flex;
|
|
793
868
|
height: 1px;
|
|
794
|
-
-
|
|
795
|
-
|
|
869
|
+
-webkit-box-pack: center;
|
|
870
|
+
-ms-flex-pack: center;
|
|
871
|
+
justify-content: center;
|
|
796
872
|
width: 18px;
|
|
797
873
|
}
|
|
798
874
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
|
@@ -803,9 +879,11 @@
|
|
|
803
879
|
left: 10px;
|
|
804
880
|
}
|
|
805
881
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
806
|
-
border-image: none;
|
|
882
|
+
-o-border-image: none;
|
|
883
|
+
border-image: none;
|
|
807
884
|
border-width: 0;
|
|
808
885
|
cursor: pointer;
|
|
886
|
+
display: -webkit-box;
|
|
809
887
|
display: -ms-flexbox;
|
|
810
888
|
display: flex;
|
|
811
889
|
height: 26px;
|
|
@@ -818,27 +896,32 @@
|
|
|
818
896
|
content: "";
|
|
819
897
|
height: 8px;
|
|
820
898
|
position: absolute;
|
|
821
|
-
transform: rotate(90deg);
|
|
899
|
+
-webkit-transform: rotate(90deg);
|
|
900
|
+
transform: rotate(90deg);
|
|
822
901
|
width: 2px;
|
|
823
902
|
}
|
|
824
903
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
|
825
904
|
top: 3px;
|
|
826
|
-
transform-origin: 2px 7px 0;
|
|
905
|
+
-webkit-transform-origin: 2px 7px 0;
|
|
906
|
+
transform-origin: 2px 7px 0;
|
|
827
907
|
}
|
|
828
908
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
|
829
909
|
left: 11px;
|
|
830
910
|
top: 8px;
|
|
831
|
-
transform-origin: 1px 1px 0;
|
|
911
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
912
|
+
transform-origin: 1px 1px 0;
|
|
832
913
|
}
|
|
833
914
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
|
834
915
|
left: 12px;
|
|
835
916
|
top: 8px;
|
|
836
|
-
transform-origin: 1px 6px 0;
|
|
917
|
+
-webkit-transform-origin: 1px 6px 0;
|
|
918
|
+
transform-origin: 1px 6px 0;
|
|
837
919
|
}
|
|
838
920
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
|
839
921
|
left: 10px;
|
|
840
922
|
top: 12px;
|
|
841
|
-
transform-origin: 1px 2px 0;
|
|
923
|
+
-webkit-transform-origin: 1px 2px 0;
|
|
924
|
+
transform-origin: 1px 2px 0;
|
|
842
925
|
}
|
|
843
926
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
|
844
927
|
border-radius: 50%;
|
|
@@ -878,8 +961,10 @@
|
|
|
878
961
|
}
|
|
879
962
|
|
|
880
963
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
|
881
|
-
-
|
|
882
|
-
|
|
964
|
+
-webkit-box-orient: horizontal;
|
|
965
|
+
-webkit-box-direction: reverse;
|
|
966
|
+
-ms-flex-direction: row-reverse;
|
|
967
|
+
flex-direction: row-reverse;
|
|
883
968
|
}
|
|
884
969
|
|
|
885
970
|
.e-bigger .e-splitter .e-pane {
|
|
@@ -908,8 +993,10 @@
|
|
|
908
993
|
}
|
|
909
994
|
|
|
910
995
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
|
911
|
-
-
|
|
912
|
-
|
|
996
|
+
-webkit-box-orient: vertical;
|
|
997
|
+
-webkit-box-direction: normal;
|
|
998
|
+
-ms-flex-direction: column;
|
|
999
|
+
flex-direction: column;
|
|
913
1000
|
}
|
|
914
1001
|
|
|
915
1002
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
@@ -935,13 +1022,16 @@
|
|
|
935
1022
|
background-color: transparent;
|
|
936
1023
|
border-color: transparent;
|
|
937
1024
|
color: transparent;
|
|
1025
|
+
-webkit-transition: background-color 500ms ease-out;
|
|
938
1026
|
transition: background-color 500ms ease-out;
|
|
939
1027
|
}
|
|
940
1028
|
.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 {
|
|
941
1029
|
background-color: rgb(255, 128, 171);
|
|
942
1030
|
opacity: 0;
|
|
943
|
-
transition-duration: 0.3s;
|
|
944
|
-
|
|
1031
|
+
-webkit-transition-duration: 0.3s;
|
|
1032
|
+
transition-duration: 0.3s;
|
|
1033
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1034
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
945
1035
|
}
|
|
946
1036
|
.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 {
|
|
947
1037
|
background: #00b0ff;
|
|
@@ -961,22 +1051,26 @@
|
|
|
961
1051
|
.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 {
|
|
962
1052
|
background-color: rgb(255, 128, 171);
|
|
963
1053
|
opacity: 1;
|
|
964
|
-
transform: rotate(40deg);
|
|
1054
|
+
-webkit-transform: rotate(40deg);
|
|
1055
|
+
transform: rotate(40deg);
|
|
965
1056
|
}
|
|
966
1057
|
.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 {
|
|
967
1058
|
background-color: rgb(255, 128, 171);
|
|
968
1059
|
opacity: 1;
|
|
969
|
-
transform: rotate(-40deg);
|
|
1060
|
+
-webkit-transform: rotate(-40deg);
|
|
1061
|
+
transform: rotate(-40deg);
|
|
970
1062
|
}
|
|
971
1063
|
.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 {
|
|
972
1064
|
background-color: rgb(255, 128, 171);
|
|
973
1065
|
opacity: 1;
|
|
974
|
-
transform: rotate(-40deg);
|
|
1066
|
+
-webkit-transform: rotate(-40deg);
|
|
1067
|
+
transform: rotate(-40deg);
|
|
975
1068
|
}
|
|
976
1069
|
.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 {
|
|
977
1070
|
background-color: rgb(255, 128, 171);
|
|
978
1071
|
opacity: 1;
|
|
979
|
-
transform: rotate(40deg);
|
|
1072
|
+
-webkit-transform: rotate(40deg);
|
|
1073
|
+
transform: rotate(40deg);
|
|
980
1074
|
}
|
|
981
1075
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
982
1076
|
background: #00b0ff;
|
|
@@ -1011,34 +1105,41 @@
|
|
|
1011
1105
|
.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 {
|
|
1012
1106
|
background-color: rgb(255, 128, 171);
|
|
1013
1107
|
opacity: 1;
|
|
1014
|
-
transform: rotate(125deg);
|
|
1108
|
+
-webkit-transform: rotate(125deg);
|
|
1109
|
+
transform: rotate(125deg);
|
|
1015
1110
|
}
|
|
1016
1111
|
.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 {
|
|
1017
1112
|
background-color: rgb(255, 128, 171);
|
|
1018
1113
|
opacity: 1;
|
|
1019
|
-
transform: rotate(50deg);
|
|
1114
|
+
-webkit-transform: rotate(50deg);
|
|
1115
|
+
transform: rotate(50deg);
|
|
1020
1116
|
}
|
|
1021
1117
|
.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 {
|
|
1022
1118
|
background-color: rgb(255, 128, 171);
|
|
1023
1119
|
opacity: 1;
|
|
1024
|
-
transform: rotate(55deg);
|
|
1120
|
+
-webkit-transform: rotate(55deg);
|
|
1121
|
+
transform: rotate(55deg);
|
|
1025
1122
|
}
|
|
1026
1123
|
.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 {
|
|
1027
1124
|
background-color: rgb(255, 128, 171);
|
|
1028
1125
|
opacity: 1;
|
|
1029
|
-
transform: rotate(125deg);
|
|
1126
|
+
-webkit-transform: rotate(125deg);
|
|
1127
|
+
transform: rotate(125deg);
|
|
1030
1128
|
}
|
|
1031
1129
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
1032
1130
|
background-color: transparent;
|
|
1033
1131
|
border-color: transparent;
|
|
1034
1132
|
color: transparent;
|
|
1133
|
+
-webkit-transition: background-color 300ms ease-out;
|
|
1035
1134
|
transition: background-color 300ms ease-out;
|
|
1036
1135
|
}
|
|
1037
1136
|
.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 {
|
|
1038
1137
|
background-color: rgb(255, 128, 171);
|
|
1039
1138
|
opacity: 0;
|
|
1040
|
-
transition-duration: 0.3s;
|
|
1041
|
-
|
|
1139
|
+
-webkit-transition-duration: 0.3s;
|
|
1140
|
+
transition-duration: 0.3s;
|
|
1141
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1142
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1042
1143
|
}
|
|
1043
1144
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
|
1044
1145
|
background: #00b0ff;
|
|
@@ -1052,7 +1153,8 @@
|
|
|
1052
1153
|
pointer-events: none;
|
|
1053
1154
|
}
|
|
1054
1155
|
|
|
1055
|
-
/* stylelint-disable-line no-empty-source */
|
|
1156
|
+
/* stylelint-disable-line no-empty-source */
|
|
1157
|
+
/*! component's theme wise override material-definitions and variables */
|
|
1056
1158
|
/* stylelint-disable */
|
|
1057
1159
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
|
1058
1160
|
height: 100%;
|
|
@@ -1113,7 +1215,8 @@
|
|
|
1113
1215
|
font-size: 12px;
|
|
1114
1216
|
left: 0;
|
|
1115
1217
|
position: absolute;
|
|
1116
|
-
transform: rotateY(180deg);
|
|
1218
|
+
-webkit-transform: rotateY(180deg);
|
|
1219
|
+
transform: rotateY(180deg);
|
|
1117
1220
|
}
|
|
1118
1221
|
|
|
1119
1222
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
|
@@ -1122,7 +1225,7 @@
|
|
|
1122
1225
|
height: 100%;
|
|
1123
1226
|
width: 100%;
|
|
1124
1227
|
}
|
|
1125
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
|
1228
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
|
1126
1229
|
border: 1px dotted #424242;
|
|
1127
1230
|
position: absolute;
|
|
1128
1231
|
}
|
|
@@ -1131,10 +1234,21 @@
|
|
|
1131
1234
|
}
|
|
1132
1235
|
.e-dashboardlayout.e-control.e-prevent {
|
|
1133
1236
|
-webkit-user-select: none;
|
|
1237
|
+
-moz-user-select: none;
|
|
1134
1238
|
-ms-user-select: none;
|
|
1135
1239
|
user-select: none;
|
|
1136
1240
|
}
|
|
1241
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
|
1242
|
+
position: relative;
|
|
1243
|
+
}
|
|
1137
1244
|
.e-dashboardlayout.e-control .e-panel {
|
|
1245
|
+
border: 1px #616161 solid;
|
|
1246
|
+
height: 100%;
|
|
1247
|
+
-webkit-user-select: none;
|
|
1248
|
+
-moz-user-select: none;
|
|
1249
|
+
-ms-user-select: none;
|
|
1250
|
+
user-select: none;
|
|
1251
|
+
width: 100%;
|
|
1138
1252
|
border-radius: 2px;
|
|
1139
1253
|
}
|
|
1140
1254
|
.e-dashboardlayout.e-control .e-panel:hover {
|
|
@@ -1146,10 +1260,19 @@
|
|
|
1146
1260
|
.e-dashboardlayout.e-control .e-panel:active {
|
|
1147
1261
|
border: 1px #00b0ff solid;
|
|
1148
1262
|
}
|
|
1263
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1264
|
+
height: 100%;
|
|
1265
|
+
width: 100%;
|
|
1266
|
+
}
|
|
1267
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1268
|
+
height: inherit;
|
|
1269
|
+
width: inherit;
|
|
1270
|
+
}
|
|
1149
1271
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
|
1150
1272
|
display: none;
|
|
1151
1273
|
}
|
|
1152
1274
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
|
1275
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
|
1153
1276
|
transition: top 0.5s, left 0.5s;
|
|
1154
1277
|
}
|
|
1155
1278
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
@@ -1172,22 +1295,6 @@
|
|
|
1172
1295
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
|
1173
1296
|
float: right;
|
|
1174
1297
|
}
|
|
1175
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1176
|
-
height: 100%;
|
|
1177
|
-
width: 100%;
|
|
1178
|
-
}
|
|
1179
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1180
|
-
height: inherit;
|
|
1181
|
-
width: inherit;
|
|
1182
|
-
}
|
|
1183
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1184
|
-
border: 1px #616161 solid;
|
|
1185
|
-
height: 100%;
|
|
1186
|
-
-webkit-user-select: none;
|
|
1187
|
-
-ms-user-select: none;
|
|
1188
|
-
user-select: none;
|
|
1189
|
-
width: 100%;
|
|
1190
|
-
}
|
|
1191
1298
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
|
1192
1299
|
position: absolute;
|
|
1193
1300
|
-ms-touch-action: none;
|
|
@@ -1224,13 +1331,6 @@
|
|
|
1224
1331
|
font-family: "e-icons";
|
|
1225
1332
|
position: absolute;
|
|
1226
1333
|
}
|
|
1227
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1228
|
-
cursor: move;
|
|
1229
|
-
}
|
|
1230
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1231
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1232
|
-
cursor: default;
|
|
1233
|
-
}
|
|
1234
1334
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
|
1235
1335
|
cursor: move;
|
|
1236
1336
|
z-index: 1111 !important;
|
|
@@ -1238,6 +1338,19 @@
|
|
|
1238
1338
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
|
1239
1339
|
float: left;
|
|
1240
1340
|
}
|
|
1341
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1342
|
+
font-size: 13px;
|
|
1343
|
+
font-weight: 500;
|
|
1344
|
+
height: 30px;
|
|
1345
|
+
padding: 0 12px;
|
|
1346
|
+
}
|
|
1347
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1348
|
+
cursor: move;
|
|
1349
|
+
}
|
|
1350
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1351
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1352
|
+
cursor: default;
|
|
1353
|
+
}
|
|
1241
1354
|
.e-dashboardlayout.e-control .e-holder {
|
|
1242
1355
|
background: rgba(0, 176, 255, 0.25);
|
|
1243
1356
|
border: 2px rgba(0, 176, 255, 0.25) dotted;
|
|
@@ -1246,14 +1359,9 @@
|
|
|
1246
1359
|
border-radius: 2px;
|
|
1247
1360
|
}
|
|
1248
1361
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
|
1362
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
|
1249
1363
|
transition: top 0.3s, left 0.3s;
|
|
1250
1364
|
}
|
|
1251
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1252
|
-
font-size: 13px;
|
|
1253
|
-
font-weight: 500;
|
|
1254
|
-
height: 30px;
|
|
1255
|
-
padding: 0 12px;
|
|
1256
|
-
}
|
|
1257
1365
|
|
|
1258
1366
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
1259
1367
|
font-size: 13px;
|
|
@@ -1272,17 +1380,10 @@
|
|
|
1272
1380
|
}
|
|
1273
1381
|
.e-dashboardlayout.e-control .e-panel {
|
|
1274
1382
|
background: #303030;
|
|
1275
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1280
|
-
color: rgba(255, 255, 255, 0.7);
|
|
1281
|
-
}
|
|
1282
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1283
|
-
background: #303030;
|
|
1284
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1285
|
-
box-sizing: border-box;
|
|
1383
|
+
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1384
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
|
1385
|
+
-webkit-box-sizing: border-box;
|
|
1386
|
+
box-sizing: border-box;
|
|
1286
1387
|
position: absolute;
|
|
1287
1388
|
}
|
|
1288
1389
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
@@ -1361,12 +1462,15 @@
|
|
|
1361
1462
|
.e-timeline [class^="e-dot "]::before,
|
|
1362
1463
|
.e-timeline .e-dot-item,
|
|
1363
1464
|
.e-timeline .e-dot {
|
|
1465
|
+
display: -webkit-box;
|
|
1364
1466
|
display: -ms-flexbox;
|
|
1365
1467
|
display: flex;
|
|
1366
|
-
-
|
|
1367
|
-
align
|
|
1368
|
-
|
|
1369
|
-
|
|
1468
|
+
-webkit-box-align: center;
|
|
1469
|
+
-ms-flex-align: center;
|
|
1470
|
+
align-items: center;
|
|
1471
|
+
-webkit-box-pack: center;
|
|
1472
|
+
-ms-flex-pack: center;
|
|
1473
|
+
justify-content: center;
|
|
1370
1474
|
}
|
|
1371
1475
|
.e-timeline [class^="e-dot "]::before {
|
|
1372
1476
|
min-width: 32px;
|
|
@@ -1374,10 +1478,13 @@
|
|
|
1374
1478
|
border-radius: var(--dot-radius);
|
|
1375
1479
|
}
|
|
1376
1480
|
.e-timeline .e-timeline-items {
|
|
1481
|
+
display: -webkit-inline-box;
|
|
1377
1482
|
display: -ms-inline-flexbox;
|
|
1378
1483
|
display: inline-flex;
|
|
1379
|
-
-
|
|
1380
|
-
|
|
1484
|
+
-webkit-box-orient: vertical;
|
|
1485
|
+
-webkit-box-direction: normal;
|
|
1486
|
+
-ms-flex-direction: column;
|
|
1487
|
+
flex-direction: column;
|
|
1381
1488
|
list-style: none;
|
|
1382
1489
|
-ms-flex-wrap: nowrap;
|
|
1383
1490
|
flex-wrap: nowrap;
|
|
@@ -1386,13 +1493,17 @@
|
|
|
1386
1493
|
height: inherit;
|
|
1387
1494
|
}
|
|
1388
1495
|
.e-timeline .e-timeline-item {
|
|
1496
|
+
display: -webkit-box;
|
|
1389
1497
|
display: -ms-flexbox;
|
|
1390
1498
|
display: flex;
|
|
1391
|
-
-
|
|
1392
|
-
|
|
1499
|
+
-webkit-box-orient: horizontal;
|
|
1500
|
+
-webkit-box-direction: normal;
|
|
1501
|
+
-ms-flex-direction: row;
|
|
1502
|
+
flex-direction: row;
|
|
1393
1503
|
position: relative;
|
|
1394
|
-
-
|
|
1395
|
-
align
|
|
1504
|
+
-webkit-box-align: start;
|
|
1505
|
+
-ms-flex-align: start;
|
|
1506
|
+
align-items: flex-start;
|
|
1396
1507
|
width: inherit;
|
|
1397
1508
|
height: inherit;
|
|
1398
1509
|
}
|
|
@@ -1412,8 +1523,9 @@
|
|
|
1412
1523
|
}
|
|
1413
1524
|
.e-timeline .e-dot-item {
|
|
1414
1525
|
position: relative;
|
|
1415
|
-
-
|
|
1416
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1526
|
+
-webkit-box-flex: 0;
|
|
1527
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
|
1528
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1417
1529
|
z-index: 1000;
|
|
1418
1530
|
}
|
|
1419
1531
|
.e-timeline .e-dot {
|
|
@@ -1429,12 +1541,12 @@
|
|
|
1429
1541
|
}
|
|
1430
1542
|
.e-timeline .e-opposite-content,
|
|
1431
1543
|
.e-timeline .e-content {
|
|
1432
|
-
-
|
|
1433
|
-
flex: 1 1 50%;
|
|
1544
|
+
-webkit-box-flex: 1;
|
|
1545
|
+
-ms-flex: 1 1 50%;
|
|
1546
|
+
flex: 1 1 50%;
|
|
1434
1547
|
}
|
|
1435
1548
|
.e-timeline .e-opposite-content {
|
|
1436
1549
|
font-size: 12px;
|
|
1437
|
-
text-align: right;
|
|
1438
1550
|
}
|
|
1439
1551
|
.e-timeline .e-content {
|
|
1440
1552
|
text-align: left;
|
|
@@ -1448,12 +1560,16 @@
|
|
|
1448
1560
|
bottom: calc(var(--dot-size) * 2);
|
|
1449
1561
|
}
|
|
1450
1562
|
.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) {
|
|
1451
|
-
-
|
|
1452
|
-
|
|
1563
|
+
-webkit-box-orient: horizontal;
|
|
1564
|
+
-webkit-box-direction: reverse;
|
|
1565
|
+
-ms-flex-direction: row-reverse;
|
|
1566
|
+
flex-direction: row-reverse;
|
|
1453
1567
|
}
|
|
1454
1568
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
|
1455
|
-
-
|
|
1456
|
-
|
|
1569
|
+
-webkit-box-orient: vertical;
|
|
1570
|
+
-webkit-box-direction: reverse;
|
|
1571
|
+
-ms-flex-direction: column-reverse;
|
|
1572
|
+
flex-direction: column-reverse;
|
|
1457
1573
|
}
|
|
1458
1574
|
.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 {
|
|
1459
1575
|
text-align: left;
|
|
@@ -1461,6 +1577,19 @@
|
|
|
1461
1577
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
|
1462
1578
|
content: unset;
|
|
1463
1579
|
}
|
|
1580
|
+
.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 {
|
|
1581
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1582
|
+
right: auto;
|
|
1583
|
+
}
|
|
1584
|
+
.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 {
|
|
1585
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1586
|
+
left: auto;
|
|
1587
|
+
}
|
|
1588
|
+
.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 {
|
|
1589
|
+
-webkit-box-flex: 0;
|
|
1590
|
+
-ms-flex: 0;
|
|
1591
|
+
flex: 0;
|
|
1592
|
+
}
|
|
1464
1593
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
|
1465
1594
|
content: unset;
|
|
1466
1595
|
}
|
|
@@ -1478,13 +1607,27 @@
|
|
|
1478
1607
|
width: calc(var(--dot-size) * 2);
|
|
1479
1608
|
}
|
|
1480
1609
|
.e-timeline.e-horizontal .e-timeline-items {
|
|
1610
|
+
display: -webkit-inline-box;
|
|
1481
1611
|
display: -ms-inline-flexbox;
|
|
1482
1612
|
display: inline-flex;
|
|
1483
|
-
-
|
|
1484
|
-
|
|
1613
|
+
-webkit-box-orient: horizontal;
|
|
1614
|
+
-webkit-box-direction: normal;
|
|
1615
|
+
-ms-flex-direction: row;
|
|
1616
|
+
flex-direction: row;
|
|
1485
1617
|
}
|
|
1486
1618
|
.e-timeline.e-horizontal .e-timeline-item {
|
|
1487
1619
|
height: auto;
|
|
1620
|
+
-webkit-box-orient: vertical;
|
|
1621
|
+
-webkit-box-direction: normal;
|
|
1622
|
+
-ms-flex-direction: column;
|
|
1623
|
+
flex-direction: column;
|
|
1624
|
+
-webkit-box-align: center;
|
|
1625
|
+
-ms-flex-align: center;
|
|
1626
|
+
align-items: center;
|
|
1627
|
+
}
|
|
1628
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
|
1629
|
+
left: calc(50% - var(--connector-size));
|
|
1630
|
+
right: auto;
|
|
1488
1631
|
}
|
|
1489
1632
|
.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 {
|
|
1490
1633
|
right: calc(50% - var(--connector-size));
|
|
@@ -1493,32 +1636,33 @@
|
|
|
1493
1636
|
.e-timeline.e-horizontal .e-dot-item {
|
|
1494
1637
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
|
1495
1638
|
}
|
|
1496
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
|
1497
|
-
-ms-flex-direction: column;
|
|
1498
|
-
flex-direction: column;
|
|
1499
|
-
-ms-flex-align: center;
|
|
1500
|
-
align-items: center;
|
|
1501
|
-
}
|
|
1502
1639
|
.e-timeline.e-horizontal .e-opposite-content,
|
|
1503
1640
|
.e-timeline.e-horizontal .e-content {
|
|
1641
|
+
display: -webkit-box;
|
|
1504
1642
|
display: -ms-flexbox;
|
|
1505
1643
|
display: flex;
|
|
1506
1644
|
}
|
|
1507
1645
|
.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 {
|
|
1508
|
-
-
|
|
1509
|
-
align
|
|
1646
|
+
-webkit-box-align: end;
|
|
1647
|
+
-ms-flex-align: end;
|
|
1648
|
+
align-items: flex-end;
|
|
1510
1649
|
}
|
|
1511
1650
|
.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 {
|
|
1512
|
-
-
|
|
1513
|
-
align
|
|
1651
|
+
-webkit-box-align: start;
|
|
1652
|
+
-ms-flex-align: start;
|
|
1653
|
+
align-items: flex-start;
|
|
1514
1654
|
}
|
|
1515
1655
|
.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) {
|
|
1516
|
-
-
|
|
1517
|
-
|
|
1656
|
+
-webkit-box-orient: vertical;
|
|
1657
|
+
-webkit-box-direction: reverse;
|
|
1658
|
+
-ms-flex-direction: column-reverse;
|
|
1659
|
+
flex-direction: column-reverse;
|
|
1518
1660
|
}
|
|
1519
1661
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
|
1520
|
-
-
|
|
1521
|
-
|
|
1662
|
+
-webkit-box-orient: horizontal;
|
|
1663
|
+
-webkit-box-direction: reverse;
|
|
1664
|
+
-ms-flex-direction: row-reverse;
|
|
1665
|
+
flex-direction: row-reverse;
|
|
1522
1666
|
}
|
|
1523
1667
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
|
1524
1668
|
width: 100%;
|
|
@@ -1526,10 +1670,12 @@
|
|
|
1526
1670
|
top: calc(50% - var(--connector-size));
|
|
1527
1671
|
}
|
|
1528
1672
|
.e-timeline.e-horizontal .e-opposite-content {
|
|
1673
|
+
display: -webkit-box;
|
|
1529
1674
|
display: -ms-flexbox;
|
|
1530
1675
|
display: flex;
|
|
1531
|
-
-
|
|
1532
|
-
align
|
|
1676
|
+
-webkit-box-align: end;
|
|
1677
|
+
-ms-flex-align: end;
|
|
1678
|
+
align-items: flex-end;
|
|
1533
1679
|
text-align: left;
|
|
1534
1680
|
padding: 0;
|
|
1535
1681
|
}
|
|
@@ -1548,8 +1694,23 @@
|
|
|
1548
1694
|
}
|
|
1549
1695
|
.e-bigger.e-timeline .e-dot-item,
|
|
1550
1696
|
.e-bigger .e-timeline .e-dot-item {
|
|
1551
|
-
-
|
|
1552
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1697
|
+
-webkit-box-flex: 0;
|
|
1698
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
|
1699
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1700
|
+
}
|
|
1701
|
+
.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,
|
|
1702
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
|
1703
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1704
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
|
1705
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
|
1706
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1707
|
+
}
|
|
1708
|
+
.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,
|
|
1709
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
|
1710
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1711
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
|
1712
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
|
1713
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1553
1714
|
}
|
|
1554
1715
|
.e-bigger.e-timeline .e-dot,
|
|
1555
1716
|
.e-bigger .e-timeline .e-dot {
|