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