@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
@@ -1,6 +1,5 @@
|
|
1
1
|
/*! component's default definitions and variables */
|
2
2
|
/*! component's theme wise override material-definitions and variables */
|
3
|
-
/*! card layout */
|
4
3
|
.e-bigger .e-card,
|
5
4
|
.e-bigger.e-card {
|
6
5
|
line-height: 36px;
|
@@ -138,15 +137,20 @@
|
|
138
137
|
|
139
138
|
.e-card {
|
140
139
|
border-radius: 0;
|
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: 16px;
|
151
155
|
min-height: 48px;
|
152
156
|
overflow: hidden;
|
@@ -156,11 +160,13 @@
|
|
156
160
|
width: 100%;
|
157
161
|
}
|
158
162
|
.e-card > * {
|
159
|
-
-
|
160
|
-
|
163
|
+
-webkit-box-pack: center;
|
164
|
+
-ms-flex-pack: center;
|
165
|
+
justify-content: center;
|
161
166
|
}
|
162
167
|
.e-card > .e-card-header-title {
|
163
|
-
box-sizing: border-box;
|
168
|
+
-webkit-box-sizing: border-box;
|
169
|
+
box-sizing: border-box;
|
164
170
|
font-size: 15px;
|
165
171
|
line-height: 16px;
|
166
172
|
padding: 16px;
|
@@ -193,22 +199,30 @@
|
|
193
199
|
font-size: 14px;
|
194
200
|
}
|
195
201
|
.e-card .e-card-stacked {
|
202
|
+
display: -webkit-box;
|
196
203
|
display: -ms-flexbox;
|
197
204
|
display: flex;
|
198
|
-
-
|
199
|
-
|
200
|
-
|
201
|
-
|
205
|
+
-webkit-box-orient: vertical;
|
206
|
+
-webkit-box-direction: normal;
|
207
|
+
-ms-flex-direction: column;
|
208
|
+
flex-direction: column;
|
209
|
+
-webkit-box-pack: center;
|
210
|
+
-ms-flex-pack: center;
|
211
|
+
justify-content: center;
|
202
212
|
overflow: hidden;
|
203
213
|
}
|
204
214
|
.e-card.e-card-horizontal,
|
205
215
|
.e-card .e-card-horizontal {
|
216
|
+
display: -webkit-box;
|
206
217
|
display: -ms-flexbox;
|
207
218
|
display: flex;
|
208
|
-
-
|
209
|
-
|
210
|
-
|
211
|
-
|
219
|
+
-webkit-box-orient: horizontal;
|
220
|
+
-webkit-box-direction: normal;
|
221
|
+
-ms-flex-direction: row;
|
222
|
+
flex-direction: row;
|
223
|
+
-webkit-box-pack: center;
|
224
|
+
-ms-flex-pack: center;
|
225
|
+
justify-content: center;
|
212
226
|
}
|
213
227
|
.e-card.e-card-horizontal .e-card-image,
|
214
228
|
.e-card.e-card-horizontal img,
|
@@ -221,21 +235,27 @@
|
|
221
235
|
padding: 2px;
|
222
236
|
}
|
223
237
|
.e-card.e-card-horizontal > * {
|
224
|
-
-
|
225
|
-
flex: 1;
|
238
|
+
-webkit-box-flex: 1;
|
239
|
+
-ms-flex: 1;
|
240
|
+
flex: 1;
|
226
241
|
}
|
227
242
|
.e-card.e-card-horizontal .e-card-stacked {
|
243
|
+
display: -webkit-box;
|
228
244
|
display: -ms-flexbox;
|
229
245
|
display: flex;
|
230
|
-
-
|
231
|
-
flex: 1;
|
232
|
-
|
233
|
-
|
246
|
+
-webkit-box-flex: 1;
|
247
|
+
-ms-flex: 1;
|
248
|
+
flex: 1;
|
249
|
+
-webkit-box-orient: vertical;
|
250
|
+
-webkit-box-direction: normal;
|
251
|
+
-ms-flex-direction: column;
|
252
|
+
flex-direction: column;
|
234
253
|
overflow: hidden;
|
235
254
|
}
|
236
255
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
237
|
-
-
|
238
|
-
flex-
|
256
|
+
-webkit-box-flex: 1;
|
257
|
+
-ms-flex-positive: 1;
|
258
|
+
flex-grow: 1;
|
239
259
|
}
|
240
260
|
.e-card .e-card-separator {
|
241
261
|
display: block;
|
@@ -244,13 +264,18 @@
|
|
244
264
|
border-radius: 50%;
|
245
265
|
}
|
246
266
|
.e-card .e-card-header {
|
247
|
-
box-sizing: border-box;
|
267
|
+
-webkit-box-sizing: border-box;
|
268
|
+
box-sizing: border-box;
|
269
|
+
display: -webkit-box;
|
248
270
|
display: -ms-flexbox;
|
249
271
|
display: flex;
|
250
|
-
-
|
251
|
-
|
252
|
-
|
253
|
-
|
272
|
+
-webkit-box-orient: horizontal;
|
273
|
+
-webkit-box-direction: normal;
|
274
|
+
-ms-flex-direction: row;
|
275
|
+
flex-direction: row;
|
276
|
+
-webkit-box-pack: center;
|
277
|
+
-ms-flex-pack: center;
|
278
|
+
justify-content: center;
|
254
279
|
line-height: normal;
|
255
280
|
min-height: 30px;
|
256
281
|
padding: 16px 0 16px 16px;
|
@@ -261,24 +286,30 @@
|
|
261
286
|
padding-right: 0;
|
262
287
|
}
|
263
288
|
.e-card .e-card-header .e-card-actions {
|
264
|
-
-
|
265
|
-
|
289
|
+
-webkit-box-pack: start;
|
290
|
+
-ms-flex-pack: start;
|
291
|
+
justify-content: flex-start;
|
266
292
|
}
|
267
293
|
.e-card .e-card-header .e-card-header-image {
|
268
294
|
-ms-flex-item-align: center;
|
269
295
|
align-self: center;
|
296
|
+
display: -webkit-box;
|
270
297
|
display: -ms-flexbox;
|
271
298
|
display: flex;
|
272
299
|
}
|
273
300
|
.e-card .e-card-header .e-card-header-caption {
|
274
301
|
-ms-flex-item-align: center;
|
275
302
|
align-self: center;
|
303
|
+
display: -webkit-box;
|
276
304
|
display: -ms-flexbox;
|
277
305
|
display: flex;
|
278
|
-
-
|
279
|
-
flex: 1;
|
280
|
-
|
281
|
-
|
306
|
+
-webkit-box-flex: 1;
|
307
|
+
-ms-flex: 1;
|
308
|
+
flex: 1;
|
309
|
+
-webkit-box-orient: vertical;
|
310
|
+
-webkit-box-direction: normal;
|
311
|
+
-ms-flex-direction: column;
|
312
|
+
flex-direction: column;
|
282
313
|
overflow: hidden;
|
283
314
|
padding: 0 0 0 8px;
|
284
315
|
}
|
@@ -320,7 +351,8 @@
|
|
320
351
|
}
|
321
352
|
.e-card .e-card-image .e-card-title {
|
322
353
|
bottom: 0;
|
323
|
-
box-sizing: border-box;
|
354
|
+
-webkit-box-sizing: border-box;
|
355
|
+
box-sizing: border-box;
|
324
356
|
font-size: 24px;
|
325
357
|
line-height: 22px;
|
326
358
|
min-height: 40px;
|
@@ -341,28 +373,34 @@
|
|
341
373
|
text-align: right;
|
342
374
|
}
|
343
375
|
.e-card .e-card-actions {
|
344
|
-
box-sizing: border-box;
|
376
|
+
-webkit-box-sizing: border-box;
|
377
|
+
box-sizing: border-box;
|
345
378
|
display: inline-block;
|
346
|
-
-
|
347
|
-
|
379
|
+
-webkit-box-pack: start;
|
380
|
+
-ms-flex-pack: start;
|
381
|
+
justify-content: flex-start;
|
348
382
|
padding: 8px;
|
349
383
|
}
|
350
384
|
.e-card .e-card-actions.e-card-vertical {
|
385
|
+
display: -webkit-box;
|
351
386
|
display: -ms-flexbox;
|
352
387
|
display: flex;
|
353
|
-
-
|
354
|
-
|
388
|
+
-webkit-box-orient: vertical;
|
389
|
+
-webkit-box-direction: normal;
|
390
|
+
-ms-flex-direction: column;
|
391
|
+
flex-direction: column;
|
355
392
|
padding: 0 8px;
|
356
393
|
}
|
357
394
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
358
395
|
.e-card .e-card-actions.e-card-vertical a {
|
359
396
|
-ms-flex-item-align: initial;
|
360
|
-
-ms-grid-row-align: initial;
|
361
397
|
align-self: initial;
|
362
|
-
box-sizing: border-box;
|
398
|
+
-webkit-box-sizing: border-box;
|
399
|
+
box-sizing: border-box;
|
363
400
|
display: inline-block;
|
364
|
-
-
|
365
|
-
|
401
|
+
-webkit-box-pack: center;
|
402
|
+
-ms-flex-pack: center;
|
403
|
+
justify-content: center;
|
366
404
|
margin: 0 0 8px 0;
|
367
405
|
text-align: center;
|
368
406
|
width: 100%;
|
@@ -373,11 +411,13 @@
|
|
373
411
|
}
|
374
412
|
.e-card .e-card-actions button,
|
375
413
|
.e-card .e-card-actions a {
|
376
|
-
-
|
377
|
-
align
|
414
|
+
-webkit-box-align: center;
|
415
|
+
-ms-flex-align: center;
|
416
|
+
align-items: center;
|
378
417
|
-ms-flex-item-align: center;
|
379
418
|
align-self: center;
|
380
419
|
cursor: pointer;
|
420
|
+
display: -webkit-inline-box;
|
381
421
|
display: -ms-inline-flexbox;
|
382
422
|
display: inline-flex;
|
383
423
|
overflow: hidden;
|
@@ -386,6 +426,7 @@
|
|
386
426
|
}
|
387
427
|
.e-card .e-card-actions .e-card-btn span,
|
388
428
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
429
|
+
display: -webkit-box;
|
389
430
|
display: -ms-flexbox;
|
390
431
|
display: flex;
|
391
432
|
font-size: 14px;
|
@@ -396,10 +437,12 @@
|
|
396
437
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
397
438
|
-ms-flex-item-align: center;
|
398
439
|
align-self: center;
|
440
|
+
display: -webkit-box;
|
399
441
|
display: -ms-flexbox;
|
400
442
|
display: flex;
|
401
|
-
-
|
402
|
-
|
443
|
+
-webkit-box-pack: center;
|
444
|
+
-ms-flex-pack: center;
|
445
|
+
justify-content: center;
|
403
446
|
width: inherit;
|
404
447
|
}
|
405
448
|
.e-card .e-card-actions .e-card-btn > * {
|
@@ -444,13 +487,13 @@
|
|
444
487
|
text-overflow: ellipsis;
|
445
488
|
}
|
446
489
|
|
447
|
-
/*! card theme */
|
448
490
|
/* stylelint-disable property-no-vendor-prefix */
|
449
491
|
.e-card {
|
450
492
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
451
493
|
background: #ccc;
|
452
494
|
border: 1px solid #757575;
|
453
|
-
box-shadow: none;
|
495
|
+
-webkit-box-shadow: none;
|
496
|
+
box-shadow: none;
|
454
497
|
color: #000;
|
455
498
|
outline: none;
|
456
499
|
}
|
@@ -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,12 +296,14 @@
|
|
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
|
border: 1px solid;
|
@@ -284,12 +311,16 @@
|
|
284
311
|
.e-card .e-card-header .e-card-header-caption {
|
285
312
|
-ms-flex-item-align: center;
|
286
313
|
align-self: center;
|
314
|
+
display: -webkit-box;
|
287
315
|
display: -ms-flexbox;
|
288
316
|
display: flex;
|
289
|
-
-
|
290
|
-
flex: 1;
|
291
|
-
|
292
|
-
|
317
|
+
-webkit-box-flex: 1;
|
318
|
+
-ms-flex: 1;
|
319
|
+
flex: 1;
|
320
|
+
-webkit-box-orient: vertical;
|
321
|
+
-webkit-box-direction: normal;
|
322
|
+
-ms-flex-direction: column;
|
323
|
+
flex-direction: column;
|
293
324
|
overflow: hidden;
|
294
325
|
padding: 0 0 0 7.5px;
|
295
326
|
}
|
@@ -332,7 +363,8 @@
|
|
332
363
|
}
|
333
364
|
.e-card .e-card-image .e-card-title {
|
334
365
|
bottom: 0;
|
335
|
-
box-sizing: border-box;
|
366
|
+
-webkit-box-sizing: border-box;
|
367
|
+
box-sizing: border-box;
|
336
368
|
font-size: 17px;
|
337
369
|
line-height: 27px;
|
338
370
|
min-height: 27px;
|
@@ -353,28 +385,34 @@
|
|
353
385
|
text-align: right;
|
354
386
|
}
|
355
387
|
.e-card .e-card-actions {
|
356
|
-
box-sizing: border-box;
|
388
|
+
-webkit-box-sizing: border-box;
|
389
|
+
box-sizing: border-box;
|
357
390
|
display: inline-block;
|
358
|
-
-
|
359
|
-
|
391
|
+
-webkit-box-pack: start;
|
392
|
+
-ms-flex-pack: start;
|
393
|
+
justify-content: flex-start;
|
360
394
|
padding: 6px;
|
361
395
|
}
|
362
396
|
.e-card .e-card-actions.e-card-vertical {
|
397
|
+
display: -webkit-box;
|
363
398
|
display: -ms-flexbox;
|
364
399
|
display: flex;
|
365
|
-
-
|
366
|
-
|
400
|
+
-webkit-box-orient: vertical;
|
401
|
+
-webkit-box-direction: normal;
|
402
|
+
-ms-flex-direction: column;
|
403
|
+
flex-direction: column;
|
367
404
|
padding: 12px;
|
368
405
|
}
|
369
406
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
370
407
|
.e-card .e-card-actions.e-card-vertical a {
|
371
408
|
-ms-flex-item-align: initial;
|
372
|
-
-ms-grid-row-align: initial;
|
373
409
|
align-self: initial;
|
374
|
-
box-sizing: border-box;
|
410
|
+
-webkit-box-sizing: border-box;
|
411
|
+
box-sizing: border-box;
|
375
412
|
display: inline-block;
|
376
|
-
-
|
377
|
-
|
413
|
+
-webkit-box-pack: center;
|
414
|
+
-ms-flex-pack: center;
|
415
|
+
justify-content: center;
|
378
416
|
margin: 0 0 6px 0;
|
379
417
|
text-align: center;
|
380
418
|
width: 100%;
|
@@ -385,11 +423,13 @@
|
|
385
423
|
}
|
386
424
|
.e-card .e-card-actions button,
|
387
425
|
.e-card .e-card-actions a {
|
388
|
-
-
|
389
|
-
align
|
426
|
+
-webkit-box-align: center;
|
427
|
+
-ms-flex-align: center;
|
428
|
+
align-items: center;
|
390
429
|
-ms-flex-item-align: center;
|
391
430
|
align-self: center;
|
392
431
|
cursor: pointer;
|
432
|
+
display: -webkit-inline-box;
|
393
433
|
display: -ms-inline-flexbox;
|
394
434
|
display: inline-flex;
|
395
435
|
overflow: hidden;
|
@@ -398,6 +438,7 @@
|
|
398
438
|
}
|
399
439
|
.e-card .e-card-actions .e-card-btn span,
|
400
440
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
441
|
+
display: -webkit-box;
|
401
442
|
display: -ms-flexbox;
|
402
443
|
display: flex;
|
403
444
|
font-size: 14px;
|
@@ -408,10 +449,12 @@
|
|
408
449
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
409
450
|
-ms-flex-item-align: center;
|
410
451
|
align-self: center;
|
452
|
+
display: -webkit-box;
|
411
453
|
display: -ms-flexbox;
|
412
454
|
display: flex;
|
413
|
-
-
|
414
|
-
|
455
|
+
-webkit-box-pack: center;
|
456
|
+
-ms-flex-pack: center;
|
457
|
+
justify-content: center;
|
415
458
|
width: inherit;
|
416
459
|
}
|
417
460
|
.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: rgba(0, 0, 0, 0);
|
463
505
|
background: #000;
|
464
506
|
border: 1px solid #969696;
|
465
|
-
box-shadow: none;
|
507
|
+
-webkit-box-shadow: none;
|
508
|
+
box-shadow: none;
|
466
509
|
color: #fff;
|
467
510
|
outline: none;
|
468
511
|
}
|