@syncfusion/ej2-layouts 25.2.3 → 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 -601
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/*! card layout */
|
|
2
1
|
.e-bigger .e-card,
|
|
3
2
|
.e-bigger.e-card {
|
|
4
3
|
line-height: 45px;
|
|
@@ -145,15 +144,20 @@
|
|
|
145
144
|
|
|
146
145
|
.e-card {
|
|
147
146
|
border-radius: 4px;
|
|
148
|
-
box-sizing: border-box;
|
|
147
|
+
-webkit-box-sizing: border-box;
|
|
148
|
+
box-sizing: border-box;
|
|
149
|
+
display: -webkit-box;
|
|
149
150
|
display: -ms-flexbox;
|
|
150
151
|
display: flex;
|
|
151
|
-
-
|
|
152
|
-
|
|
152
|
+
-webkit-box-orient: vertical;
|
|
153
|
+
-webkit-box-direction: normal;
|
|
154
|
+
-ms-flex-direction: column;
|
|
155
|
+
flex-direction: column;
|
|
153
156
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
154
157
|
font-size: 15px;
|
|
155
|
-
-
|
|
156
|
-
|
|
158
|
+
-webkit-box-pack: center;
|
|
159
|
+
-ms-flex-pack: center;
|
|
160
|
+
justify-content: center;
|
|
157
161
|
line-height: 36px;
|
|
158
162
|
min-height: 36px;
|
|
159
163
|
overflow: hidden;
|
|
@@ -163,11 +167,13 @@
|
|
|
163
167
|
width: 100%;
|
|
164
168
|
}
|
|
165
169
|
.e-card > * {
|
|
166
|
-
-
|
|
167
|
-
|
|
170
|
+
-webkit-box-pack: center;
|
|
171
|
+
-ms-flex-pack: center;
|
|
172
|
+
justify-content: center;
|
|
168
173
|
}
|
|
169
174
|
.e-card > .e-card-header-title {
|
|
170
|
-
box-sizing: border-box;
|
|
175
|
+
-webkit-box-sizing: border-box;
|
|
176
|
+
box-sizing: border-box;
|
|
171
177
|
font-size: 18px;
|
|
172
178
|
line-height: normal;
|
|
173
179
|
padding: 16px;
|
|
@@ -200,22 +206,30 @@
|
|
|
200
206
|
font-size: 14px;
|
|
201
207
|
}
|
|
202
208
|
.e-card .e-card-stacked {
|
|
209
|
+
display: -webkit-box;
|
|
203
210
|
display: -ms-flexbox;
|
|
204
211
|
display: flex;
|
|
205
|
-
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
212
|
+
-webkit-box-orient: vertical;
|
|
213
|
+
-webkit-box-direction: normal;
|
|
214
|
+
-ms-flex-direction: column;
|
|
215
|
+
flex-direction: column;
|
|
216
|
+
-webkit-box-pack: center;
|
|
217
|
+
-ms-flex-pack: center;
|
|
218
|
+
justify-content: center;
|
|
209
219
|
overflow: hidden;
|
|
210
220
|
}
|
|
211
221
|
.e-card.e-card-horizontal,
|
|
212
222
|
.e-card .e-card-horizontal {
|
|
223
|
+
display: -webkit-box;
|
|
213
224
|
display: -ms-flexbox;
|
|
214
225
|
display: flex;
|
|
215
|
-
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
226
|
+
-webkit-box-orient: horizontal;
|
|
227
|
+
-webkit-box-direction: normal;
|
|
228
|
+
-ms-flex-direction: row;
|
|
229
|
+
flex-direction: row;
|
|
230
|
+
-webkit-box-pack: center;
|
|
231
|
+
-ms-flex-pack: center;
|
|
232
|
+
justify-content: center;
|
|
219
233
|
}
|
|
220
234
|
.e-card.e-card-horizontal .e-card-image,
|
|
221
235
|
.e-card.e-card-horizontal img,
|
|
@@ -228,21 +242,27 @@
|
|
|
228
242
|
padding: 2px;
|
|
229
243
|
}
|
|
230
244
|
.e-card.e-card-horizontal > * {
|
|
231
|
-
-
|
|
232
|
-
flex: 1;
|
|
245
|
+
-webkit-box-flex: 1;
|
|
246
|
+
-ms-flex: 1;
|
|
247
|
+
flex: 1;
|
|
233
248
|
}
|
|
234
249
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
250
|
+
display: -webkit-box;
|
|
235
251
|
display: -ms-flexbox;
|
|
236
252
|
display: flex;
|
|
237
|
-
-
|
|
238
|
-
flex: 1;
|
|
239
|
-
|
|
240
|
-
|
|
253
|
+
-webkit-box-flex: 1;
|
|
254
|
+
-ms-flex: 1;
|
|
255
|
+
flex: 1;
|
|
256
|
+
-webkit-box-orient: vertical;
|
|
257
|
+
-webkit-box-direction: normal;
|
|
258
|
+
-ms-flex-direction: column;
|
|
259
|
+
flex-direction: column;
|
|
241
260
|
overflow: hidden;
|
|
242
261
|
}
|
|
243
262
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
244
|
-
-
|
|
245
|
-
flex-
|
|
263
|
+
-webkit-box-flex: 1;
|
|
264
|
+
-ms-flex-positive: 1;
|
|
265
|
+
flex-grow: 1;
|
|
246
266
|
}
|
|
247
267
|
.e-card .e-card-separator {
|
|
248
268
|
display: block;
|
|
@@ -251,13 +271,18 @@
|
|
|
251
271
|
border-radius: 50%;
|
|
252
272
|
}
|
|
253
273
|
.e-card .e-card-header {
|
|
254
|
-
box-sizing: border-box;
|
|
274
|
+
-webkit-box-sizing: border-box;
|
|
275
|
+
box-sizing: border-box;
|
|
276
|
+
display: -webkit-box;
|
|
255
277
|
display: -ms-flexbox;
|
|
256
278
|
display: flex;
|
|
257
|
-
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
279
|
+
-webkit-box-orient: horizontal;
|
|
280
|
+
-webkit-box-direction: normal;
|
|
281
|
+
-ms-flex-direction: row;
|
|
282
|
+
flex-direction: row;
|
|
283
|
+
-webkit-box-pack: center;
|
|
284
|
+
-ms-flex-pack: center;
|
|
285
|
+
justify-content: center;
|
|
261
286
|
line-height: normal;
|
|
262
287
|
min-height: 22.5px;
|
|
263
288
|
padding: 16px;
|
|
@@ -268,24 +293,30 @@
|
|
|
268
293
|
padding-right: 0;
|
|
269
294
|
}
|
|
270
295
|
.e-card .e-card-header .e-card-actions {
|
|
271
|
-
-
|
|
272
|
-
|
|
296
|
+
-webkit-box-pack: start;
|
|
297
|
+
-ms-flex-pack: start;
|
|
298
|
+
justify-content: flex-start;
|
|
273
299
|
}
|
|
274
300
|
.e-card .e-card-header .e-card-header-image {
|
|
275
301
|
-ms-flex-item-align: center;
|
|
276
302
|
align-self: center;
|
|
303
|
+
display: -webkit-box;
|
|
277
304
|
display: -ms-flexbox;
|
|
278
305
|
display: flex;
|
|
279
306
|
}
|
|
280
307
|
.e-card .e-card-header .e-card-header-caption {
|
|
281
308
|
-ms-flex-item-align: center;
|
|
282
309
|
align-self: center;
|
|
310
|
+
display: -webkit-box;
|
|
283
311
|
display: -ms-flexbox;
|
|
284
312
|
display: flex;
|
|
285
|
-
-
|
|
286
|
-
flex: 1;
|
|
287
|
-
|
|
288
|
-
|
|
313
|
+
-webkit-box-flex: 1;
|
|
314
|
+
-ms-flex: 1;
|
|
315
|
+
flex: 1;
|
|
316
|
+
-webkit-box-orient: vertical;
|
|
317
|
+
-webkit-box-direction: normal;
|
|
318
|
+
-ms-flex-direction: column;
|
|
319
|
+
flex-direction: column;
|
|
289
320
|
overflow: hidden;
|
|
290
321
|
padding: 0 0 0 7.5px;
|
|
291
322
|
}
|
|
@@ -327,7 +358,8 @@
|
|
|
327
358
|
}
|
|
328
359
|
.e-card .e-card-image .e-card-title {
|
|
329
360
|
bottom: 0;
|
|
330
|
-
box-sizing: border-box;
|
|
361
|
+
-webkit-box-sizing: border-box;
|
|
362
|
+
box-sizing: border-box;
|
|
331
363
|
font-size: 20px;
|
|
332
364
|
line-height: 27px;
|
|
333
365
|
min-height: 27px;
|
|
@@ -348,28 +380,34 @@
|
|
|
348
380
|
text-align: right;
|
|
349
381
|
}
|
|
350
382
|
.e-card .e-card-actions {
|
|
351
|
-
box-sizing: border-box;
|
|
383
|
+
-webkit-box-sizing: border-box;
|
|
384
|
+
box-sizing: border-box;
|
|
352
385
|
display: inline-block;
|
|
353
|
-
-
|
|
354
|
-
|
|
386
|
+
-webkit-box-pack: start;
|
|
387
|
+
-ms-flex-pack: start;
|
|
388
|
+
justify-content: flex-start;
|
|
355
389
|
padding: 16px;
|
|
356
390
|
}
|
|
357
391
|
.e-card .e-card-actions.e-card-vertical {
|
|
392
|
+
display: -webkit-box;
|
|
358
393
|
display: -ms-flexbox;
|
|
359
394
|
display: flex;
|
|
360
|
-
-
|
|
361
|
-
|
|
395
|
+
-webkit-box-orient: vertical;
|
|
396
|
+
-webkit-box-direction: normal;
|
|
397
|
+
-ms-flex-direction: column;
|
|
398
|
+
flex-direction: column;
|
|
362
399
|
padding: 16px;
|
|
363
400
|
}
|
|
364
401
|
.e-card .e-card-actions.e-card-vertical .e-card-btn,
|
|
365
402
|
.e-card .e-card-actions.e-card-vertical a {
|
|
366
403
|
-ms-flex-item-align: initial;
|
|
367
|
-
-ms-grid-row-align: initial;
|
|
368
404
|
align-self: initial;
|
|
369
|
-
box-sizing: border-box;
|
|
405
|
+
-webkit-box-sizing: border-box;
|
|
406
|
+
box-sizing: border-box;
|
|
370
407
|
display: inline-block;
|
|
371
|
-
-
|
|
372
|
-
|
|
408
|
+
-webkit-box-pack: center;
|
|
409
|
+
-ms-flex-pack: center;
|
|
410
|
+
justify-content: center;
|
|
373
411
|
margin: 0 0 6px 0;
|
|
374
412
|
text-align: center;
|
|
375
413
|
width: 100%;
|
|
@@ -380,11 +418,13 @@
|
|
|
380
418
|
}
|
|
381
419
|
.e-card .e-card-actions button,
|
|
382
420
|
.e-card .e-card-actions a {
|
|
383
|
-
-
|
|
384
|
-
align
|
|
421
|
+
-webkit-box-align: center;
|
|
422
|
+
-ms-flex-align: center;
|
|
423
|
+
align-items: center;
|
|
385
424
|
-ms-flex-item-align: center;
|
|
386
425
|
align-self: center;
|
|
387
426
|
cursor: pointer;
|
|
427
|
+
display: -webkit-inline-box;
|
|
388
428
|
display: -ms-inline-flexbox;
|
|
389
429
|
display: inline-flex;
|
|
390
430
|
overflow: hidden;
|
|
@@ -393,6 +433,7 @@
|
|
|
393
433
|
}
|
|
394
434
|
.e-card .e-card-actions .e-card-btn span,
|
|
395
435
|
.e-card .e-card-actions .e-card-btn span.e-icons {
|
|
436
|
+
display: -webkit-box;
|
|
396
437
|
display: -ms-flexbox;
|
|
397
438
|
display: flex;
|
|
398
439
|
font-size: 14px;
|
|
@@ -403,10 +444,12 @@
|
|
|
403
444
|
.e-card .e-card-actions .e-card-btn span.e-icons::before {
|
|
404
445
|
-ms-flex-item-align: center;
|
|
405
446
|
align-self: center;
|
|
447
|
+
display: -webkit-box;
|
|
406
448
|
display: -ms-flexbox;
|
|
407
449
|
display: flex;
|
|
408
|
-
-
|
|
409
|
-
|
|
450
|
+
-webkit-box-pack: center;
|
|
451
|
+
-ms-flex-pack: center;
|
|
452
|
+
justify-content: center;
|
|
410
453
|
width: inherit;
|
|
411
454
|
}
|
|
412
455
|
.e-card .e-card-actions .e-card-btn > * {
|
|
@@ -451,13 +494,13 @@
|
|
|
451
494
|
text-overflow: ellipsis;
|
|
452
495
|
}
|
|
453
496
|
|
|
454
|
-
/*! card theme */
|
|
455
497
|
/* stylelint-disable property-no-vendor-prefix */
|
|
456
498
|
.e-card {
|
|
457
499
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
458
500
|
background: #fff;
|
|
459
501
|
border: 1px solid rgba(0, 0, 0, 0.12);
|
|
460
|
-
box-shadow: none;
|
|
502
|
+
-webkit-box-shadow: none;
|
|
503
|
+
box-shadow: none;
|
|
461
504
|
color: #212529;
|
|
462
505
|
outline: none;
|
|
463
506
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/*! card layout */
|
|
2
1
|
.e-bigger .e-card,
|
|
3
2
|
.e-bigger.e-card {
|
|
4
3
|
line-height: 48px;
|
|
@@ -137,15 +136,20 @@
|
|
|
137
136
|
|
|
138
137
|
.e-card {
|
|
139
138
|
border-radius: 4px;
|
|
140
|
-
box-sizing: border-box;
|
|
139
|
+
-webkit-box-sizing: border-box;
|
|
140
|
+
box-sizing: border-box;
|
|
141
|
+
display: -webkit-box;
|
|
141
142
|
display: -ms-flexbox;
|
|
142
143
|
display: flex;
|
|
143
|
-
-
|
|
144
|
-
|
|
144
|
+
-webkit-box-orient: vertical;
|
|
145
|
+
-webkit-box-direction: normal;
|
|
146
|
+
-ms-flex-direction: column;
|
|
147
|
+
flex-direction: column;
|
|
145
148
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
146
149
|
font-size: 15px;
|
|
147
|
-
-
|
|
148
|
-
|
|
150
|
+
-webkit-box-pack: center;
|
|
151
|
+
-ms-flex-pack: center;
|
|
152
|
+
justify-content: center;
|
|
149
153
|
line-height: 36px;
|
|
150
154
|
min-height: 36px;
|
|
151
155
|
overflow: hidden;
|
|
@@ -155,11 +159,13 @@
|
|
|
155
159
|
width: 100%;
|
|
156
160
|
}
|
|
157
161
|
.e-card > * {
|
|
158
|
-
-
|
|
159
|
-
|
|
162
|
+
-webkit-box-pack: center;
|
|
163
|
+
-ms-flex-pack: center;
|
|
164
|
+
justify-content: center;
|
|
160
165
|
}
|
|
161
166
|
.e-card > .e-card-header-title {
|
|
162
|
-
box-sizing: border-box;
|
|
167
|
+
-webkit-box-sizing: border-box;
|
|
168
|
+
box-sizing: border-box;
|
|
163
169
|
font-size: 16px;
|
|
164
170
|
line-height: 1.25;
|
|
165
171
|
padding: 12px;
|
|
@@ -192,22 +198,30 @@
|
|
|
192
198
|
font-size: 14px;
|
|
193
199
|
}
|
|
194
200
|
.e-card .e-card-stacked {
|
|
201
|
+
display: -webkit-box;
|
|
195
202
|
display: -ms-flexbox;
|
|
196
203
|
display: flex;
|
|
197
|
-
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
204
|
+
-webkit-box-orient: vertical;
|
|
205
|
+
-webkit-box-direction: normal;
|
|
206
|
+
-ms-flex-direction: column;
|
|
207
|
+
flex-direction: column;
|
|
208
|
+
-webkit-box-pack: center;
|
|
209
|
+
-ms-flex-pack: center;
|
|
210
|
+
justify-content: center;
|
|
201
211
|
overflow: hidden;
|
|
202
212
|
}
|
|
203
213
|
.e-card.e-card-horizontal,
|
|
204
214
|
.e-card .e-card-horizontal {
|
|
215
|
+
display: -webkit-box;
|
|
205
216
|
display: -ms-flexbox;
|
|
206
217
|
display: flex;
|
|
207
|
-
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
218
|
+
-webkit-box-orient: horizontal;
|
|
219
|
+
-webkit-box-direction: normal;
|
|
220
|
+
-ms-flex-direction: row;
|
|
221
|
+
flex-direction: row;
|
|
222
|
+
-webkit-box-pack: center;
|
|
223
|
+
-ms-flex-pack: center;
|
|
224
|
+
justify-content: center;
|
|
211
225
|
}
|
|
212
226
|
.e-card.e-card-horizontal .e-card-image,
|
|
213
227
|
.e-card.e-card-horizontal img,
|
|
@@ -220,21 +234,27 @@
|
|
|
220
234
|
padding: 2px;
|
|
221
235
|
}
|
|
222
236
|
.e-card.e-card-horizontal > * {
|
|
223
|
-
-
|
|
224
|
-
flex: 1;
|
|
237
|
+
-webkit-box-flex: 1;
|
|
238
|
+
-ms-flex: 1;
|
|
239
|
+
flex: 1;
|
|
225
240
|
}
|
|
226
241
|
.e-card.e-card-horizontal .e-card-stacked {
|
|
242
|
+
display: -webkit-box;
|
|
227
243
|
display: -ms-flexbox;
|
|
228
244
|
display: flex;
|
|
229
|
-
-
|
|
230
|
-
flex: 1;
|
|
231
|
-
|
|
232
|
-
|
|
245
|
+
-webkit-box-flex: 1;
|
|
246
|
+
-ms-flex: 1;
|
|
247
|
+
flex: 1;
|
|
248
|
+
-webkit-box-orient: vertical;
|
|
249
|
+
-webkit-box-direction: normal;
|
|
250
|
+
-ms-flex-direction: column;
|
|
251
|
+
flex-direction: column;
|
|
233
252
|
overflow: hidden;
|
|
234
253
|
}
|
|
235
254
|
.e-card.e-card-horizontal .e-card-stacked > :first-child {
|
|
236
|
-
-
|
|
237
|
-
flex-
|
|
255
|
+
-webkit-box-flex: 1;
|
|
256
|
+
-ms-flex-positive: 1;
|
|
257
|
+
flex-grow: 1;
|
|
238
258
|
}
|
|
239
259
|
.e-card .e-card-separator {
|
|
240
260
|
display: block;
|
|
@@ -243,13 +263,18 @@
|
|
|
243
263
|
border-radius: 50%;
|
|
244
264
|
}
|
|
245
265
|
.e-card .e-card-header {
|
|
246
|
-
box-sizing: border-box;
|
|
266
|
+
-webkit-box-sizing: border-box;
|
|
267
|
+
box-sizing: border-box;
|
|
268
|
+
display: -webkit-box;
|
|
247
269
|
display: -ms-flexbox;
|
|
248
270
|
display: flex;
|
|
249
|
-
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
271
|
+
-webkit-box-orient: horizontal;
|
|
272
|
+
-webkit-box-direction: normal;
|
|
273
|
+
-ms-flex-direction: row;
|
|
274
|
+
flex-direction: row;
|
|
275
|
+
-webkit-box-pack: center;
|
|
276
|
+
-ms-flex-pack: center;
|
|
277
|
+
justify-content: center;
|
|
253
278
|
line-height: normal;
|
|
254
279
|
min-height: 22.5px;
|
|
255
280
|
padding: 12px;
|
|
@@ -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 12px;
|
|
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: 16px;
|
|
325
357
|
line-height: 30px;
|
|
326
358
|
min-height: 30px;
|
|
@@ -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: 12px;
|
|
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: 12px;
|
|
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 0 8px;
|
|
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: #0d6efd;
|
|
451
493
|
background: #212529;
|
|
452
494
|
border: 1px solid #444c54;
|
|
453
|
-
box-shadow: none;
|
|
495
|
+
-webkit-box-shadow: none;
|
|
496
|
+
box-shadow: none;
|
|
454
497
|
color: #fff;
|
|
455
498
|
outline: none;
|
|
456
499
|
}
|