@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/bootstrap4.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: #e9ecef;
|
7
8
|
background-position: center;
|
8
9
|
background-repeat: no-repeat;
|
9
10
|
background-size: cover;
|
10
11
|
border-radius: 4px;
|
11
12
|
color: #212529;
|
13
|
+
display: -webkit-inline-box;
|
12
14
|
display: -ms-inline-flexbox;
|
13
15
|
display: inline-flex;
|
14
16
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
15
17
|
font-size: 1.05em;
|
16
18
|
font-weight: 400;
|
17
19
|
height: 2.5em;
|
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: 2.5em;
|
@@ -44,7 +47,6 @@
|
|
44
47
|
font-size: 1.45em;
|
45
48
|
}
|
46
49
|
|
47
|
-
/*! card layout */
|
48
50
|
.e-bigger .e-card,
|
49
51
|
.e-bigger.e-card {
|
50
52
|
line-height: 45px;
|
@@ -191,15 +193,20 @@
|
|
191
193
|
|
192
194
|
.e-card {
|
193
195
|
border-radius: 4px;
|
194
|
-
box-sizing: border-box;
|
196
|
+
-webkit-box-sizing: border-box;
|
197
|
+
box-sizing: border-box;
|
198
|
+
display: -webkit-box;
|
195
199
|
display: -ms-flexbox;
|
196
200
|
display: flex;
|
197
|
-
-
|
198
|
-
|
201
|
+
-webkit-box-orient: vertical;
|
202
|
+
-webkit-box-direction: normal;
|
203
|
+
-ms-flex-direction: column;
|
204
|
+
flex-direction: column;
|
199
205
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
200
206
|
font-size: 15px;
|
201
|
-
-
|
202
|
-
|
207
|
+
-webkit-box-pack: center;
|
208
|
+
-ms-flex-pack: center;
|
209
|
+
justify-content: center;
|
203
210
|
line-height: 36px;
|
204
211
|
min-height: 36px;
|
205
212
|
overflow: hidden;
|
@@ -209,11 +216,13 @@
|
|
209
216
|
width: 100%;
|
210
217
|
}
|
211
218
|
.e-card > * {
|
212
|
-
-
|
213
|
-
|
219
|
+
-webkit-box-pack: center;
|
220
|
+
-ms-flex-pack: center;
|
221
|
+
justify-content: center;
|
214
222
|
}
|
215
223
|
.e-card > .e-card-header-title {
|
216
|
-
box-sizing: border-box;
|
224
|
+
-webkit-box-sizing: border-box;
|
225
|
+
box-sizing: border-box;
|
217
226
|
font-size: 18px;
|
218
227
|
line-height: normal;
|
219
228
|
padding: 16px;
|
@@ -246,22 +255,30 @@
|
|
246
255
|
font-size: 14px;
|
247
256
|
}
|
248
257
|
.e-card .e-card-stacked {
|
258
|
+
display: -webkit-box;
|
249
259
|
display: -ms-flexbox;
|
250
260
|
display: flex;
|
251
|
-
-
|
252
|
-
|
253
|
-
|
254
|
-
|
261
|
+
-webkit-box-orient: vertical;
|
262
|
+
-webkit-box-direction: normal;
|
263
|
+
-ms-flex-direction: column;
|
264
|
+
flex-direction: column;
|
265
|
+
-webkit-box-pack: center;
|
266
|
+
-ms-flex-pack: center;
|
267
|
+
justify-content: center;
|
255
268
|
overflow: hidden;
|
256
269
|
}
|
257
270
|
.e-card.e-card-horizontal,
|
258
271
|
.e-card .e-card-horizontal {
|
272
|
+
display: -webkit-box;
|
259
273
|
display: -ms-flexbox;
|
260
274
|
display: flex;
|
261
|
-
-
|
262
|
-
|
263
|
-
|
264
|
-
|
275
|
+
-webkit-box-orient: horizontal;
|
276
|
+
-webkit-box-direction: normal;
|
277
|
+
-ms-flex-direction: row;
|
278
|
+
flex-direction: row;
|
279
|
+
-webkit-box-pack: center;
|
280
|
+
-ms-flex-pack: center;
|
281
|
+
justify-content: center;
|
265
282
|
}
|
266
283
|
.e-card.e-card-horizontal .e-card-image,
|
267
284
|
.e-card.e-card-horizontal img,
|
@@ -274,21 +291,27 @@
|
|
274
291
|
padding: 2px;
|
275
292
|
}
|
276
293
|
.e-card.e-card-horizontal > * {
|
277
|
-
-
|
278
|
-
flex: 1;
|
294
|
+
-webkit-box-flex: 1;
|
295
|
+
-ms-flex: 1;
|
296
|
+
flex: 1;
|
279
297
|
}
|
280
298
|
.e-card.e-card-horizontal .e-card-stacked {
|
299
|
+
display: -webkit-box;
|
281
300
|
display: -ms-flexbox;
|
282
301
|
display: flex;
|
283
|
-
-
|
284
|
-
flex: 1;
|
285
|
-
|
286
|
-
|
302
|
+
-webkit-box-flex: 1;
|
303
|
+
-ms-flex: 1;
|
304
|
+
flex: 1;
|
305
|
+
-webkit-box-orient: vertical;
|
306
|
+
-webkit-box-direction: normal;
|
307
|
+
-ms-flex-direction: column;
|
308
|
+
flex-direction: column;
|
287
309
|
overflow: hidden;
|
288
310
|
}
|
289
311
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
290
|
-
-
|
291
|
-
flex-
|
312
|
+
-webkit-box-flex: 1;
|
313
|
+
-ms-flex-positive: 1;
|
314
|
+
flex-grow: 1;
|
292
315
|
}
|
293
316
|
.e-card .e-card-separator {
|
294
317
|
display: block;
|
@@ -297,13 +320,18 @@
|
|
297
320
|
border-radius: 50%;
|
298
321
|
}
|
299
322
|
.e-card .e-card-header {
|
300
|
-
box-sizing: border-box;
|
323
|
+
-webkit-box-sizing: border-box;
|
324
|
+
box-sizing: border-box;
|
325
|
+
display: -webkit-box;
|
301
326
|
display: -ms-flexbox;
|
302
327
|
display: flex;
|
303
|
-
-
|
304
|
-
|
305
|
-
|
306
|
-
|
328
|
+
-webkit-box-orient: horizontal;
|
329
|
+
-webkit-box-direction: normal;
|
330
|
+
-ms-flex-direction: row;
|
331
|
+
flex-direction: row;
|
332
|
+
-webkit-box-pack: center;
|
333
|
+
-ms-flex-pack: center;
|
334
|
+
justify-content: center;
|
307
335
|
line-height: normal;
|
308
336
|
min-height: 22.5px;
|
309
337
|
padding: 16px;
|
@@ -314,24 +342,30 @@
|
|
314
342
|
padding-right: 0;
|
315
343
|
}
|
316
344
|
.e-card .e-card-header .e-card-actions {
|
317
|
-
-
|
318
|
-
|
345
|
+
-webkit-box-pack: start;
|
346
|
+
-ms-flex-pack: start;
|
347
|
+
justify-content: flex-start;
|
319
348
|
}
|
320
349
|
.e-card .e-card-header .e-card-header-image {
|
321
350
|
-ms-flex-item-align: center;
|
322
351
|
align-self: center;
|
352
|
+
display: -webkit-box;
|
323
353
|
display: -ms-flexbox;
|
324
354
|
display: flex;
|
325
355
|
}
|
326
356
|
.e-card .e-card-header .e-card-header-caption {
|
327
357
|
-ms-flex-item-align: center;
|
328
358
|
align-self: center;
|
359
|
+
display: -webkit-box;
|
329
360
|
display: -ms-flexbox;
|
330
361
|
display: flex;
|
331
|
-
-
|
332
|
-
flex: 1;
|
333
|
-
|
334
|
-
|
362
|
+
-webkit-box-flex: 1;
|
363
|
+
-ms-flex: 1;
|
364
|
+
flex: 1;
|
365
|
+
-webkit-box-orient: vertical;
|
366
|
+
-webkit-box-direction: normal;
|
367
|
+
-ms-flex-direction: column;
|
368
|
+
flex-direction: column;
|
335
369
|
overflow: hidden;
|
336
370
|
padding: 0 0 0 7.5px;
|
337
371
|
}
|
@@ -373,7 +407,8 @@
|
|
373
407
|
}
|
374
408
|
.e-card .e-card-image .e-card-title {
|
375
409
|
bottom: 0;
|
376
|
-
box-sizing: border-box;
|
410
|
+
-webkit-box-sizing: border-box;
|
411
|
+
box-sizing: border-box;
|
377
412
|
font-size: 20px;
|
378
413
|
line-height: 27px;
|
379
414
|
min-height: 27px;
|
@@ -394,28 +429,34 @@
|
|
394
429
|
text-align: right;
|
395
430
|
}
|
396
431
|
.e-card .e-card-actions {
|
397
|
-
box-sizing: border-box;
|
432
|
+
-webkit-box-sizing: border-box;
|
433
|
+
box-sizing: border-box;
|
398
434
|
display: inline-block;
|
399
|
-
-
|
400
|
-
|
435
|
+
-webkit-box-pack: start;
|
436
|
+
-ms-flex-pack: start;
|
437
|
+
justify-content: flex-start;
|
401
438
|
padding: 16px;
|
402
439
|
}
|
403
440
|
.e-card .e-card-actions.e-card-vertical {
|
441
|
+
display: -webkit-box;
|
404
442
|
display: -ms-flexbox;
|
405
443
|
display: flex;
|
406
|
-
-
|
407
|
-
|
444
|
+
-webkit-box-orient: vertical;
|
445
|
+
-webkit-box-direction: normal;
|
446
|
+
-ms-flex-direction: column;
|
447
|
+
flex-direction: column;
|
408
448
|
padding: 16px;
|
409
449
|
}
|
410
450
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
411
451
|
.e-card .e-card-actions.e-card-vertical a {
|
412
452
|
-ms-flex-item-align: initial;
|
413
|
-
-ms-grid-row-align: initial;
|
414
453
|
align-self: initial;
|
415
|
-
box-sizing: border-box;
|
454
|
+
-webkit-box-sizing: border-box;
|
455
|
+
box-sizing: border-box;
|
416
456
|
display: inline-block;
|
417
|
-
-
|
418
|
-
|
457
|
+
-webkit-box-pack: center;
|
458
|
+
-ms-flex-pack: center;
|
459
|
+
justify-content: center;
|
419
460
|
margin: 0 0 6px 0;
|
420
461
|
text-align: center;
|
421
462
|
width: 100%;
|
@@ -426,11 +467,13 @@
|
|
426
467
|
}
|
427
468
|
.e-card .e-card-actions button,
|
428
469
|
.e-card .e-card-actions a {
|
429
|
-
-
|
430
|
-
align
|
470
|
+
-webkit-box-align: center;
|
471
|
+
-ms-flex-align: center;
|
472
|
+
align-items: center;
|
431
473
|
-ms-flex-item-align: center;
|
432
474
|
align-self: center;
|
433
475
|
cursor: pointer;
|
476
|
+
display: -webkit-inline-box;
|
434
477
|
display: -ms-inline-flexbox;
|
435
478
|
display: inline-flex;
|
436
479
|
overflow: hidden;
|
@@ -439,6 +482,7 @@
|
|
439
482
|
}
|
440
483
|
.e-card .e-card-actions .e-card-btn span,
|
441
484
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
485
|
+
display: -webkit-box;
|
442
486
|
display: -ms-flexbox;
|
443
487
|
display: flex;
|
444
488
|
font-size: 14px;
|
@@ -449,10 +493,12 @@
|
|
449
493
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
450
494
|
-ms-flex-item-align: center;
|
451
495
|
align-self: center;
|
496
|
+
display: -webkit-box;
|
452
497
|
display: -ms-flexbox;
|
453
498
|
display: flex;
|
454
|
-
-
|
455
|
-
|
499
|
+
-webkit-box-pack: center;
|
500
|
+
-ms-flex-pack: center;
|
501
|
+
justify-content: center;
|
456
502
|
width: inherit;
|
457
503
|
}
|
458
504
|
.e-card .e-card-actions .e-card-btn > * {
|
@@ -497,13 +543,13 @@
|
|
497
543
|
text-overflow: ellipsis;
|
498
544
|
}
|
499
545
|
|
500
|
-
/*! card theme */
|
501
546
|
/* stylelint-disable property-no-vendor-prefix */
|
502
547
|
.e-card {
|
503
548
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
504
549
|
background: #fff;
|
505
550
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
506
|
-
box-shadow: none;
|
551
|
+
-webkit-box-shadow: none;
|
552
|
+
box-shadow: none;
|
507
553
|
color: #212529;
|
508
554
|
outline: none;
|
509
555
|
}
|
@@ -591,6 +637,7 @@
|
|
591
637
|
|
592
638
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
593
639
|
border-width: 1px;
|
640
|
+
display: -webkit-box;
|
594
641
|
display: -ms-flexbox;
|
595
642
|
display: flex;
|
596
643
|
overflow: hidden;
|
@@ -600,8 +647,9 @@
|
|
600
647
|
width: 100%;
|
601
648
|
}
|
602
649
|
.e-splitter.e-splitter-horizontal .e-pane, .e-splitter.e-splitter-vertical .e-pane {
|
603
|
-
-
|
604
|
-
flex: 1 1 auto;
|
650
|
+
-webkit-box-flex: 1;
|
651
|
+
-ms-flex: 1 1 auto;
|
652
|
+
flex: 1 1 auto;
|
605
653
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
606
654
|
font-size: 14px;
|
607
655
|
font-weight: normal;
|
@@ -610,8 +658,9 @@
|
|
610
658
|
overflow: auto;
|
611
659
|
}
|
612
660
|
.e-splitter.e-splitter-horizontal .e-pane.e-static-pane, .e-splitter.e-splitter-vertical .e-pane.e-static-pane {
|
613
|
-
-
|
614
|
-
flex-
|
661
|
+
-webkit-box-flex: 0;
|
662
|
+
-ms-flex-positive: 0;
|
663
|
+
flex-grow: 0;
|
615
664
|
-ms-flex-negative: 0;
|
616
665
|
flex-shrink: 0;
|
617
666
|
}
|
@@ -624,27 +673,35 @@
|
|
624
673
|
overflow: hidden !important; /* stylelint-disable-line declaration-no-important */
|
625
674
|
}
|
626
675
|
.e-splitter.e-splitter-horizontal {
|
627
|
-
-
|
628
|
-
|
676
|
+
-webkit-box-orient: horizontal;
|
677
|
+
-webkit-box-direction: normal;
|
678
|
+
-ms-flex-direction: row;
|
679
|
+
flex-direction: row;
|
629
680
|
}
|
630
681
|
.e-splitter.e-splitter-horizontal.e-pane.e-scrollable {
|
631
682
|
overflow: hidden;
|
632
683
|
}
|
633
684
|
.e-splitter.e-splitter-horizontal.e-rtl {
|
634
|
-
-
|
635
|
-
|
685
|
+
-webkit-box-orient: horizontal;
|
686
|
+
-webkit-box-direction: reverse;
|
687
|
+
-ms-flex-direction: row-reverse;
|
688
|
+
flex-direction: row-reverse;
|
636
689
|
}
|
637
690
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal {
|
638
|
-
-
|
639
|
-
|
691
|
+
-webkit-box-orient: horizontal;
|
692
|
+
-webkit-box-direction: reverse;
|
693
|
+
-ms-flex-direction: row-reverse;
|
694
|
+
flex-direction: row-reverse;
|
640
695
|
}
|
641
696
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::before,
|
642
697
|
.e-splitter.e-splitter-horizontal.e-rtl .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right)::after {
|
643
698
|
right: auto;
|
644
699
|
}
|
645
700
|
.e-splitter.e-splitter-vertical {
|
646
|
-
-
|
647
|
-
|
701
|
+
-webkit-box-orient: vertical;
|
702
|
+
-webkit-box-direction: normal;
|
703
|
+
-ms-flex-direction: column;
|
704
|
+
flex-direction: column;
|
648
705
|
}
|
649
706
|
.e-splitter.e-splitter-vertical.e-pane.e-scrollable {
|
650
707
|
overflow: hidden;
|
@@ -676,14 +733,18 @@
|
|
676
733
|
right: auto;
|
677
734
|
}
|
678
735
|
.e-splitter .e-split-bar.e-split-bar-horizontal {
|
679
|
-
-
|
680
|
-
align
|
736
|
+
-webkit-box-align: center;
|
737
|
+
-ms-flex-align: center;
|
738
|
+
align-items: center;
|
739
|
+
display: -webkit-box;
|
681
740
|
display: -ms-flexbox;
|
682
741
|
display: flex;
|
683
|
-
-
|
684
|
-
flex: 0 0 auto;
|
685
|
-
|
686
|
-
|
742
|
+
-webkit-box-flex: 0;
|
743
|
+
-ms-flex: 0 0 auto;
|
744
|
+
flex: 0 0 auto;
|
745
|
+
-webkit-box-pack: center;
|
746
|
+
-ms-flex-pack: center;
|
747
|
+
justify-content: center;
|
687
748
|
min-width: 1px;
|
688
749
|
z-index: 15;
|
689
750
|
}
|
@@ -703,13 +764,16 @@
|
|
703
764
|
z-index: 10;
|
704
765
|
}
|
705
766
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-resize-handler {
|
706
|
-
-
|
707
|
-
align
|
767
|
+
-webkit-box-align: center;
|
768
|
+
-ms-flex-align: center;
|
769
|
+
align-items: center;
|
770
|
+
display: -webkit-box;
|
708
771
|
display: -ms-flexbox;
|
709
772
|
display: flex;
|
710
773
|
height: 18px;
|
711
|
-
-
|
712
|
-
|
774
|
+
-webkit-box-pack: center;
|
775
|
+
-ms-flex-pack: center;
|
776
|
+
justify-content: center;
|
713
777
|
position: relative;
|
714
778
|
width: 1px;
|
715
779
|
}
|
@@ -722,9 +786,11 @@
|
|
722
786
|
right: 3px;
|
723
787
|
}
|
724
788
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow {
|
725
|
-
border-image: none;
|
789
|
+
-o-border-image: none;
|
790
|
+
border-image: none;
|
726
791
|
border-width: 1px;
|
727
792
|
cursor: pointer;
|
793
|
+
display: -webkit-box;
|
728
794
|
display: -ms-flexbox;
|
729
795
|
display: flex;
|
730
796
|
height: 26px;
|
@@ -736,16 +802,19 @@
|
|
736
802
|
content: "";
|
737
803
|
height: 8px;
|
738
804
|
position: absolute;
|
739
|
-
transform: rotate(0deg);
|
805
|
+
-webkit-transform: rotate(0deg);
|
806
|
+
transform: rotate(0deg);
|
740
807
|
width: 2px;
|
741
808
|
}
|
742
809
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::before {
|
743
810
|
top: 5px;
|
744
|
-
transform-origin: 1px 7px 0;
|
811
|
+
-webkit-transform-origin: 1px 7px 0;
|
812
|
+
transform-origin: 1px 7px 0;
|
745
813
|
}
|
746
814
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow::after {
|
747
815
|
top: 11px;
|
748
|
-
transform-origin: 1px 1px 0;
|
816
|
+
-webkit-transform-origin: 1px 1px 0;
|
817
|
+
transform-origin: 1px 1px 0;
|
749
818
|
}
|
750
819
|
.e-splitter .e-split-bar.e-split-bar-horizontal .e-navigate-arrow:not(.e-arrow-right) {
|
751
820
|
border-radius: 50%;
|
@@ -765,16 +834,20 @@
|
|
765
834
|
margin: 0 0 0 3px;
|
766
835
|
}
|
767
836
|
.e-splitter .e-split-bar.e-split-bar-vertical {
|
768
|
-
-
|
769
|
-
align
|
837
|
+
-webkit-box-align: center;
|
838
|
+
-ms-flex-align: center;
|
839
|
+
align-items: center;
|
770
840
|
border-left: none;
|
771
841
|
border-right: none;
|
842
|
+
display: -webkit-box;
|
772
843
|
display: -ms-flexbox;
|
773
844
|
display: flex;
|
774
|
-
-
|
775
|
-
flex: 0 0 auto;
|
776
|
-
|
777
|
-
|
845
|
+
-webkit-box-flex: 0;
|
846
|
+
-ms-flex: 0 0 auto;
|
847
|
+
flex: 0 0 auto;
|
848
|
+
-webkit-box-pack: center;
|
849
|
+
-ms-flex-pack: center;
|
850
|
+
justify-content: center;
|
778
851
|
min-height: 1px;
|
779
852
|
}
|
780
853
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-icon-hidden {
|
@@ -793,13 +866,16 @@
|
|
793
866
|
z-index: 12;
|
794
867
|
}
|
795
868
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler {
|
796
|
-
-
|
797
|
-
align
|
869
|
+
-webkit-box-align: center;
|
870
|
+
-ms-flex-align: center;
|
871
|
+
align-items: center;
|
872
|
+
display: -webkit-box;
|
798
873
|
display: -ms-flexbox;
|
799
874
|
display: flex;
|
800
875
|
height: 1px;
|
801
|
-
-
|
802
|
-
|
876
|
+
-webkit-box-pack: center;
|
877
|
+
-ms-flex-pack: center;
|
878
|
+
justify-content: center;
|
803
879
|
width: 18px;
|
804
880
|
}
|
805
881
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-resize-handler.e-hide-handler {
|
@@ -810,9 +886,11 @@
|
|
810
886
|
left: 10px;
|
811
887
|
}
|
812
888
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
813
|
-
border-image: none;
|
889
|
+
-o-border-image: none;
|
890
|
+
border-image: none;
|
814
891
|
border-width: 0;
|
815
892
|
cursor: pointer;
|
893
|
+
display: -webkit-box;
|
816
894
|
display: -ms-flexbox;
|
817
895
|
display: flex;
|
818
896
|
height: 26px;
|
@@ -825,27 +903,32 @@
|
|
825
903
|
content: "";
|
826
904
|
height: 8px;
|
827
905
|
position: absolute;
|
828
|
-
transform: rotate(90deg);
|
906
|
+
-webkit-transform: rotate(90deg);
|
907
|
+
transform: rotate(90deg);
|
829
908
|
width: 2px;
|
830
909
|
}
|
831
910
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::before {
|
832
911
|
top: 3px;
|
833
|
-
transform-origin: 2px 7px 0;
|
912
|
+
-webkit-transform-origin: 2px 7px 0;
|
913
|
+
transform-origin: 2px 7px 0;
|
834
914
|
}
|
835
915
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down)::after {
|
836
916
|
left: 11px;
|
837
917
|
top: 8px;
|
838
|
-
transform-origin: 1px 1px 0;
|
918
|
+
-webkit-transform-origin: 1px 1px 0;
|
919
|
+
transform-origin: 1px 1px 0;
|
839
920
|
}
|
840
921
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::before {
|
841
922
|
left: 12px;
|
842
923
|
top: 8px;
|
843
|
-
transform-origin: 1px 6px 0;
|
924
|
+
-webkit-transform-origin: 1px 6px 0;
|
925
|
+
transform-origin: 1px 6px 0;
|
844
926
|
}
|
845
927
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow.e-arrow-down::after {
|
846
928
|
left: 10px;
|
847
929
|
top: 12px;
|
848
|
-
transform-origin: 1px 2px 0;
|
930
|
+
-webkit-transform-origin: 1px 2px 0;
|
931
|
+
transform-origin: 1px 2px 0;
|
849
932
|
}
|
850
933
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow:not(.e-arrow-down) {
|
851
934
|
border-radius: 50%;
|
@@ -885,8 +968,10 @@
|
|
885
968
|
}
|
886
969
|
|
887
970
|
.e-rtl .e-splitter.e-splitter-horizontal {
|
888
|
-
-
|
889
|
-
|
971
|
+
-webkit-box-orient: horizontal;
|
972
|
+
-webkit-box-direction: reverse;
|
973
|
+
-ms-flex-direction: row-reverse;
|
974
|
+
flex-direction: row-reverse;
|
890
975
|
}
|
891
976
|
|
892
977
|
.e-bigger .e-splitter .e-pane {
|
@@ -915,8 +1000,10 @@
|
|
915
1000
|
}
|
916
1001
|
|
917
1002
|
.e-splitter.e-ie .e-split-bar-horizontal .e-resize-handler {
|
918
|
-
-
|
919
|
-
|
1003
|
+
-webkit-box-orient: vertical;
|
1004
|
+
-webkit-box-direction: normal;
|
1005
|
+
-ms-flex-direction: column;
|
1006
|
+
flex-direction: column;
|
920
1007
|
}
|
921
1008
|
|
922
1009
|
.e-splitter.e-splitter-horizontal, .e-splitter.e-splitter-vertical {
|
@@ -942,13 +1029,16 @@
|
|
942
1029
|
background-color: transparent;
|
943
1030
|
border-color: transparent;
|
944
1031
|
color: transparent;
|
1032
|
+
-webkit-transition: background-color 500ms ease-out;
|
945
1033
|
transition: background-color 500ms ease-out;
|
946
1034
|
}
|
947
1035
|
.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 {
|
948
1036
|
background-color: #007bff;
|
949
1037
|
opacity: 0;
|
950
|
-
transition-duration: 0.3s;
|
951
|
-
|
1038
|
+
-webkit-transition-duration: 0.3s;
|
1039
|
+
transition-duration: 0.3s;
|
1040
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1041
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
952
1042
|
}
|
953
1043
|
.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 {
|
954
1044
|
background: #007bff;
|
@@ -968,22 +1058,26 @@
|
|
968
1058
|
.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 {
|
969
1059
|
background-color: #007bff;
|
970
1060
|
opacity: 1;
|
971
|
-
transform: rotate(40deg);
|
1061
|
+
-webkit-transform: rotate(40deg);
|
1062
|
+
transform: rotate(40deg);
|
972
1063
|
}
|
973
1064
|
.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 {
|
974
1065
|
background-color: #007bff;
|
975
1066
|
opacity: 1;
|
976
|
-
transform: rotate(-40deg);
|
1067
|
+
-webkit-transform: rotate(-40deg);
|
1068
|
+
transform: rotate(-40deg);
|
977
1069
|
}
|
978
1070
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-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 {
|
979
1071
|
background-color: #007bff;
|
980
1072
|
opacity: 1;
|
981
|
-
transform: rotate(-40deg);
|
1073
|
+
-webkit-transform: rotate(-40deg);
|
1074
|
+
transform: rotate(-40deg);
|
982
1075
|
}
|
983
1076
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-hover .e-navigate-arrow.e-arrow-right::after, .e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active .e-navigate-arrow.e-arrow-right::after {
|
984
1077
|
background-color: #007bff;
|
985
1078
|
opacity: 1;
|
986
|
-
transform: rotate(40deg);
|
1079
|
+
-webkit-transform: rotate(40deg);
|
1080
|
+
transform: rotate(40deg);
|
987
1081
|
}
|
988
1082
|
.e-splitter .e-split-bar.e-split-bar-horizontal.e-split-bar-active {
|
989
1083
|
background: #007bff;
|
@@ -1018,34 +1112,41 @@
|
|
1018
1112
|
.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 {
|
1019
1113
|
background-color: #007bff;
|
1020
1114
|
opacity: 1;
|
1021
|
-
transform: rotate(125deg);
|
1115
|
+
-webkit-transform: rotate(125deg);
|
1116
|
+
transform: rotate(125deg);
|
1022
1117
|
}
|
1023
1118
|
.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 {
|
1024
1119
|
background-color: #007bff;
|
1025
1120
|
opacity: 1;
|
1026
|
-
transform: rotate(50deg);
|
1121
|
+
-webkit-transform: rotate(50deg);
|
1122
|
+
transform: rotate(50deg);
|
1027
1123
|
}
|
1028
1124
|
.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 {
|
1029
1125
|
background-color: #007bff;
|
1030
1126
|
opacity: 1;
|
1031
|
-
transform: rotate(55deg);
|
1127
|
+
-webkit-transform: rotate(55deg);
|
1128
|
+
transform: rotate(55deg);
|
1032
1129
|
}
|
1033
1130
|
.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 {
|
1034
1131
|
background-color: #007bff;
|
1035
1132
|
opacity: 1;
|
1036
|
-
transform: rotate(125deg);
|
1133
|
+
-webkit-transform: rotate(125deg);
|
1134
|
+
transform: rotate(125deg);
|
1037
1135
|
}
|
1038
1136
|
.e-splitter .e-split-bar.e-split-bar-vertical .e-navigate-arrow {
|
1039
1137
|
background-color: transparent;
|
1040
1138
|
border-color: transparent;
|
1041
1139
|
color: transparent;
|
1140
|
+
-webkit-transition: background-color 300ms ease-out;
|
1042
1141
|
transition: background-color 300ms ease-out;
|
1043
1142
|
}
|
1044
1143
|
.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 {
|
1045
1144
|
background-color: #007bff;
|
1046
1145
|
opacity: 0;
|
1047
|
-
transition-duration: 0.3s;
|
1048
|
-
|
1146
|
+
-webkit-transition-duration: 0.3s;
|
1147
|
+
transition-duration: 0.3s;
|
1148
|
+
-webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1149
|
+
transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
|
1049
1150
|
}
|
1050
1151
|
.e-splitter .e-split-bar.e-split-bar-vertical.e-split-bar-active {
|
1051
1152
|
background: #007bff;
|
@@ -1059,7 +1160,8 @@
|
|
1059
1160
|
pointer-events: none;
|
1060
1161
|
}
|
1061
1162
|
|
1062
|
-
/* stylelint-disable-line no-empty-source */
|
1163
|
+
/* stylelint-disable-line no-empty-source */
|
1164
|
+
/*! component's theme wise override bootstrap-definitions and variables */
|
1063
1165
|
/* stylelint-disable */
|
1064
1166
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single.e-east, .e-dashboardlayout.e-control .e-panel .e-resize.e-double.e-east {
|
1065
1167
|
height: 100%;
|
@@ -1120,7 +1222,8 @@
|
|
1120
1222
|
font-size: 12px;
|
1121
1223
|
left: 4px;
|
1122
1224
|
position: absolute;
|
1123
|
-
transform: rotateY(180deg);
|
1225
|
+
-webkit-transform: rotateY(180deg);
|
1226
|
+
transform: rotateY(180deg);
|
1124
1227
|
}
|
1125
1228
|
|
1126
1229
|
.e-dashboardlayout.e-control .e-dashboard-gridline-table {
|
@@ -1129,7 +1232,7 @@
|
|
1129
1232
|
height: 100%;
|
1130
1233
|
width: 100%;
|
1131
1234
|
}
|
1132
|
-
.e-dashboardlayout.e-control .e-dashboard-gridline-table
|
1235
|
+
.e-dashboardlayout.e-control .e-dashboard-gridline-table td.e-dashboard-gridline {
|
1133
1236
|
border: 1px dotted #ced4da;
|
1134
1237
|
position: absolute;
|
1135
1238
|
}
|
@@ -1138,10 +1241,21 @@
|
|
1138
1241
|
}
|
1139
1242
|
.e-dashboardlayout.e-control.e-prevent {
|
1140
1243
|
-webkit-user-select: none;
|
1244
|
+
-moz-user-select: none;
|
1141
1245
|
-ms-user-select: none;
|
1142
1246
|
user-select: none;
|
1143
1247
|
}
|
1248
|
+
.e-dashboardlayout.e-control .e-panel.e-ssr {
|
1249
|
+
position: relative;
|
1250
|
+
}
|
1144
1251
|
.e-dashboardlayout.e-control .e-panel {
|
1252
|
+
border: 1px #dee2e6 solid;
|
1253
|
+
height: 100%;
|
1254
|
+
-webkit-user-select: none;
|
1255
|
+
-moz-user-select: none;
|
1256
|
+
-ms-user-select: none;
|
1257
|
+
user-select: none;
|
1258
|
+
width: 100%;
|
1145
1259
|
border-radius: 4px;
|
1146
1260
|
}
|
1147
1261
|
.e-dashboardlayout.e-control .e-panel:hover {
|
@@ -1153,10 +1267,19 @@
|
|
1153
1267
|
.e-dashboardlayout.e-control .e-panel:active {
|
1154
1268
|
border: 1px #007bff solid;
|
1155
1269
|
}
|
1270
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
1271
|
+
height: 100%;
|
1272
|
+
width: 100%;
|
1273
|
+
}
|
1274
|
+
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
1275
|
+
height: inherit;
|
1276
|
+
width: inherit;
|
1277
|
+
}
|
1156
1278
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-resize.e-dl-icon {
|
1157
1279
|
display: none;
|
1158
1280
|
}
|
1159
1281
|
.e-dashboardlayout.e-control .e-panel.e-panel-transition {
|
1282
|
+
-webkit-transition: top 0.5s, left 0.5s;
|
1160
1283
|
transition: top 0.5s, left 0.5s;
|
1161
1284
|
}
|
1162
1285
|
.e-dashboardlayout.e-control .e-panel .e-panel-header {
|
@@ -1179,22 +1302,6 @@
|
|
1179
1302
|
.e-dashboardlayout.e-control .e-panel .e-panel-header .e-header-template {
|
1180
1303
|
float: right;
|
1181
1304
|
}
|
1182
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container {
|
1183
|
-
height: 100%;
|
1184
|
-
width: 100%;
|
1185
|
-
}
|
1186
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-content .e-blazor-template {
|
1187
|
-
height: inherit;
|
1188
|
-
width: inherit;
|
1189
|
-
}
|
1190
|
-
.e-dashboardlayout.e-control .e-panel {
|
1191
|
-
border: 1px #dee2e6 solid;
|
1192
|
-
height: 100%;
|
1193
|
-
-webkit-user-select: none;
|
1194
|
-
-ms-user-select: none;
|
1195
|
-
user-select: none;
|
1196
|
-
width: 100%;
|
1197
|
-
}
|
1198
1305
|
.e-dashboardlayout.e-control .e-panel .e-resize.e-single, .e-dashboardlayout.e-control .e-panel .e-resize.e-double {
|
1199
1306
|
position: absolute;
|
1200
1307
|
-ms-touch-action: none;
|
@@ -1231,13 +1338,6 @@
|
|
1231
1338
|
font-family: "e-icons";
|
1232
1339
|
position: absolute;
|
1233
1340
|
}
|
1234
|
-
.e-dashboardlayout.e-control .e-drag:hover {
|
1235
|
-
cursor: move;
|
1236
|
-
}
|
1237
|
-
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
1238
|
-
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
1239
|
-
cursor: default;
|
1240
|
-
}
|
1241
1341
|
.e-dashboardlayout.e-control .e-panel.e-dragging, .e-dashboardlayout.e-control .e-panel.e-item-moving {
|
1242
1342
|
cursor: move;
|
1243
1343
|
z-index: 1111 !important;
|
@@ -1245,6 +1345,19 @@
|
|
1245
1345
|
.e-dashboardlayout.e-control .e-panel.e-rtl .e-panel-header .e-header-template {
|
1246
1346
|
float: left;
|
1247
1347
|
}
|
1348
|
+
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1349
|
+
font-size: 14px;
|
1350
|
+
font-weight: 500;
|
1351
|
+
height: 30px;
|
1352
|
+
padding: 0 12px;
|
1353
|
+
}
|
1354
|
+
.e-dashboardlayout.e-control .e-drag:hover {
|
1355
|
+
cursor: move;
|
1356
|
+
}
|
1357
|
+
.e-dashboardlayout.e-control .e-drag-restrict.e-drag:hover,
|
1358
|
+
.e-dashboardlayout.e-control .e-drag-restrict .e-drag:hover {
|
1359
|
+
cursor: default;
|
1360
|
+
}
|
1248
1361
|
.e-dashboardlayout.e-control .e-holder {
|
1249
1362
|
background: rgba(0, 123, 255, 0.2);
|
1250
1363
|
border: 2px #007bff dotted;
|
@@ -1253,14 +1366,9 @@
|
|
1253
1366
|
border-radius: 4px;
|
1254
1367
|
}
|
1255
1368
|
.e-dashboardlayout.e-control .e-holder.e-holder-transition {
|
1369
|
+
-webkit-transition: top 0.3s, left 0.3s;
|
1256
1370
|
transition: top 0.3s, left 0.3s;
|
1257
1371
|
}
|
1258
|
-
.e-dashboardlayout.e-control .e-panel.e-bigger .e-panel-header {
|
1259
|
-
font-size: 14px;
|
1260
|
-
font-weight: 500;
|
1261
|
-
height: 30px;
|
1262
|
-
padding: 0 12px;
|
1263
|
-
}
|
1264
1372
|
|
1265
1373
|
.e-bigger .e-dashboardlayout.e-control .e-panel .e-panel-header {
|
1266
1374
|
font-size: 14px;
|
@@ -1279,17 +1387,10 @@
|
|
1279
1387
|
}
|
1280
1388
|
.e-dashboardlayout.e-control .e-panel {
|
1281
1389
|
background: #fff;
|
1282
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
1283
|
-
|
1284
|
-
|
1285
|
-
|
1286
|
-
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
1287
|
-
color: #212529;
|
1288
|
-
}
|
1289
|
-
.e-dashboardlayout.e-control .e-panel {
|
1290
|
-
background: #fff;
|
1291
|
-
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
1292
|
-
box-sizing: border-box;
|
1390
|
+
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
1391
|
+
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
|
1392
|
+
-webkit-box-sizing: border-box;
|
1393
|
+
box-sizing: border-box;
|
1293
1394
|
position: absolute;
|
1294
1395
|
}
|
1295
1396
|
.e-dashboardlayout.e-control .e-panel .e-panel-container .e-panel-header {
|
@@ -1368,12 +1469,15 @@
|
|
1368
1469
|
.e-timeline [class^="e-dot "]::before,
|
1369
1470
|
.e-timeline .e-dot-item,
|
1370
1471
|
.e-timeline .e-dot {
|
1472
|
+
display: -webkit-box;
|
1371
1473
|
display: -ms-flexbox;
|
1372
1474
|
display: flex;
|
1373
|
-
-
|
1374
|
-
align
|
1375
|
-
|
1376
|
-
|
1475
|
+
-webkit-box-align: center;
|
1476
|
+
-ms-flex-align: center;
|
1477
|
+
align-items: center;
|
1478
|
+
-webkit-box-pack: center;
|
1479
|
+
-ms-flex-pack: center;
|
1480
|
+
justify-content: center;
|
1377
1481
|
}
|
1378
1482
|
.e-timeline [class^="e-dot "]::before {
|
1379
1483
|
min-width: 32px;
|
@@ -1381,10 +1485,13 @@
|
|
1381
1485
|
border-radius: var(--dot-radius);
|
1382
1486
|
}
|
1383
1487
|
.e-timeline .e-timeline-items {
|
1488
|
+
display: -webkit-inline-box;
|
1384
1489
|
display: -ms-inline-flexbox;
|
1385
1490
|
display: inline-flex;
|
1386
|
-
-
|
1387
|
-
|
1491
|
+
-webkit-box-orient: vertical;
|
1492
|
+
-webkit-box-direction: normal;
|
1493
|
+
-ms-flex-direction: column;
|
1494
|
+
flex-direction: column;
|
1388
1495
|
list-style: none;
|
1389
1496
|
-ms-flex-wrap: nowrap;
|
1390
1497
|
flex-wrap: nowrap;
|
@@ -1393,13 +1500,17 @@
|
|
1393
1500
|
height: inherit;
|
1394
1501
|
}
|
1395
1502
|
.e-timeline .e-timeline-item {
|
1503
|
+
display: -webkit-box;
|
1396
1504
|
display: -ms-flexbox;
|
1397
1505
|
display: flex;
|
1398
|
-
-
|
1399
|
-
|
1506
|
+
-webkit-box-orient: horizontal;
|
1507
|
+
-webkit-box-direction: normal;
|
1508
|
+
-ms-flex-direction: row;
|
1509
|
+
flex-direction: row;
|
1400
1510
|
position: relative;
|
1401
|
-
-
|
1402
|
-
align
|
1511
|
+
-webkit-box-align: start;
|
1512
|
+
-ms-flex-align: start;
|
1513
|
+
align-items: flex-start;
|
1403
1514
|
width: inherit;
|
1404
1515
|
height: inherit;
|
1405
1516
|
}
|
@@ -1419,8 +1530,9 @@
|
|
1419
1530
|
}
|
1420
1531
|
.e-timeline .e-dot-item {
|
1421
1532
|
position: relative;
|
1422
|
-
-
|
1423
|
-
flex: 0 1 calc(var(--dot-size) * 3);
|
1533
|
+
-webkit-box-flex: 0;
|
1534
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 3);
|
1535
|
+
flex: 0 1 calc(var(--dot-size) * 3);
|
1424
1536
|
z-index: 1000;
|
1425
1537
|
}
|
1426
1538
|
.e-timeline .e-dot {
|
@@ -1436,12 +1548,12 @@
|
|
1436
1548
|
}
|
1437
1549
|
.e-timeline .e-opposite-content,
|
1438
1550
|
.e-timeline .e-content {
|
1439
|
-
-
|
1440
|
-
flex: 1 1 50%;
|
1551
|
+
-webkit-box-flex: 1;
|
1552
|
+
-ms-flex: 1 1 50%;
|
1553
|
+
flex: 1 1 50%;
|
1441
1554
|
}
|
1442
1555
|
.e-timeline .e-opposite-content {
|
1443
1556
|
font-size: 12px;
|
1444
|
-
text-align: right;
|
1445
1557
|
}
|
1446
1558
|
.e-timeline .e-content {
|
1447
1559
|
text-align: left;
|
@@ -1455,12 +1567,16 @@
|
|
1455
1567
|
bottom: calc(var(--dot-size) * 2);
|
1456
1568
|
}
|
1457
1569
|
.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) {
|
1458
|
-
-
|
1459
|
-
|
1570
|
+
-webkit-box-orient: horizontal;
|
1571
|
+
-webkit-box-direction: reverse;
|
1572
|
+
-ms-flex-direction: row-reverse;
|
1573
|
+
flex-direction: row-reverse;
|
1460
1574
|
}
|
1461
1575
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-items {
|
1462
|
-
-
|
1463
|
-
|
1576
|
+
-webkit-box-orient: vertical;
|
1577
|
+
-webkit-box-direction: reverse;
|
1578
|
+
-ms-flex-direction: column-reverse;
|
1579
|
+
flex-direction: column-reverse;
|
1464
1580
|
}
|
1465
1581
|
.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 {
|
1466
1582
|
text-align: left;
|
@@ -1468,6 +1584,19 @@
|
|
1468
1584
|
.e-timeline.e-vertical .e-timeline-item.e-connector:last-child::after {
|
1469
1585
|
content: unset;
|
1470
1586
|
}
|
1587
|
+
.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 {
|
1588
|
+
left: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
1589
|
+
right: auto;
|
1590
|
+
}
|
1591
|
+
.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 {
|
1592
|
+
right: calc(var(--dot-size) * 3 / 2 - var(--connector-size));
|
1593
|
+
left: auto;
|
1594
|
+
}
|
1595
|
+
.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 {
|
1596
|
+
-webkit-box-flex: 0;
|
1597
|
+
-ms-flex: 0;
|
1598
|
+
flex: 0;
|
1599
|
+
}
|
1471
1600
|
.e-timeline.e-vertical.e-timeline-reverse .e-timeline-item.e-connector:first-child::after {
|
1472
1601
|
content: unset;
|
1473
1602
|
}
|
@@ -1485,13 +1614,27 @@
|
|
1485
1614
|
width: calc(var(--dot-size) * 2);
|
1486
1615
|
}
|
1487
1616
|
.e-timeline.e-horizontal .e-timeline-items {
|
1617
|
+
display: -webkit-inline-box;
|
1488
1618
|
display: -ms-inline-flexbox;
|
1489
1619
|
display: inline-flex;
|
1490
|
-
-
|
1491
|
-
|
1620
|
+
-webkit-box-orient: horizontal;
|
1621
|
+
-webkit-box-direction: normal;
|
1622
|
+
-ms-flex-direction: row;
|
1623
|
+
flex-direction: row;
|
1492
1624
|
}
|
1493
1625
|
.e-timeline.e-horizontal .e-timeline-item {
|
1494
1626
|
height: auto;
|
1627
|
+
-webkit-box-orient: vertical;
|
1628
|
+
-webkit-box-direction: normal;
|
1629
|
+
-ms-flex-direction: column;
|
1630
|
+
flex-direction: column;
|
1631
|
+
-webkit-box-align: center;
|
1632
|
+
-ms-flex-align: center;
|
1633
|
+
align-items: center;
|
1634
|
+
}
|
1635
|
+
.e-timeline.e-horizontal.e-timeline-reverse.e-rtl .e-timeline-item.e-connector::after {
|
1636
|
+
left: calc(50% - var(--connector-size));
|
1637
|
+
right: auto;
|
1495
1638
|
}
|
1496
1639
|
.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 {
|
1497
1640
|
right: calc(50% - var(--connector-size));
|
@@ -1500,32 +1643,33 @@
|
|
1500
1643
|
.e-timeline.e-horizontal .e-dot-item {
|
1501
1644
|
margin: calc(var(--dot-size) * 2 / 2) 0;
|
1502
1645
|
}
|
1503
|
-
.e-timeline.e-horizontal .e-timeline-item {
|
1504
|
-
-ms-flex-direction: column;
|
1505
|
-
flex-direction: column;
|
1506
|
-
-ms-flex-align: center;
|
1507
|
-
align-items: center;
|
1508
|
-
}
|
1509
1646
|
.e-timeline.e-horizontal .e-opposite-content,
|
1510
1647
|
.e-timeline.e-horizontal .e-content {
|
1648
|
+
display: -webkit-box;
|
1511
1649
|
display: -ms-flexbox;
|
1512
1650
|
display: flex;
|
1513
1651
|
}
|
1514
1652
|
.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 {
|
1515
|
-
-
|
1516
|
-
align
|
1653
|
+
-webkit-box-align: end;
|
1654
|
+
-ms-flex-align: end;
|
1655
|
+
align-items: flex-end;
|
1517
1656
|
}
|
1518
1657
|
.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 {
|
1519
|
-
-
|
1520
|
-
align
|
1658
|
+
-webkit-box-align: start;
|
1659
|
+
-ms-flex-align: start;
|
1660
|
+
align-items: flex-start;
|
1521
1661
|
}
|
1522
1662
|
.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) {
|
1523
|
-
-
|
1524
|
-
|
1663
|
+
-webkit-box-orient: vertical;
|
1664
|
+
-webkit-box-direction: reverse;
|
1665
|
+
-ms-flex-direction: column-reverse;
|
1666
|
+
flex-direction: column-reverse;
|
1525
1667
|
}
|
1526
1668
|
.e-timeline.e-horizontal.e-timeline-reverse .e-timeline-items {
|
1527
|
-
-
|
1528
|
-
|
1669
|
+
-webkit-box-orient: horizontal;
|
1670
|
+
-webkit-box-direction: reverse;
|
1671
|
+
-ms-flex-direction: row-reverse;
|
1672
|
+
flex-direction: row-reverse;
|
1529
1673
|
}
|
1530
1674
|
.e-timeline.e-horizontal .e-timeline-item::after {
|
1531
1675
|
width: 100%;
|
@@ -1533,10 +1677,12 @@
|
|
1533
1677
|
top: calc(50% - var(--connector-size));
|
1534
1678
|
}
|
1535
1679
|
.e-timeline.e-horizontal .e-opposite-content {
|
1680
|
+
display: -webkit-box;
|
1536
1681
|
display: -ms-flexbox;
|
1537
1682
|
display: flex;
|
1538
|
-
-
|
1539
|
-
align
|
1683
|
+
-webkit-box-align: end;
|
1684
|
+
-ms-flex-align: end;
|
1685
|
+
align-items: flex-end;
|
1540
1686
|
text-align: left;
|
1541
1687
|
padding: 0;
|
1542
1688
|
}
|
@@ -1555,8 +1701,23 @@
|
|
1555
1701
|
}
|
1556
1702
|
.e-bigger.e-timeline .e-dot-item,
|
1557
1703
|
.e-bigger .e-timeline .e-dot-item {
|
1558
|
-
-
|
1559
|
-
flex: 0 1 calc(var(--dot-size) * 4);
|
1704
|
+
-webkit-box-flex: 0;
|
1705
|
+
-ms-flex: 0 1 calc(var(--dot-size) * 4);
|
1706
|
+
flex: 0 1 calc(var(--dot-size) * 4);
|
1707
|
+
}
|
1708
|
+
.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,
|
1709
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-opposite-content-only .e-connector::after,
|
1710
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-opposite-content-only .e-connector::after,
|
1711
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-content-only .e-connector::after,
|
1712
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-content-only .e-connector::after {
|
1713
|
+
left: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
1714
|
+
}
|
1715
|
+
.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,
|
1716
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-content-only .e-connector::after,
|
1717
|
+
.e-bigger .e-timeline.e-vertical.e-align-before.e-rtl.e-opposite-content-only .e-connector::after,
|
1718
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-opposite-content-only .e-connector::after,
|
1719
|
+
.e-bigger .e-timeline.e-vertical.e-align-after.e-rtl.e-content-only .e-connector::after {
|
1720
|
+
right: calc(var(--dot-size) * 4 / 2 - var(--connector-size));
|
1560
1721
|
}
|
1561
1722
|
.e-bigger.e-timeline .e-dot,
|
1562
1723
|
.e-bigger .e-timeline .e-dot {
|