@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/tailwind-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: #4b5563;
|
|
7
8
|
background-position: center;
|
|
8
9
|
background-repeat: no-repeat;
|
|
9
10
|
background-size: cover;
|
|
10
11
|
border-radius: 4px;
|
|
11
12
|
color: #9ca3af;
|
|
13
|
+
display: -webkit-inline-box;
|
|
12
14
|
display: -ms-inline-flexbox;
|
|
13
15
|
display: inline-flex;
|
|
14
16
|
font-family: "Inter";
|
|
15
17
|
font-size: 14px;
|
|
16
18
|
font-weight: 500;
|
|
17
19
|
height: 40px;
|
|
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: 40px;
|
|
@@ -35,29 +38,28 @@
|
|
|
35
38
|
.e-avatar.e-avatar-xsmall {
|
|
36
39
|
font-size: 10px;
|
|
37
40
|
height: 24px;
|
|
38
|
-
line-height: 16px;
|
|
39
41
|
width: 24px;
|
|
42
|
+
line-height: 16px;
|
|
40
43
|
}
|
|
41
44
|
.e-avatar.e-avatar-small {
|
|
42
45
|
font-size: 12px;
|
|
43
46
|
height: 32px;
|
|
44
|
-
line-height: 18px;
|
|
45
47
|
width: 32px;
|
|
48
|
+
line-height: 18px;
|
|
46
49
|
}
|
|
47
50
|
.e-avatar.e-avatar-large {
|
|
48
51
|
font-size: 18px;
|
|
49
52
|
height: 48px;
|
|
50
|
-
line-height: 28px;
|
|
51
53
|
width: 48px;
|
|
54
|
+
line-height: 28px;
|
|
52
55
|
}
|
|
53
56
|
.e-avatar.e-avatar-xlarge {
|
|
54
57
|
font-size: 20px;
|
|
55
58
|
height: 56px;
|
|
56
|
-
line-height: 28px;
|
|
57
59
|
width: 56px;
|
|
60
|
+
line-height: 28px;
|
|
58
61
|
}
|
|
59
62
|
|
|
60
|
-
/*! card layout */
|
|
61
63
|
.e-bigger .e-card,
|
|
62
64
|
.e-bigger.e-card {
|
|
63
65
|
line-height: 48px;
|
|
@@ -195,15 +197,20 @@
|
|
|
195
197
|
|
|
196
198
|
.e-card {
|
|
197
199
|
border-radius: 6px;
|
|
198
|
-
box-sizing: border-box;
|
|
200
|
+
-webkit-box-sizing: border-box;
|
|
201
|
+
box-sizing: border-box;
|
|
202
|
+
display: -webkit-box;
|
|
199
203
|
display: -ms-flexbox;
|
|
200
204
|
display: flex;
|
|
201
|
-
-
|
|
202
|
-
|
|
205
|
+
-webkit-box-orient: vertical;
|
|
206
|
+
-webkit-box-direction: normal;
|
|
207
|
+
-ms-flex-direction: column;
|
|
208
|
+
flex-direction: column;
|
|
203
209
|
font-family: "Inter";
|
|
204
210
|
font-size: 15px;
|
|
205
|
-
-
|
|
206
|
-
|
|
211
|
+
-webkit-box-pack: center;
|
|
212
|
+
-ms-flex-pack: center;
|
|
213
|
+
justify-content: center;
|
|
207
214
|
line-height: 24px;
|
|
208
215
|
min-height: 36px;
|
|
209
216
|
overflow: hidden;
|
|
@@ -213,11 +220,13 @@
|
|
|
213
220
|
width: 100%;
|
|
214
221
|
}
|
|
215
222
|
.e-card > * {
|
|
216
|
-
-
|
|
217
|
-
|
|
223
|
+
-webkit-box-pack: center;
|
|
224
|
+
-ms-flex-pack: center;
|
|
225
|
+
justify-content: center;
|
|
218
226
|
}
|
|
219
227
|
.e-card > .e-card-header-title {
|
|
220
|
-
box-sizing: border-box;
|
|
228
|
+
-webkit-box-sizing: border-box;
|
|
229
|
+
box-sizing: border-box;
|
|
221
230
|
font-size: 14px;
|
|
222
231
|
line-height: 1.25;
|
|
223
232
|
padding: 18px;
|
|
@@ -250,22 +259,30 @@
|
|
|
250
259
|
font-size: 14px;
|
|
251
260
|
}
|
|
252
261
|
.e-card .e-card-stacked {
|
|
262
|
+
display: -webkit-box;
|
|
253
263
|
display: -ms-flexbox;
|
|
254
264
|
display: flex;
|
|
255
|
-
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
265
|
+
-webkit-box-orient: vertical;
|
|
266
|
+
-webkit-box-direction: normal;
|
|
267
|
+
-ms-flex-direction: column;
|
|
268
|
+
flex-direction: column;
|
|
269
|
+
-webkit-box-pack: center;
|
|
270
|
+
-ms-flex-pack: center;
|
|
271
|
+
justify-content: center;
|
|
259
272
|
overflow: hidden;
|
|
260
273
|
}
|
|
261
274
|
.e-card.e-card-horizontal,
|
|
262
275
|
.e-card .e-card-horizontal {
|
|
276
|
+
display: -webkit-box;
|
|
263
277
|
display: -ms-flexbox;
|
|
264
278
|
display: flex;
|
|
265
|
-
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
279
|
+
-webkit-box-orient: horizontal;
|
|
280
|
+
-webkit-box-direction: normal;
|
|
281
|
+
-ms-flex-direction: row;
|
|
282
|
+
flex-direction: row;
|
|
283
|
+
-webkit-box-pack: center;
|
|
284
|
+
-ms-flex-pack: center;
|
|
285
|
+
justify-content: center;
|
|
269
286
|
}
|
|
270
287
|
.e-card.e-card-horizontal .e-card-image,
|
|
271
288
|
.e-card.e-card-horizontal img,
|
|
@@ -278,21 +295,27 @@
|
|
|
278
295
|
padding: 2px;
|
|
279
296
|
}
|
|
280
297
|
.e-card.e-card-horizontal > * {
|
|
281
|
-
-
|
|
282
|
-
flex: 1;
|
|
298
|
+
-webkit-box-flex: 1;
|
|
299
|
+
-ms-flex: 1;
|
|
300
|
+
flex: 1;
|
|
283
301
|
}
|
|
284
302
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
303
|
+
display: -webkit-box;
|
|
285
304
|
display: -ms-flexbox;
|
|
286
305
|
display: flex;
|
|
287
|
-
-
|
|
288
|
-
flex: 1;
|
|
289
|
-
|
|
290
|
-
|
|
306
|
+
-webkit-box-flex: 1;
|
|
307
|
+
-ms-flex: 1;
|
|
308
|
+
flex: 1;
|
|
309
|
+
-webkit-box-orient: vertical;
|
|
310
|
+
-webkit-box-direction: normal;
|
|
311
|
+
-ms-flex-direction: column;
|
|
312
|
+
flex-direction: column;
|
|
291
313
|
overflow: hidden;
|
|
292
314
|
}
|
|
293
315
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
294
|
-
-
|
|
295
|
-
flex-
|
|
316
|
+
-webkit-box-flex: 1;
|
|
317
|
+
-ms-flex-positive: 1;
|
|
318
|
+
flex-grow: 1;
|
|
296
319
|
}
|
|
297
320
|
.e-card .e-card-separator {
|
|
298
321
|
display: block;
|
|
@@ -301,13 +324,18 @@
|
|
|
301
324
|
border-radius: 50%;
|
|
302
325
|
}
|
|
303
326
|
.e-card .e-card-header {
|
|
304
|
-
box-sizing: border-box;
|
|
327
|
+
-webkit-box-sizing: border-box;
|
|
328
|
+
box-sizing: border-box;
|
|
329
|
+
display: -webkit-box;
|
|
305
330
|
display: -ms-flexbox;
|
|
306
331
|
display: flex;
|
|
307
|
-
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
332
|
+
-webkit-box-orient: horizontal;
|
|
333
|
+
-webkit-box-direction: normal;
|
|
334
|
+
-ms-flex-direction: row;
|
|
335
|
+
flex-direction: row;
|
|
336
|
+
-webkit-box-pack: center;
|
|
337
|
+
-ms-flex-pack: center;
|
|
338
|
+
justify-content: center;
|
|
311
339
|
line-height: normal;
|
|
312
340
|
min-height: 22.5px;
|
|
313
341
|
padding: 18px 18px 12px 18px;
|
|
@@ -318,24 +346,30 @@
|
|
|
318
346
|
padding-right: 0;
|
|
319
347
|
}
|
|
320
348
|
.e-card .e-card-header .e-card-actions {
|
|
321
|
-
-
|
|
322
|
-
|
|
349
|
+
-webkit-box-pack: start;
|
|
350
|
+
-ms-flex-pack: start;
|
|
351
|
+
justify-content: flex-start;
|
|
323
352
|
}
|
|
324
353
|
.e-card .e-card-header .e-card-header-image {
|
|
325
354
|
-ms-flex-item-align: center;
|
|
326
355
|
align-self: center;
|
|
356
|
+
display: -webkit-box;
|
|
327
357
|
display: -ms-flexbox;
|
|
328
358
|
display: flex;
|
|
329
359
|
}
|
|
330
360
|
.e-card .e-card-header .e-card-header-caption {
|
|
331
361
|
-ms-flex-item-align: center;
|
|
332
362
|
align-self: center;
|
|
363
|
+
display: -webkit-box;
|
|
333
364
|
display: -ms-flexbox;
|
|
334
365
|
display: flex;
|
|
335
|
-
-
|
|
336
|
-
flex: 1;
|
|
337
|
-
|
|
338
|
-
|
|
366
|
+
-webkit-box-flex: 1;
|
|
367
|
+
-ms-flex: 1;
|
|
368
|
+
flex: 1;
|
|
369
|
+
-webkit-box-orient: vertical;
|
|
370
|
+
-webkit-box-direction: normal;
|
|
371
|
+
-ms-flex-direction: column;
|
|
372
|
+
flex-direction: column;
|
|
339
373
|
overflow: hidden;
|
|
340
374
|
padding: 0 0 0 18px;
|
|
341
375
|
}
|
|
@@ -377,7 +411,8 @@
|
|
|
377
411
|
}
|
|
378
412
|
.e-card .e-card-image .e-card-title {
|
|
379
413
|
bottom: 0;
|
|
380
|
-
box-sizing: border-box;
|
|
414
|
+
-webkit-box-sizing: border-box;
|
|
415
|
+
box-sizing: border-box;
|
|
381
416
|
font-size: 16px;
|
|
382
417
|
line-height: 30px;
|
|
383
418
|
min-height: 30px;
|
|
@@ -398,28 +433,34 @@
|
|
|
398
433
|
text-align: right;
|
|
399
434
|
}
|
|
400
435
|
.e-card .e-card-actions {
|
|
401
|
-
box-sizing: border-box;
|
|
436
|
+
-webkit-box-sizing: border-box;
|
|
437
|
+
box-sizing: border-box;
|
|
402
438
|
display: inline-block;
|
|
403
|
-
-
|
|
404
|
-
|
|
439
|
+
-webkit-box-pack: start;
|
|
440
|
+
-ms-flex-pack: start;
|
|
441
|
+
justify-content: flex-start;
|
|
405
442
|
padding: 18px 18px;
|
|
406
443
|
}
|
|
407
444
|
.e-card .e-card-actions.e-card-vertical {
|
|
445
|
+
display: -webkit-box;
|
|
408
446
|
display: -ms-flexbox;
|
|
409
447
|
display: flex;
|
|
410
|
-
-
|
|
411
|
-
|
|
448
|
+
-webkit-box-orient: vertical;
|
|
449
|
+
-webkit-box-direction: normal;
|
|
450
|
+
-ms-flex-direction: column;
|
|
451
|
+
flex-direction: column;
|
|
412
452
|
padding: 18px 18px;
|
|
413
453
|
}
|
|
414
454
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
|
415
455
|
.e-card .e-card-actions.e-card-vertical a {
|
|
416
456
|
-ms-flex-item-align: initial;
|
|
417
|
-
-ms-grid-row-align: initial;
|
|
418
457
|
align-self: initial;
|
|
419
|
-
box-sizing: border-box;
|
|
458
|
+
-webkit-box-sizing: border-box;
|
|
459
|
+
box-sizing: border-box;
|
|
420
460
|
display: inline-block;
|
|
421
|
-
-
|
|
422
|
-
|
|
461
|
+
-webkit-box-pack: center;
|
|
462
|
+
-ms-flex-pack: center;
|
|
463
|
+
justify-content: center;
|
|
423
464
|
margin: 0 0 6px 0;
|
|
424
465
|
text-align: center;
|
|
425
466
|
width: 100%;
|
|
@@ -430,11 +471,13 @@
|
|
|
430
471
|
}
|
|
431
472
|
.e-card .e-card-actions button,
|
|
432
473
|
.e-card .e-card-actions a {
|
|
433
|
-
-
|
|
434
|
-
align
|
|
474
|
+
-webkit-box-align: center;
|
|
475
|
+
-ms-flex-align: center;
|
|
476
|
+
align-items: center;
|
|
435
477
|
-ms-flex-item-align: center;
|
|
436
478
|
align-self: center;
|
|
437
479
|
cursor: pointer;
|
|
480
|
+
display: -webkit-inline-box;
|
|
438
481
|
display: -ms-inline-flexbox;
|
|
439
482
|
display: inline-flex;
|
|
440
483
|
overflow: hidden;
|
|
@@ -443,6 +486,7 @@
|
|
|
443
486
|
}
|
|
444
487
|
.e-card .e-card-actions .e-card-btn span,
|
|
445
488
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
|
489
|
+
display: -webkit-box;
|
|
446
490
|
display: -ms-flexbox;
|
|
447
491
|
display: flex;
|
|
448
492
|
font-size: 14px;
|
|
@@ -453,10 +497,12 @@
|
|
|
453
497
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
|
454
498
|
-ms-flex-item-align: center;
|
|
455
499
|
align-self: center;
|
|
500
|
+
display: -webkit-box;
|
|
456
501
|
display: -ms-flexbox;
|
|
457
502
|
display: flex;
|
|
458
|
-
-
|
|
459
|
-
|
|
503
|
+
-webkit-box-pack: center;
|
|
504
|
+
-ms-flex-pack: center;
|
|
505
|
+
justify-content: center;
|
|
460
506
|
width: inherit;
|
|
461
507
|
}
|
|
462
508
|
.e-card .e-card-actions .e-card-btn > * {
|
|
@@ -504,13 +550,13 @@
|
|
|
504
550
|
text-overflow: ellipsis;
|
|
505
551
|
}
|
|
506
552
|
|
|
507
|
-
/*! card theme */
|
|
508
553
|
/* stylelint-disable property-no-vendor-prefix */
|
|
509
554
|
.e-card {
|
|
510
555
|
-webkit-tap-highlight-color: #22d3ee;
|
|
511
556
|
background: #1f2937;
|
|
512
557
|
border: 1px solid #4b5563;
|
|
513
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
558
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
559
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
514
560
|
color: #fff;
|
|
515
561
|
outline: none;
|
|
516
562
|
}
|
|
@@ -592,6 +638,7 @@
|
|
|
592
638
|
|
|
593
639
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
594
640
|
border-width: 1px;
|
|
641
|
+
display: -webkit-box;
|
|
595
642
|
display: -ms-flexbox;
|
|
596
643
|
display: flex;
|
|
597
644
|
overflow: hidden;
|
|
@@ -601,8 +648,9 @@
|
|
|
601
648
|
width: 100%;
|
|
602
649
|
}
|
|
603
650
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
|
604
|
-
-
|
|
605
|
-
flex: 1 1 auto;
|
|
651
|
+
-webkit-box-flex: 1;
|
|
652
|
+
-ms-flex: 1 1 auto;
|
|
653
|
+
flex: 1 1 auto;
|
|
606
654
|
font-family: "Inter";
|
|
607
655
|
font-size: 14px;
|
|
608
656
|
font-weight: 400;
|
|
@@ -611,8 +659,9 @@
|
|
|
611
659
|
overflow: auto;
|
|
612
660
|
}
|
|
613
661
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
|
614
|
-
-
|
|
615
|
-
flex-
|
|
662
|
+
-webkit-box-flex: 0;
|
|
663
|
+
-ms-flex-positive: 0;
|
|
664
|
+
flex-grow: 0;
|
|
616
665
|
-ms-flex-negative: 0;
|
|
617
666
|
flex-shrink: 0;
|
|
618
667
|
}
|
|
@@ -625,27 +674,35 @@
|
|
|
625
674
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
|
626
675
|
}
|
|
627
676
|
.e-splitter.e-splitter-horizontal {
|
|
628
|
-
-
|
|
629
|
-
|
|
677
|
+
-webkit-box-orient: horizontal;
|
|
678
|
+
-webkit-box-direction: normal;
|
|
679
|
+
-ms-flex-direction: row;
|
|
680
|
+
flex-direction: row;
|
|
630
681
|
}
|
|
631
682
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
|
632
683
|
overflow: hidden;
|
|
633
684
|
}
|
|
634
685
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
|
635
|
-
-
|
|
636
|
-
|
|
686
|
+
-webkit-box-orient: horizontal;
|
|
687
|
+
-webkit-box-direction: reverse;
|
|
688
|
+
-ms-flex-direction: row-reverse;
|
|
689
|
+
flex-direction: row-reverse;
|
|
637
690
|
}
|
|
638
691
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
|
639
|
-
-
|
|
640
|
-
|
|
692
|
+
-webkit-box-orient: horizontal;
|
|
693
|
+
-webkit-box-direction: reverse;
|
|
694
|
+
-ms-flex-direction: row-reverse;
|
|
695
|
+
flex-direction: row-reverse;
|
|
641
696
|
}
|
|
642
697
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
|
643
698
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
|
644
699
|
right: auto;
|
|
645
700
|
}
|
|
646
701
|
.e-splitter.e-splitter-vertical {
|
|
647
|
-
-
|
|
648
|
-
|
|
702
|
+
-webkit-box-orient: vertical;
|
|
703
|
+
-webkit-box-direction: normal;
|
|
704
|
+
-ms-flex-direction: column;
|
|
705
|
+
flex-direction: column;
|
|
649
706
|
}
|
|
650
707
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
|
651
708
|
overflow: hidden;
|
|
@@ -677,14 +734,18 @@
|
|
|
677
734
|
right: auto;
|
|
678
735
|
}
|
|
679
736
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
|
680
|
-
-
|
|
681
|
-
align
|
|
737
|
+
-webkit-box-align: center;
|
|
738
|
+
-ms-flex-align: center;
|
|
739
|
+
align-items: center;
|
|
740
|
+
display: -webkit-box;
|
|
682
741
|
display: -ms-flexbox;
|
|
683
742
|
display: flex;
|
|
684
|
-
-
|
|
685
|
-
flex: 0 0 auto;
|
|
686
|
-
|
|
687
|
-
|
|
743
|
+
-webkit-box-flex: 0;
|
|
744
|
+
-ms-flex: 0 0 auto;
|
|
745
|
+
flex: 0 0 auto;
|
|
746
|
+
-webkit-box-pack: center;
|
|
747
|
+
-ms-flex-pack: center;
|
|
748
|
+
justify-content: center;
|
|
688
749
|
min-width: 1px;
|
|
689
750
|
z-index: 15;
|
|
690
751
|
}
|
|
@@ -704,13 +765,16 @@
|
|
|
704
765
|
z-index: 10;
|
|
705
766
|
}
|
|
706
767
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
|
707
|
-
-
|
|
708
|
-
align
|
|
768
|
+
-webkit-box-align: center;
|
|
769
|
+
-ms-flex-align: center;
|
|
770
|
+
align-items: center;
|
|
771
|
+
display: -webkit-box;
|
|
709
772
|
display: -ms-flexbox;
|
|
710
773
|
display: flex;
|
|
711
774
|
height: 18px;
|
|
712
|
-
-
|
|
713
|
-
|
|
775
|
+
-webkit-box-pack: center;
|
|
776
|
+
-ms-flex-pack: center;
|
|
777
|
+
justify-content: center;
|
|
714
778
|
position: relative;
|
|
715
779
|
width: 1px;
|
|
716
780
|
}
|
|
@@ -723,9 +787,11 @@
|
|
|
723
787
|
right: 3px;
|
|
724
788
|
}
|
|
725
789
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
|
726
|
-
border-image: none;
|
|
790
|
+
-o-border-image: none;
|
|
791
|
+
border-image: none;
|
|
727
792
|
border-width: 1px;
|
|
728
793
|
cursor: pointer;
|
|
794
|
+
display: -webkit-box;
|
|
729
795
|
display: -ms-flexbox;
|
|
730
796
|
display: flex;
|
|
731
797
|
height: 26px;
|
|
@@ -737,16 +803,19 @@
|
|
|
737
803
|
content: "";
|
|
738
804
|
height: 8px;
|
|
739
805
|
position: absolute;
|
|
740
|
-
transform: rotate(0deg);
|
|
806
|
+
-webkit-transform: rotate(0deg);
|
|
807
|
+
transform: rotate(0deg);
|
|
741
808
|
width: 2px;
|
|
742
809
|
}
|
|
743
810
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
|
744
811
|
top: 5px;
|
|
745
|
-
transform-origin: 1px 7px 0;
|
|
812
|
+
-webkit-transform-origin: 1px 7px 0;
|
|
813
|
+
transform-origin: 1px 7px 0;
|
|
746
814
|
}
|
|
747
815
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
|
748
816
|
top: 11px;
|
|
749
|
-
transform-origin: 1px 1px 0;
|
|
817
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
818
|
+
transform-origin: 1px 1px 0;
|
|
750
819
|
}
|
|
751
820
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
|
752
821
|
border-radius: 50%;
|
|
@@ -766,16 +835,20 @@
|
|
|
766
835
|
margin: 0 0 0 3px;
|
|
767
836
|
}
|
|
768
837
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
|
769
|
-
-
|
|
770
|
-
align
|
|
838
|
+
-webkit-box-align: center;
|
|
839
|
+
-ms-flex-align: center;
|
|
840
|
+
align-items: center;
|
|
771
841
|
border-left: 1px solid #4b5563;
|
|
772
842
|
border-right: 1px solid #4b5563;
|
|
843
|
+
display: -webkit-box;
|
|
773
844
|
display: -ms-flexbox;
|
|
774
845
|
display: flex;
|
|
775
|
-
-
|
|
776
|
-
flex: 0 0 auto;
|
|
777
|
-
|
|
778
|
-
|
|
846
|
+
-webkit-box-flex: 0;
|
|
847
|
+
-ms-flex: 0 0 auto;
|
|
848
|
+
flex: 0 0 auto;
|
|
849
|
+
-webkit-box-pack: center;
|
|
850
|
+
-ms-flex-pack: center;
|
|
851
|
+
justify-content: center;
|
|
779
852
|
min-height: 1px;
|
|
780
853
|
}
|
|
781
854
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
|
@@ -794,13 +867,16 @@
|
|
|
794
867
|
z-index: 12;
|
|
795
868
|
}
|
|
796
869
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
|
797
|
-
-
|
|
798
|
-
align
|
|
870
|
+
-webkit-box-align: center;
|
|
871
|
+
-ms-flex-align: center;
|
|
872
|
+
align-items: center;
|
|
873
|
+
display: -webkit-box;
|
|
799
874
|
display: -ms-flexbox;
|
|
800
875
|
display: flex;
|
|
801
876
|
height: 1px;
|
|
802
|
-
-
|
|
803
|
-
|
|
877
|
+
-webkit-box-pack: center;
|
|
878
|
+
-ms-flex-pack: center;
|
|
879
|
+
justify-content: center;
|
|
804
880
|
width: 18px;
|
|
805
881
|
}
|
|
806
882
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
|
@@ -811,9 +887,11 @@
|
|
|
811
887
|
left: 10px;
|
|
812
888
|
}
|
|
813
889
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
814
|
-
border-image: none;
|
|
890
|
+
-o-border-image: none;
|
|
891
|
+
border-image: none;
|
|
815
892
|
border-width: 0;
|
|
816
893
|
cursor: pointer;
|
|
894
|
+
display: -webkit-box;
|
|
817
895
|
display: -ms-flexbox;
|
|
818
896
|
display: flex;
|
|
819
897
|
height: 26px;
|
|
@@ -826,27 +904,32 @@
|
|
|
826
904
|
content: "";
|
|
827
905
|
height: 8px;
|
|
828
906
|
position: absolute;
|
|
829
|
-
transform: rotate(90deg);
|
|
907
|
+
-webkit-transform: rotate(90deg);
|
|
908
|
+
transform: rotate(90deg);
|
|
830
909
|
width: 2px;
|
|
831
910
|
}
|
|
832
911
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
|
833
912
|
top: 3px;
|
|
834
|
-
transform-origin: 2px 7px 0;
|
|
913
|
+
-webkit-transform-origin: 2px 7px 0;
|
|
914
|
+
transform-origin: 2px 7px 0;
|
|
835
915
|
}
|
|
836
916
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
|
837
917
|
left: 11px;
|
|
838
918
|
top: 8px;
|
|
839
|
-
transform-origin: 1px 1px 0;
|
|
919
|
+
-webkit-transform-origin: 1px 1px 0;
|
|
920
|
+
transform-origin: 1px 1px 0;
|
|
840
921
|
}
|
|
841
922
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
|
842
923
|
left: 12px;
|
|
843
924
|
top: 8px;
|
|
844
|
-
transform-origin: 1px 6px 0;
|
|
925
|
+
-webkit-transform-origin: 1px 6px 0;
|
|
926
|
+
transform-origin: 1px 6px 0;
|
|
845
927
|
}
|
|
846
928
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
|
847
929
|
left: 10px;
|
|
848
930
|
top: 12px;
|
|
849
|
-
transform-origin: 1px 2px 0;
|
|
931
|
+
-webkit-transform-origin: 1px 2px 0;
|
|
932
|
+
transform-origin: 1px 2px 0;
|
|
850
933
|
}
|
|
851
934
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
|
852
935
|
border-radius: 50%;
|
|
@@ -886,8 +969,10 @@
|
|
|
886
969
|
}
|
|
887
970
|
|
|
888
971
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
|
889
|
-
-
|
|
890
|
-
|
|
972
|
+
-webkit-box-orient: horizontal;
|
|
973
|
+
-webkit-box-direction: reverse;
|
|
974
|
+
-ms-flex-direction: row-reverse;
|
|
975
|
+
flex-direction: row-reverse;
|
|
891
976
|
}
|
|
892
977
|
|
|
893
978
|
.e-bigger .e-splitter .e-pane {
|
|
@@ -916,8 +1001,10 @@
|
|
|
916
1001
|
}
|
|
917
1002
|
|
|
918
1003
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
|
919
|
-
-
|
|
920
|
-
|
|
1004
|
+
-webkit-box-orient: vertical;
|
|
1005
|
+
-webkit-box-direction: normal;
|
|
1006
|
+
-ms-flex-direction: column;
|
|
1007
|
+
flex-direction: column;
|
|
921
1008
|
}
|
|
922
1009
|
|
|
923
1010
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
|
@@ -943,13 +1030,16 @@
|
|
|
943
1030
|
background-color: transparent;
|
|
944
1031
|
border-color: transparent;
|
|
945
1032
|
color: transparent;
|
|
1033
|
+
-webkit-transition: background-color 500ms ease-out;
|
|
946
1034
|
transition: background-color 500ms ease-out;
|
|
947
1035
|
}
|
|
948
1036
|
.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 {
|
|
949
1037
|
background-color: #22d3ee;
|
|
950
1038
|
opacity: 0;
|
|
951
|
-
transition-duration: 0.3s;
|
|
952
|
-
|
|
1039
|
+
-webkit-transition-duration: 0.3s;
|
|
1040
|
+
transition-duration: 0.3s;
|
|
1041
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1042
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
953
1043
|
}
|
|
954
1044
|
.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 {
|
|
955
1045
|
background: #22d3ee;
|
|
@@ -969,22 +1059,26 @@
|
|
|
969
1059
|
.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 {
|
|
970
1060
|
background-color: #22d3ee;
|
|
971
1061
|
opacity: 1;
|
|
972
|
-
transform: rotate(40deg);
|
|
1062
|
+
-webkit-transform: rotate(40deg);
|
|
1063
|
+
transform: rotate(40deg);
|
|
973
1064
|
}
|
|
974
1065
|
.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 {
|
|
975
1066
|
background-color: #22d3ee;
|
|
976
1067
|
opacity: 1;
|
|
977
|
-
transform: rotate(-40deg);
|
|
1068
|
+
-webkit-transform: rotate(-40deg);
|
|
1069
|
+
transform: rotate(-40deg);
|
|
978
1070
|
}
|
|
979
1071
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-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 {
|
|
980
1072
|
background-color: #22d3ee;
|
|
981
1073
|
opacity: 1;
|
|
982
|
-
transform: rotate(-40deg);
|
|
1074
|
+
-webkit-transform: rotate(-40deg);
|
|
1075
|
+
transform: rotate(-40deg);
|
|
983
1076
|
}
|
|
984
1077
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-navigate-arrow.e-arrow-right::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-navigate-arrow.e-arrow-right::after {
|
|
985
1078
|
background-color: #22d3ee;
|
|
986
1079
|
opacity: 1;
|
|
987
|
-
transform: rotate(40deg);
|
|
1080
|
+
-webkit-transform: rotate(40deg);
|
|
1081
|
+
transform: rotate(40deg);
|
|
988
1082
|
}
|
|
989
1083
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
|
990
1084
|
background: #22d3ee;
|
|
@@ -1019,34 +1113,41 @@
|
|
|
1019
1113
|
.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 {
|
|
1020
1114
|
background-color: #22d3ee;
|
|
1021
1115
|
opacity: 1;
|
|
1022
|
-
transform: rotate(125deg);
|
|
1116
|
+
-webkit-transform: rotate(125deg);
|
|
1117
|
+
transform: rotate(125deg);
|
|
1023
1118
|
}
|
|
1024
1119
|
.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 {
|
|
1025
1120
|
background-color: #22d3ee;
|
|
1026
1121
|
opacity: 1;
|
|
1027
|
-
transform: rotate(50deg);
|
|
1122
|
+
-webkit-transform: rotate(50deg);
|
|
1123
|
+
transform: rotate(50deg);
|
|
1028
1124
|
}
|
|
1029
1125
|
.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 {
|
|
1030
1126
|
background-color: #22d3ee;
|
|
1031
1127
|
opacity: 1;
|
|
1032
|
-
transform: rotate(55deg);
|
|
1128
|
+
-webkit-transform: rotate(55deg);
|
|
1129
|
+
transform: rotate(55deg);
|
|
1033
1130
|
}
|
|
1034
1131
|
.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 {
|
|
1035
1132
|
background-color: #22d3ee;
|
|
1036
1133
|
opacity: 1;
|
|
1037
|
-
transform: rotate(125deg);
|
|
1134
|
+
-webkit-transform: rotate(125deg);
|
|
1135
|
+
transform: rotate(125deg);
|
|
1038
1136
|
}
|
|
1039
1137
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
|
1040
1138
|
background-color: transparent;
|
|
1041
1139
|
border-color: transparent;
|
|
1042
1140
|
color: transparent;
|
|
1141
|
+
-webkit-transition: background-color 300ms ease-out;
|
|
1043
1142
|
transition: background-color 300ms ease-out;
|
|
1044
1143
|
}
|
|
1045
1144
|
.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 {
|
|
1046
1145
|
background-color: #22d3ee;
|
|
1047
1146
|
opacity: 0;
|
|
1048
|
-
transition-duration: 0.3s;
|
|
1049
|
-
|
|
1147
|
+
-webkit-transition-duration: 0.3s;
|
|
1148
|
+
transition-duration: 0.3s;
|
|
1149
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1150
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
|
1050
1151
|
}
|
|
1051
1152
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
|
1052
1153
|
background: #22d3ee;
|
|
@@ -1060,7 +1161,8 @@
|
|
|
1060
1161
|
pointer-events: none;
|
|
1061
1162
|
}
|
|
1062
1163
|
|
|
1063
|
-
/* stylelint-disable-line no-empty-source */
|
|
1164
|
+
/* stylelint-disable-line no-empty-source */
|
|
1165
|
+
/*! component's theme wise override tailwind-definitions and variables */
|
|
1064
1166
|
/* stylelint-disable */
|
|
1065
1167
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
|
1066
1168
|
height: 100%;
|
|
@@ -1121,7 +1223,8 @@
|
|
|
1121
1223
|
font-size: 12px;
|
|
1122
1224
|
left: 4px;
|
|
1123
1225
|
position: absolute;
|
|
1124
|
-
transform: rotateY(180deg);
|
|
1226
|
+
-webkit-transform: rotateY(180deg);
|
|
1227
|
+
transform: rotateY(180deg);
|
|
1125
1228
|
}
|
|
1126
1229
|
|
|
1127
1230
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
|
@@ -1130,7 +1233,7 @@
|
|
|
1130
1233
|
height: 100%;
|
|
1131
1234
|
width: 100%;
|
|
1132
1235
|
}
|
|
1133
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
|
1236
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
|
1134
1237
|
border: 1px dashed #6b7280;
|
|
1135
1238
|
position: absolute;
|
|
1136
1239
|
}
|
|
@@ -1139,25 +1242,49 @@
|
|
|
1139
1242
|
}
|
|
1140
1243
|
.e-dashboardlayout.e-control.e-prevent {
|
|
1141
1244
|
-webkit-user-select: none;
|
|
1245
|
+
-moz-user-select: none;
|
|
1142
1246
|
-ms-user-select: none;
|
|
1143
1247
|
user-select: none;
|
|
1144
1248
|
}
|
|
1249
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
|
1250
|
+
position: relative;
|
|
1251
|
+
}
|
|
1145
1252
|
.e-dashboardlayout.e-control .e-panel {
|
|
1253
|
+
border: 1px solid #4b5563;
|
|
1254
|
+
height: 100%;
|
|
1255
|
+
-webkit-user-select: none;
|
|
1256
|
+
-moz-user-select: none;
|
|
1257
|
+
-ms-user-select: none;
|
|
1258
|
+
user-select: none;
|
|
1259
|
+
width: 100%;
|
|
1146
1260
|
border-radius: 6px;
|
|
1147
1261
|
}
|
|
1148
1262
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-dl-icon {
|
|
1149
1263
|
line-height: 9px;
|
|
1150
1264
|
}
|
|
1151
1265
|
.e-dashboardlayout.e-control .e-panel:hover {
|
|
1152
|
-
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1266
|
+
-webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1267
|
+
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
1153
1268
|
}
|
|
1154
1269
|
.e-dashboardlayout.e-control .e-panel:hover .e-panel-container .e-resize.e-dl-icon {
|
|
1155
1270
|
display: block;
|
|
1156
1271
|
}
|
|
1272
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1273
|
+
height: 100%;
|
|
1274
|
+
width: 100%;
|
|
1275
|
+
}
|
|
1276
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content {
|
|
1277
|
+
padding: 12px;
|
|
1278
|
+
}
|
|
1279
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1280
|
+
height: inherit;
|
|
1281
|
+
width: inherit;
|
|
1282
|
+
}
|
|
1157
1283
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
|
1158
1284
|
display: none;
|
|
1159
1285
|
}
|
|
1160
1286
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
|
1287
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
|
1161
1288
|
transition: top 0.5s, left 0.5s;
|
|
1162
1289
|
}
|
|
1163
1290
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
@@ -1183,25 +1310,6 @@
|
|
|
1183
1310
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
|
1184
1311
|
float: right;
|
|
1185
1312
|
}
|
|
1186
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
|
1187
|
-
height: 100%;
|
|
1188
|
-
width: 100%;
|
|
1189
|
-
}
|
|
1190
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
|
1191
|
-
height: inherit;
|
|
1192
|
-
width: inherit;
|
|
1193
|
-
}
|
|
1194
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-content {
|
|
1195
|
-
padding: 12px;
|
|
1196
|
-
}
|
|
1197
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1198
|
-
border: 1px solid #4b5563;
|
|
1199
|
-
height: 100%;
|
|
1200
|
-
-webkit-user-select: none;
|
|
1201
|
-
-ms-user-select: none;
|
|
1202
|
-
user-select: none;
|
|
1203
|
-
width: 100%;
|
|
1204
|
-
}
|
|
1205
1313
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
|
1206
1314
|
position: absolute;
|
|
1207
1315
|
-ms-touch-action: none;
|
|
@@ -1238,13 +1346,6 @@
|
|
|
1238
1346
|
font-family: "e-icons";
|
|
1239
1347
|
position: absolute;
|
|
1240
1348
|
}
|
|
1241
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1242
|
-
cursor: move;
|
|
1243
|
-
}
|
|
1244
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1245
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1246
|
-
cursor: default;
|
|
1247
|
-
}
|
|
1248
1349
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
|
1249
1350
|
cursor: move;
|
|
1250
1351
|
z-index: 1111 !important;
|
|
@@ -1252,6 +1353,20 @@
|
|
|
1252
1353
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
|
1253
1354
|
float: left;
|
|
1254
1355
|
}
|
|
1356
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1357
|
+
font-size: 16px;
|
|
1358
|
+
font-weight: 500;
|
|
1359
|
+
height: 40px;
|
|
1360
|
+
padding: 8px 18px;
|
|
1361
|
+
line-height: 24px;
|
|
1362
|
+
}
|
|
1363
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
|
1364
|
+
cursor: move;
|
|
1365
|
+
}
|
|
1366
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
|
1367
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
|
1368
|
+
cursor: default;
|
|
1369
|
+
}
|
|
1255
1370
|
.e-dashboardlayout.e-control .e-holder {
|
|
1256
1371
|
background: #4b5563;
|
|
1257
1372
|
border: 1px #9ca3af dashed;
|
|
@@ -1260,15 +1375,9 @@
|
|
|
1260
1375
|
border-radius: 6px;
|
|
1261
1376
|
}
|
|
1262
1377
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
|
1378
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
|
1263
1379
|
transition: top 0.3s, left 0.3s;
|
|
1264
1380
|
}
|
|
1265
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1266
|
-
font-size: 16px;
|
|
1267
|
-
font-weight: 500;
|
|
1268
|
-
height: 40px;
|
|
1269
|
-
padding: 8px 18px;
|
|
1270
|
-
line-height: 24px;
|
|
1271
|
-
}
|
|
1272
1381
|
|
|
1273
1382
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
|
1274
1383
|
font-size: 16px;
|
|
@@ -1292,30 +1401,17 @@
|
|
|
1292
1401
|
}
|
|
1293
1402
|
.e-dashboardlayout.e-control .e-panel {
|
|
1294
1403
|
background: #1f2937;
|
|
1295
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1296
|
-
|
|
1404
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1405
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1406
|
+
-webkit-box-sizing: border-box;
|
|
1407
|
+
box-sizing: border-box;
|
|
1297
1408
|
position: absolute;
|
|
1298
1409
|
}
|
|
1299
1410
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1300
1411
|
color: #fff;
|
|
1301
1412
|
background: #232e3e;
|
|
1302
|
-
box-sizing: border-box;
|
|
1303
|
-
|
|
1304
|
-
.e-dashboardlayout.e-control .e-panel.e-dragging:active {
|
|
1305
|
-
background: #1f2937;
|
|
1306
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1307
|
-
}
|
|
1308
|
-
.e-dashboardlayout.e-control .e-panel {
|
|
1309
|
-
background: #1f2937;
|
|
1310
|
-
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1311
|
-
box-sizing: border-box;
|
|
1312
|
-
position: absolute;
|
|
1313
|
-
}
|
|
1314
|
-
.e-dashboardlayout.e-control .e-panel:active {
|
|
1315
|
-
background: #374151;
|
|
1316
|
-
}
|
|
1317
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
|
1318
|
-
color: #fff;
|
|
1413
|
+
-webkit-box-sizing: border-box;
|
|
1414
|
+
box-sizing: border-box;
|
|
1319
1415
|
}
|
|
1320
1416
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-single {
|
|
1321
1417
|
background: none;
|
|
@@ -1374,6 +1470,14 @@
|
|
|
1374
1470
|
bottom: 2px;
|
|
1375
1471
|
right: 2px;
|
|
1376
1472
|
}
|
|
1473
|
+
.e-dashboardlayout.e-control .e-panel:active {
|
|
1474
|
+
background: #374151;
|
|
1475
|
+
}
|
|
1476
|
+
.e-dashboardlayout.e-control .e-panel.e-dragging:active {
|
|
1477
|
+
background: #1f2937;
|
|
1478
|
+
-webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1479
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
|
|
1480
|
+
}
|
|
1377
1481
|
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
|
1378
1482
|
color: #fff;
|
|
1379
1483
|
}
|
|
@@ -1390,12 +1494,15 @@
|
|
|
1390
1494
|
.e-timeline [class^="e-dot "]::before,
|
|
1391
1495
|
.e-timeline .e-dot-item,
|
|
1392
1496
|
.e-timeline .e-dot {
|
|
1497
|
+
display: -webkit-box;
|
|
1393
1498
|
display: -ms-flexbox;
|
|
1394
1499
|
display: flex;
|
|
1395
|
-
-
|
|
1396
|
-
align
|
|
1397
|
-
|
|
1398
|
-
|
|
1500
|
+
-webkit-box-align: center;
|
|
1501
|
+
-ms-flex-align: center;
|
|
1502
|
+
align-items: center;
|
|
1503
|
+
-webkit-box-pack: center;
|
|
1504
|
+
-ms-flex-pack: center;
|
|
1505
|
+
justify-content: center;
|
|
1399
1506
|
}
|
|
1400
1507
|
.e-timeline [class^="e-dot "]::before {
|
|
1401
1508
|
min-width: 32px;
|
|
@@ -1403,10 +1510,13 @@
|
|
|
1403
1510
|
border-radius: var(--dot-radius);
|
|
1404
1511
|
}
|
|
1405
1512
|
.e-timeline .e-timeline-items {
|
|
1513
|
+
display: -webkit-inline-box;
|
|
1406
1514
|
display: -ms-inline-flexbox;
|
|
1407
1515
|
display: inline-flex;
|
|
1408
|
-
-
|
|
1409
|
-
|
|
1516
|
+
-webkit-box-orient: vertical;
|
|
1517
|
+
-webkit-box-direction: normal;
|
|
1518
|
+
-ms-flex-direction: column;
|
|
1519
|
+
flex-direction: column;
|
|
1410
1520
|
list-style: none;
|
|
1411
1521
|
-ms-flex-wrap: nowrap;
|
|
1412
1522
|
flex-wrap: nowrap;
|
|
@@ -1415,13 +1525,17 @@
|
|
|
1415
1525
|
height: inherit;
|
|
1416
1526
|
}
|
|
1417
1527
|
.e-timeline .e-timeline-item {
|
|
1528
|
+
display: -webkit-box;
|
|
1418
1529
|
display: -ms-flexbox;
|
|
1419
1530
|
display: flex;
|
|
1420
|
-
-
|
|
1421
|
-
|
|
1531
|
+
-webkit-box-orient: horizontal;
|
|
1532
|
+
-webkit-box-direction: normal;
|
|
1533
|
+
-ms-flex-direction: row;
|
|
1534
|
+
flex-direction: row;
|
|
1422
1535
|
position: relative;
|
|
1423
|
-
-
|
|
1424
|
-
align
|
|
1536
|
+
-webkit-box-align: start;
|
|
1537
|
+
-ms-flex-align: start;
|
|
1538
|
+
align-items: flex-start;
|
|
1425
1539
|
width: inherit;
|
|
1426
1540
|
height: inherit;
|
|
1427
1541
|
}
|
|
@@ -1441,8 +1555,9 @@
|
|
|
1441
1555
|
}
|
|
1442
1556
|
.e-timeline .e-dot-item {
|
|
1443
1557
|
position: relative;
|
|
1444
|
-
-
|
|
1445
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1558
|
+
-webkit-box-flex: 0;
|
|
1559
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
|
1560
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
|
1446
1561
|
z-index: 1000;
|
|
1447
1562
|
}
|
|
1448
1563
|
.e-timeline .e-dot {
|
|
@@ -1458,12 +1573,12 @@
|
|
|
1458
1573
|
}
|
|
1459
1574
|
.e-timeline .e-opposite-content,
|
|
1460
1575
|
.e-timeline .e-content {
|
|
1461
|
-
-
|
|
1462
|
-
flex: 1 1 50%;
|
|
1576
|
+
-webkit-box-flex: 1;
|
|
1577
|
+
-ms-flex: 1 1 50%;
|
|
1578
|
+
flex: 1 1 50%;
|
|
1463
1579
|
}
|
|
1464
1580
|
.e-timeline .e-opposite-content {
|
|
1465
1581
|
font-size: 12px;
|
|
1466
|
-
text-align: right;
|
|
1467
1582
|
}
|
|
1468
1583
|
.e-timeline .e-content {
|
|
1469
1584
|
text-align: left;
|
|
@@ -1477,12 +1592,16 @@
|
|
|
1477
1592
|
bottom: calc(var(--dot-size) * 2);
|
|
1478
1593
|
}
|
|
1479
1594
|
.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) {
|
|
1480
|
-
-
|
|
1481
|
-
|
|
1595
|
+
-webkit-box-orient: horizontal;
|
|
1596
|
+
-webkit-box-direction: reverse;
|
|
1597
|
+
-ms-flex-direction: row-reverse;
|
|
1598
|
+
flex-direction: row-reverse;
|
|
1482
1599
|
}
|
|
1483
1600
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
|
1484
|
-
-
|
|
1485
|
-
|
|
1601
|
+
-webkit-box-orient: vertical;
|
|
1602
|
+
-webkit-box-direction: reverse;
|
|
1603
|
+
-ms-flex-direction: column-reverse;
|
|
1604
|
+
flex-direction: column-reverse;
|
|
1486
1605
|
}
|
|
1487
1606
|
.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 {
|
|
1488
1607
|
text-align: left;
|
|
@@ -1490,6 +1609,19 @@
|
|
|
1490
1609
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
|
1491
1610
|
content: unset;
|
|
1492
1611
|
}
|
|
1612
|
+
.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 {
|
|
1613
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1614
|
+
right: auto;
|
|
1615
|
+
}
|
|
1616
|
+
.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 {
|
|
1617
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
|
1618
|
+
left: auto;
|
|
1619
|
+
}
|
|
1620
|
+
.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 {
|
|
1621
|
+
-webkit-box-flex: 0;
|
|
1622
|
+
-ms-flex: 0;
|
|
1623
|
+
flex: 0;
|
|
1624
|
+
}
|
|
1493
1625
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
|
1494
1626
|
content: unset;
|
|
1495
1627
|
}
|
|
@@ -1507,13 +1639,27 @@
|
|
|
1507
1639
|
width: calc(var(--dot-size) * 2);
|
|
1508
1640
|
}
|
|
1509
1641
|
.e-timeline.e-horizontal .e-timeline-items {
|
|
1642
|
+
display: -webkit-inline-box;
|
|
1510
1643
|
display: -ms-inline-flexbox;
|
|
1511
1644
|
display: inline-flex;
|
|
1512
|
-
-
|
|
1513
|
-
|
|
1645
|
+
-webkit-box-orient: horizontal;
|
|
1646
|
+
-webkit-box-direction: normal;
|
|
1647
|
+
-ms-flex-direction: row;
|
|
1648
|
+
flex-direction: row;
|
|
1514
1649
|
}
|
|
1515
1650
|
.e-timeline.e-horizontal .e-timeline-item {
|
|
1516
1651
|
height: auto;
|
|
1652
|
+
-webkit-box-orient: vertical;
|
|
1653
|
+
-webkit-box-direction: normal;
|
|
1654
|
+
-ms-flex-direction: column;
|
|
1655
|
+
flex-direction: column;
|
|
1656
|
+
-webkit-box-align: center;
|
|
1657
|
+
-ms-flex-align: center;
|
|
1658
|
+
align-items: center;
|
|
1659
|
+
}
|
|
1660
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
|
1661
|
+
left: calc(50% - var(--connector-size));
|
|
1662
|
+
right: auto;
|
|
1517
1663
|
}
|
|
1518
1664
|
.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 {
|
|
1519
1665
|
right: calc(50% - var(--connector-size));
|
|
@@ -1522,32 +1668,33 @@
|
|
|
1522
1668
|
.e-timeline.e-horizontal .e-dot-item {
|
|
1523
1669
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
|
1524
1670
|
}
|
|
1525
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
|
1526
|
-
-ms-flex-direction: column;
|
|
1527
|
-
flex-direction: column;
|
|
1528
|
-
-ms-flex-align: center;
|
|
1529
|
-
align-items: center;
|
|
1530
|
-
}
|
|
1531
1671
|
.e-timeline.e-horizontal .e-opposite-content,
|
|
1532
1672
|
.e-timeline.e-horizontal .e-content {
|
|
1673
|
+
display: -webkit-box;
|
|
1533
1674
|
display: -ms-flexbox;
|
|
1534
1675
|
display: flex;
|
|
1535
1676
|
}
|
|
1536
1677
|
.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 {
|
|
1537
|
-
-
|
|
1538
|
-
align
|
|
1678
|
+
-webkit-box-align: end;
|
|
1679
|
+
-ms-flex-align: end;
|
|
1680
|
+
align-items: flex-end;
|
|
1539
1681
|
}
|
|
1540
1682
|
.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 {
|
|
1541
|
-
-
|
|
1542
|
-
align
|
|
1683
|
+
-webkit-box-align: start;
|
|
1684
|
+
-ms-flex-align: start;
|
|
1685
|
+
align-items: flex-start;
|
|
1543
1686
|
}
|
|
1544
1687
|
.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) {
|
|
1545
|
-
-
|
|
1546
|
-
|
|
1688
|
+
-webkit-box-orient: vertical;
|
|
1689
|
+
-webkit-box-direction: reverse;
|
|
1690
|
+
-ms-flex-direction: column-reverse;
|
|
1691
|
+
flex-direction: column-reverse;
|
|
1547
1692
|
}
|
|
1548
1693
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
|
1549
|
-
-
|
|
1550
|
-
|
|
1694
|
+
-webkit-box-orient: horizontal;
|
|
1695
|
+
-webkit-box-direction: reverse;
|
|
1696
|
+
-ms-flex-direction: row-reverse;
|
|
1697
|
+
flex-direction: row-reverse;
|
|
1551
1698
|
}
|
|
1552
1699
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
|
1553
1700
|
width: 100%;
|
|
@@ -1555,10 +1702,12 @@
|
|
|
1555
1702
|
top: calc(50% - var(--connector-size));
|
|
1556
1703
|
}
|
|
1557
1704
|
.e-timeline.e-horizontal .e-opposite-content {
|
|
1705
|
+
display: -webkit-box;
|
|
1558
1706
|
display: -ms-flexbox;
|
|
1559
1707
|
display: flex;
|
|
1560
|
-
-
|
|
1561
|
-
align
|
|
1708
|
+
-webkit-box-align: end;
|
|
1709
|
+
-ms-flex-align: end;
|
|
1710
|
+
align-items: flex-end;
|
|
1562
1711
|
text-align: left;
|
|
1563
1712
|
padding: 0;
|
|
1564
1713
|
}
|
|
@@ -1577,8 +1726,23 @@
|
|
|
1577
1726
|
}
|
|
1578
1727
|
.e-bigger.e-timeline .e-dot-item,
|
|
1579
1728
|
.e-bigger .e-timeline .e-dot-item {
|
|
1580
|
-
-
|
|
1581
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1729
|
+
-webkit-box-flex: 0;
|
|
1730
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
|
1731
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
|
1732
|
+
}
|
|
1733
|
+
.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,
|
|
1734
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
|
1735
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1736
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
|
1737
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
|
1738
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1739
|
+
}
|
|
1740
|
+
.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,
|
|
1741
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
|
1742
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
|
1743
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
|
1744
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
|
1745
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
|
1582
1746
|
}
|
|
1583
1747
|
.e-bigger.e-timeline .e-dot,
|
|
1584
1748
|
.e-bigger .e-timeline .e-dot {
|