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