@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/card/fabric.css
CHANGED
@@ -1,5 +1,4 @@
|
|
1
1
|
/*! component's theme wise override material-definitions and variables */
|
2
|
-
/*! card layout */
|
3
2
|
.e-bigger .e-card,
|
4
3
|
.e-bigger.e-card {
|
5
4
|
line-height: 45px;
|
@@ -138,15 +137,20 @@
|
|
138
137
|
|
139
138
|
.e-card {
|
140
139
|
border-radius: 4px;
|
141
|
-
box-sizing: border-box;
|
140
|
+
-webkit-box-sizing: border-box;
|
141
|
+
box-sizing: border-box;
|
142
|
+
display: -webkit-box;
|
142
143
|
display: -ms-flexbox;
|
143
144
|
display: flex;
|
144
|
-
-
|
145
|
-
|
145
|
+
-webkit-box-orient: vertical;
|
146
|
+
-webkit-box-direction: normal;
|
147
|
+
-ms-flex-direction: column;
|
148
|
+
flex-direction: column;
|
146
149
|
font-family: "Segoe UI", "GeezaPro", "DejaVu Serif", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
147
150
|
font-size: 15px;
|
148
|
-
-
|
149
|
-
|
151
|
+
-webkit-box-pack: center;
|
152
|
+
-ms-flex-pack: center;
|
153
|
+
justify-content: center;
|
150
154
|
line-height: 36px;
|
151
155
|
min-height: 36px;
|
152
156
|
overflow: hidden;
|
@@ -165,11 +169,13 @@
|
|
165
169
|
padding: 0;
|
166
170
|
}
|
167
171
|
.e-card > * {
|
168
|
-
-
|
169
|
-
|
172
|
+
-webkit-box-pack: center;
|
173
|
+
-ms-flex-pack: center;
|
174
|
+
justify-content: center;
|
170
175
|
}
|
171
176
|
.e-card > .e-card-header-title {
|
172
|
-
box-sizing: border-box;
|
177
|
+
-webkit-box-sizing: border-box;
|
178
|
+
box-sizing: border-box;
|
173
179
|
font-size: 15px;
|
174
180
|
line-height: normal;
|
175
181
|
padding: 12px;
|
@@ -203,22 +209,30 @@
|
|
203
209
|
font-size: 14px;
|
204
210
|
}
|
205
211
|
.e-card .e-card-stacked {
|
212
|
+
display: -webkit-box;
|
206
213
|
display: -ms-flexbox;
|
207
214
|
display: flex;
|
208
|
-
-
|
209
|
-
|
210
|
-
|
211
|
-
|
215
|
+
-webkit-box-orient: vertical;
|
216
|
+
-webkit-box-direction: normal;
|
217
|
+
-ms-flex-direction: column;
|
218
|
+
flex-direction: column;
|
219
|
+
-webkit-box-pack: center;
|
220
|
+
-ms-flex-pack: center;
|
221
|
+
justify-content: center;
|
212
222
|
overflow: hidden;
|
213
223
|
}
|
214
224
|
.e-card.e-card-horizontal,
|
215
225
|
.e-card .e-card-horizontal {
|
226
|
+
display: -webkit-box;
|
216
227
|
display: -ms-flexbox;
|
217
228
|
display: flex;
|
218
|
-
-
|
219
|
-
|
220
|
-
|
221
|
-
|
229
|
+
-webkit-box-orient: horizontal;
|
230
|
+
-webkit-box-direction: normal;
|
231
|
+
-ms-flex-direction: row;
|
232
|
+
flex-direction: row;
|
233
|
+
-webkit-box-pack: center;
|
234
|
+
-ms-flex-pack: center;
|
235
|
+
justify-content: center;
|
222
236
|
}
|
223
237
|
.e-card.e-card-horizontal .e-card-image,
|
224
238
|
.e-card.e-card-horizontal img,
|
@@ -231,21 +245,27 @@
|
|
231
245
|
padding: 2px;
|
232
246
|
}
|
233
247
|
.e-card.e-card-horizontal > * {
|
234
|
-
-
|
235
|
-
flex: 1;
|
248
|
+
-webkit-box-flex: 1;
|
249
|
+
-ms-flex: 1;
|
250
|
+
flex: 1;
|
236
251
|
}
|
237
252
|
.e-card.e-card-horizontal .e-card-stacked {
|
253
|
+
display: -webkit-box;
|
238
254
|
display: -ms-flexbox;
|
239
255
|
display: flex;
|
240
|
-
-
|
241
|
-
flex: 1;
|
242
|
-
|
243
|
-
|
256
|
+
-webkit-box-flex: 1;
|
257
|
+
-ms-flex: 1;
|
258
|
+
flex: 1;
|
259
|
+
-webkit-box-orient: vertical;
|
260
|
+
-webkit-box-direction: normal;
|
261
|
+
-ms-flex-direction: column;
|
262
|
+
flex-direction: column;
|
244
263
|
overflow: hidden;
|
245
264
|
}
|
246
265
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
247
|
-
-
|
248
|
-
flex-
|
266
|
+
-webkit-box-flex: 1;
|
267
|
+
-ms-flex-positive: 1;
|
268
|
+
flex-grow: 1;
|
249
269
|
}
|
250
270
|
.e-card .e-card-separator {
|
251
271
|
display: block;
|
@@ -254,13 +274,18 @@
|
|
254
274
|
border-radius: 50%;
|
255
275
|
}
|
256
276
|
.e-card .e-card-header {
|
257
|
-
box-sizing: border-box;
|
277
|
+
-webkit-box-sizing: border-box;
|
278
|
+
box-sizing: border-box;
|
279
|
+
display: -webkit-box;
|
258
280
|
display: -ms-flexbox;
|
259
281
|
display: flex;
|
260
|
-
-
|
261
|
-
|
262
|
-
|
263
|
-
|
282
|
+
-webkit-box-orient: horizontal;
|
283
|
+
-webkit-box-direction: normal;
|
284
|
+
-ms-flex-direction: row;
|
285
|
+
flex-direction: row;
|
286
|
+
-webkit-box-pack: center;
|
287
|
+
-ms-flex-pack: center;
|
288
|
+
justify-content: center;
|
264
289
|
line-height: normal;
|
265
290
|
min-height: 22.5px;
|
266
291
|
padding: 12px;
|
@@ -271,24 +296,30 @@
|
|
271
296
|
padding-right: 0;
|
272
297
|
}
|
273
298
|
.e-card .e-card-header .e-card-actions {
|
274
|
-
-
|
275
|
-
|
299
|
+
-webkit-box-pack: start;
|
300
|
+
-ms-flex-pack: start;
|
301
|
+
justify-content: flex-start;
|
276
302
|
}
|
277
303
|
.e-card .e-card-header .e-card-header-image {
|
278
304
|
-ms-flex-item-align: center;
|
279
305
|
align-self: center;
|
306
|
+
display: -webkit-box;
|
280
307
|
display: -ms-flexbox;
|
281
308
|
display: flex;
|
282
309
|
}
|
283
310
|
.e-card .e-card-header .e-card-header-caption {
|
284
311
|
-ms-flex-item-align: center;
|
285
312
|
align-self: center;
|
313
|
+
display: -webkit-box;
|
286
314
|
display: -ms-flexbox;
|
287
315
|
display: flex;
|
288
|
-
-
|
289
|
-
flex: 1;
|
290
|
-
|
291
|
-
|
316
|
+
-webkit-box-flex: 1;
|
317
|
+
-ms-flex: 1;
|
318
|
+
flex: 1;
|
319
|
+
-webkit-box-orient: vertical;
|
320
|
+
-webkit-box-direction: normal;
|
321
|
+
-ms-flex-direction: column;
|
322
|
+
flex-direction: column;
|
292
323
|
overflow: hidden;
|
293
324
|
padding: 0 0 0 7.5px;
|
294
325
|
}
|
@@ -331,7 +362,8 @@
|
|
331
362
|
}
|
332
363
|
.e-card .e-card-image .e-card-title {
|
333
364
|
bottom: 0;
|
334
|
-
box-sizing: border-box;
|
365
|
+
-webkit-box-sizing: border-box;
|
366
|
+
box-sizing: border-box;
|
335
367
|
font-size: 17px;
|
336
368
|
line-height: 27px;
|
337
369
|
min-height: 27px;
|
@@ -352,28 +384,34 @@
|
|
352
384
|
text-align: right;
|
353
385
|
}
|
354
386
|
.e-card .e-card-actions {
|
355
|
-
box-sizing: border-box;
|
387
|
+
-webkit-box-sizing: border-box;
|
388
|
+
box-sizing: border-box;
|
356
389
|
display: inline-block;
|
357
|
-
-
|
358
|
-
|
390
|
+
-webkit-box-pack: start;
|
391
|
+
-ms-flex-pack: start;
|
392
|
+
justify-content: flex-start;
|
359
393
|
padding: 6px;
|
360
394
|
}
|
361
395
|
.e-card .e-card-actions.e-card-vertical {
|
396
|
+
display: -webkit-box;
|
362
397
|
display: -ms-flexbox;
|
363
398
|
display: flex;
|
364
|
-
-
|
365
|
-
|
399
|
+
-webkit-box-orient: vertical;
|
400
|
+
-webkit-box-direction: normal;
|
401
|
+
-ms-flex-direction: column;
|
402
|
+
flex-direction: column;
|
366
403
|
padding: 12px;
|
367
404
|
}
|
368
405
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
369
406
|
.e-card .e-card-actions.e-card-vertical a {
|
370
407
|
-ms-flex-item-align: initial;
|
371
|
-
-ms-grid-row-align: initial;
|
372
408
|
align-self: initial;
|
373
|
-
box-sizing: border-box;
|
409
|
+
-webkit-box-sizing: border-box;
|
410
|
+
box-sizing: border-box;
|
374
411
|
display: inline-block;
|
375
|
-
-
|
376
|
-
|
412
|
+
-webkit-box-pack: center;
|
413
|
+
-ms-flex-pack: center;
|
414
|
+
justify-content: center;
|
377
415
|
margin: 0 0 6px 0;
|
378
416
|
text-align: center;
|
379
417
|
width: 100%;
|
@@ -384,11 +422,13 @@
|
|
384
422
|
}
|
385
423
|
.e-card .e-card-actions button,
|
386
424
|
.e-card .e-card-actions a {
|
387
|
-
-
|
388
|
-
align
|
425
|
+
-webkit-box-align: center;
|
426
|
+
-ms-flex-align: center;
|
427
|
+
align-items: center;
|
389
428
|
-ms-flex-item-align: center;
|
390
429
|
align-self: center;
|
391
430
|
cursor: pointer;
|
431
|
+
display: -webkit-inline-box;
|
392
432
|
display: -ms-inline-flexbox;
|
393
433
|
display: inline-flex;
|
394
434
|
overflow: hidden;
|
@@ -397,6 +437,7 @@
|
|
397
437
|
}
|
398
438
|
.e-card .e-card-actions .e-card-btn span,
|
399
439
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
440
|
+
display: -webkit-box;
|
400
441
|
display: -ms-flexbox;
|
401
442
|
display: flex;
|
402
443
|
font-size: 14px;
|
@@ -407,10 +448,12 @@
|
|
407
448
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
408
449
|
-ms-flex-item-align: center;
|
409
450
|
align-self: center;
|
451
|
+
display: -webkit-box;
|
410
452
|
display: -ms-flexbox;
|
411
453
|
display: flex;
|
412
|
-
-
|
413
|
-
|
454
|
+
-webkit-box-pack: center;
|
455
|
+
-ms-flex-pack: center;
|
456
|
+
justify-content: center;
|
414
457
|
width: inherit;
|
415
458
|
}
|
416
459
|
.e-card .e-card-actions .e-card-btn > * {
|
@@ -455,13 +498,13 @@
|
|
455
498
|
text-overflow: ellipsis;
|
456
499
|
}
|
457
500
|
|
458
|
-
/*! card theme */
|
459
501
|
/* stylelint-disable property-no-vendor-prefix */
|
460
502
|
.e-card {
|
461
503
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
462
504
|
background: #fff;
|
463
505
|
border: 1px solid #eaeaea;
|
464
|
-
box-shadow: none;
|
506
|
+
-webkit-box-shadow: none;
|
507
|
+
box-shadow: none;
|
465
508
|
color: #333;
|
466
509
|
outline: none;
|
467
510
|
}
|
@@ -1,4 +1,3 @@
|
|
1
|
-
/*! card layout */
|
2
1
|
.e-bigger .e-card,
|
3
2
|
.e-bigger.e-card {
|
4
3
|
line-height: 48px;
|
@@ -144,15 +143,20 @@
|
|
144
143
|
|
145
144
|
.e-card {
|
146
145
|
border-radius: 2px;
|
147
|
-
box-sizing: border-box;
|
146
|
+
-webkit-box-sizing: border-box;
|
147
|
+
box-sizing: border-box;
|
148
|
+
display: -webkit-box;
|
148
149
|
display: -ms-flexbox;
|
149
150
|
display: flex;
|
150
|
-
-
|
151
|
-
|
151
|
+
-webkit-box-orient: vertical;
|
152
|
+
-webkit-box-direction: normal;
|
153
|
+
-ms-flex-direction: column;
|
154
|
+
flex-direction: column;
|
152
155
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
153
156
|
font-size: 15px;
|
154
|
-
-
|
155
|
-
|
157
|
+
-webkit-box-pack: center;
|
158
|
+
-ms-flex-pack: center;
|
159
|
+
justify-content: center;
|
156
160
|
line-height: 36px;
|
157
161
|
min-height: 36px;
|
158
162
|
overflow: hidden;
|
@@ -162,11 +166,13 @@
|
|
162
166
|
width: 100%;
|
163
167
|
}
|
164
168
|
.e-card > * {
|
165
|
-
-
|
166
|
-
|
169
|
+
-webkit-box-pack: center;
|
170
|
+
-ms-flex-pack: center;
|
171
|
+
justify-content: center;
|
167
172
|
}
|
168
173
|
.e-card > .e-card-header-title {
|
169
|
-
box-sizing: border-box;
|
174
|
+
-webkit-box-sizing: border-box;
|
175
|
+
box-sizing: border-box;
|
170
176
|
font-size: 16px;
|
171
177
|
line-height: 1.5;
|
172
178
|
padding: 12px;
|
@@ -199,22 +205,30 @@
|
|
199
205
|
font-size: 12px;
|
200
206
|
}
|
201
207
|
.e-card .e-card-stacked {
|
208
|
+
display: -webkit-box;
|
202
209
|
display: -ms-flexbox;
|
203
210
|
display: flex;
|
204
|
-
-
|
205
|
-
|
206
|
-
|
207
|
-
|
211
|
+
-webkit-box-orient: vertical;
|
212
|
+
-webkit-box-direction: normal;
|
213
|
+
-ms-flex-direction: column;
|
214
|
+
flex-direction: column;
|
215
|
+
-webkit-box-pack: center;
|
216
|
+
-ms-flex-pack: center;
|
217
|
+
justify-content: center;
|
208
218
|
overflow: hidden;
|
209
219
|
}
|
210
220
|
.e-card.e-card-horizontal,
|
211
221
|
.e-card .e-card-horizontal {
|
222
|
+
display: -webkit-box;
|
212
223
|
display: -ms-flexbox;
|
213
224
|
display: flex;
|
214
|
-
-
|
215
|
-
|
216
|
-
|
217
|
-
|
225
|
+
-webkit-box-orient: horizontal;
|
226
|
+
-webkit-box-direction: normal;
|
227
|
+
-ms-flex-direction: row;
|
228
|
+
flex-direction: row;
|
229
|
+
-webkit-box-pack: center;
|
230
|
+
-ms-flex-pack: center;
|
231
|
+
justify-content: center;
|
218
232
|
}
|
219
233
|
.e-card.e-card-horizontal .e-card-image,
|
220
234
|
.e-card.e-card-horizontal img,
|
@@ -227,21 +241,27 @@
|
|
227
241
|
padding: 2px;
|
228
242
|
}
|
229
243
|
.e-card.e-card-horizontal > * {
|
230
|
-
-
|
231
|
-
flex: 1;
|
244
|
+
-webkit-box-flex: 1;
|
245
|
+
-ms-flex: 1;
|
246
|
+
flex: 1;
|
232
247
|
}
|
233
248
|
.e-card.e-card-horizontal .e-card-stacked {
|
249
|
+
display: -webkit-box;
|
234
250
|
display: -ms-flexbox;
|
235
251
|
display: flex;
|
236
|
-
-
|
237
|
-
flex: 1;
|
238
|
-
|
239
|
-
|
252
|
+
-webkit-box-flex: 1;
|
253
|
+
-ms-flex: 1;
|
254
|
+
flex: 1;
|
255
|
+
-webkit-box-orient: vertical;
|
256
|
+
-webkit-box-direction: normal;
|
257
|
+
-ms-flex-direction: column;
|
258
|
+
flex-direction: column;
|
240
259
|
overflow: hidden;
|
241
260
|
}
|
242
261
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
243
|
-
-
|
244
|
-
flex-
|
262
|
+
-webkit-box-flex: 1;
|
263
|
+
-ms-flex-positive: 1;
|
264
|
+
flex-grow: 1;
|
245
265
|
}
|
246
266
|
.e-card .e-card-separator {
|
247
267
|
display: block;
|
@@ -250,13 +270,18 @@
|
|
250
270
|
border-radius: 50%;
|
251
271
|
}
|
252
272
|
.e-card .e-card-header {
|
253
|
-
box-sizing: border-box;
|
273
|
+
-webkit-box-sizing: border-box;
|
274
|
+
box-sizing: border-box;
|
275
|
+
display: -webkit-box;
|
254
276
|
display: -ms-flexbox;
|
255
277
|
display: flex;
|
256
|
-
-
|
257
|
-
|
258
|
-
|
259
|
-
|
278
|
+
-webkit-box-orient: horizontal;
|
279
|
+
-webkit-box-direction: normal;
|
280
|
+
-ms-flex-direction: row;
|
281
|
+
flex-direction: row;
|
282
|
+
-webkit-box-pack: center;
|
283
|
+
-ms-flex-pack: center;
|
284
|
+
justify-content: center;
|
260
285
|
line-height: normal;
|
261
286
|
min-height: 22.5px;
|
262
287
|
padding: 16px 16px 0 16px;
|
@@ -267,24 +292,30 @@
|
|
267
292
|
padding-right: 0;
|
268
293
|
}
|
269
294
|
.e-card .e-card-header .e-card-actions {
|
270
|
-
-
|
271
|
-
|
295
|
+
-webkit-box-pack: start;
|
296
|
+
-ms-flex-pack: start;
|
297
|
+
justify-content: flex-start;
|
272
298
|
}
|
273
299
|
.e-card .e-card-header .e-card-header-image {
|
274
300
|
-ms-flex-item-align: center;
|
275
301
|
align-self: center;
|
302
|
+
display: -webkit-box;
|
276
303
|
display: -ms-flexbox;
|
277
304
|
display: flex;
|
278
305
|
}
|
279
306
|
.e-card .e-card-header .e-card-header-caption {
|
280
307
|
-ms-flex-item-align: center;
|
281
308
|
align-self: center;
|
309
|
+
display: -webkit-box;
|
282
310
|
display: -ms-flexbox;
|
283
311
|
display: flex;
|
284
|
-
-
|
285
|
-
flex: 1;
|
286
|
-
|
287
|
-
|
312
|
+
-webkit-box-flex: 1;
|
313
|
+
-ms-flex: 1;
|
314
|
+
flex: 1;
|
315
|
+
-webkit-box-orient: vertical;
|
316
|
+
-webkit-box-direction: normal;
|
317
|
+
-ms-flex-direction: column;
|
318
|
+
flex-direction: column;
|
288
319
|
overflow: hidden;
|
289
320
|
padding: 0 0 0 12px;
|
290
321
|
}
|
@@ -329,7 +360,8 @@
|
|
329
360
|
}
|
330
361
|
.e-card .e-card-image .e-card-title {
|
331
362
|
bottom: 0;
|
332
|
-
box-sizing: border-box;
|
363
|
+
-webkit-box-sizing: border-box;
|
364
|
+
box-sizing: border-box;
|
333
365
|
font-size: 16px;
|
334
366
|
line-height: 30px;
|
335
367
|
min-height: 30px;
|
@@ -350,28 +382,34 @@
|
|
350
382
|
text-align: right;
|
351
383
|
}
|
352
384
|
.e-card .e-card-actions {
|
353
|
-
box-sizing: border-box;
|
385
|
+
-webkit-box-sizing: border-box;
|
386
|
+
box-sizing: border-box;
|
354
387
|
display: inline-block;
|
355
|
-
-
|
356
|
-
|
388
|
+
-webkit-box-pack: start;
|
389
|
+
-ms-flex-pack: start;
|
390
|
+
justify-content: flex-start;
|
357
391
|
padding: 16px;
|
358
392
|
}
|
359
393
|
.e-card .e-card-actions.e-card-vertical {
|
394
|
+
display: -webkit-box;
|
360
395
|
display: -ms-flexbox;
|
361
396
|
display: flex;
|
362
|
-
-
|
363
|
-
|
397
|
+
-webkit-box-orient: vertical;
|
398
|
+
-webkit-box-direction: normal;
|
399
|
+
-ms-flex-direction: column;
|
400
|
+
flex-direction: column;
|
364
401
|
padding: 12px;
|
365
402
|
}
|
366
403
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
367
404
|
.e-card .e-card-actions.e-card-vertical a {
|
368
405
|
-ms-flex-item-align: initial;
|
369
|
-
-ms-grid-row-align: initial;
|
370
406
|
align-self: initial;
|
371
|
-
box-sizing: border-box;
|
407
|
+
-webkit-box-sizing: border-box;
|
408
|
+
box-sizing: border-box;
|
372
409
|
display: inline-block;
|
373
|
-
-
|
374
|
-
|
410
|
+
-webkit-box-pack: center;
|
411
|
+
-ms-flex-pack: center;
|
412
|
+
justify-content: center;
|
375
413
|
margin: 0 0 6px 0;
|
376
414
|
text-align: center;
|
377
415
|
width: 100%;
|
@@ -382,11 +420,13 @@
|
|
382
420
|
}
|
383
421
|
.e-card .e-card-actions button,
|
384
422
|
.e-card .e-card-actions a {
|
385
|
-
-
|
386
|
-
align
|
423
|
+
-webkit-box-align: center;
|
424
|
+
-ms-flex-align: center;
|
425
|
+
align-items: center;
|
387
426
|
-ms-flex-item-align: center;
|
388
427
|
align-self: center;
|
389
428
|
cursor: pointer;
|
429
|
+
display: -webkit-inline-box;
|
390
430
|
display: -ms-inline-flexbox;
|
391
431
|
display: inline-flex;
|
392
432
|
overflow: hidden;
|
@@ -395,6 +435,7 @@
|
|
395
435
|
}
|
396
436
|
.e-card .e-card-actions .e-card-btn span,
|
397
437
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
438
|
+
display: -webkit-box;
|
398
439
|
display: -ms-flexbox;
|
399
440
|
display: flex;
|
400
441
|
font-size: 18px;
|
@@ -405,10 +446,12 @@
|
|
405
446
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
406
447
|
-ms-flex-item-align: center;
|
407
448
|
align-self: center;
|
449
|
+
display: -webkit-box;
|
408
450
|
display: -ms-flexbox;
|
409
451
|
display: flex;
|
410
|
-
-
|
411
|
-
|
452
|
+
-webkit-box-pack: center;
|
453
|
+
-ms-flex-pack: center;
|
454
|
+
justify-content: center;
|
412
455
|
width: inherit;
|
413
456
|
}
|
414
457
|
.e-card .e-card-actions .e-card-btn > * {
|
@@ -456,13 +499,13 @@
|
|
456
499
|
text-overflow: ellipsis;
|
457
500
|
}
|
458
501
|
|
459
|
-
/*! card theme */
|
460
502
|
/* stylelint-disable property-no-vendor-prefix */
|
461
503
|
.e-card {
|
462
504
|
-webkit-tap-highlight-color: #0078d4;
|
463
505
|
background: #252423;
|
464
506
|
border: 0 solid #292827;
|
465
|
-
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
507
|
+
-webkit-box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
508
|
+
box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
|
466
509
|
color: #f3f2f1;
|
467
510
|
outline: none;
|
468
511
|
}
|
@@ -525,10 +568,12 @@
|
|
525
568
|
}
|
526
569
|
|
527
570
|
.e-card-hover:hover {
|
528
|
-
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
571
|
+
-webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
572
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
529
573
|
}
|
530
574
|
|
531
575
|
.e-card-active:active {
|
532
576
|
border: 1px solid #3b3a39;
|
533
|
-
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
577
|
+
-webkit-box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
578
|
+
box-shadow: 0 6.4px 14.4px 0 rgba(0, 0, 0, 0.132), 0 1.2px 3.6px 0 rgba(0, 0, 0, 0.108);
|
534
579
|
}
|