@xenknight/framework7 0.0.5 → 0.0.6
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/components/block/block-vars.less +6 -6
- package/components/button/button-vars.less +11 -10
- package/components/dialog/dialog-class.js +6 -3
- package/components/dialog/dialog-ios.less +10 -34
- package/components/dialog/dialog-md.less +2 -22
- package/components/dialog/dialog-rtl.css +1 -1
- package/components/dialog/dialog-vars.less +8 -10
- package/components/dialog/dialog.css +1 -1
- package/components/dialog/dialog.js +3 -3
- package/components/dialog/dialog.less +6 -25
- package/components/list/list-vars.less +7 -5
- package/components/list/list.less +1 -1
- package/components/notification/notification-class.js +6 -6
- package/components/notification/notification-ios.less +3 -8
- package/components/notification/notification-md.less +1 -20
- package/components/notification/notification-rtl.css +1 -1
- package/components/notification/notification-vars.less +13 -16
- package/components/notification/notification.css +1 -1
- package/components/notification/notification.less +13 -1
- package/components/popover/popover-class.js +21 -58
- package/components/popover/popover-ios.less +66 -2
- package/components/popover/popover-md.less +2 -27
- package/components/popover/popover-rtl.css +1 -1
- package/components/popover/popover-vars.less +2 -3
- package/components/popover/popover.css +1 -1
- package/components/popover/popover.d.ts +0 -2
- package/components/popover/popover.js +0 -1
- package/components/popover/popover.less +28 -50
- package/components/range/range-class.js +34 -27
- package/components/range/range-ios.less +60 -0
- package/components/range/range-md.less +67 -4
- package/components/range/range-rtl.css +1 -1
- package/components/range/range-vars.less +18 -13
- package/components/range/range.css +1 -1
- package/components/range/range.d.ts +3 -1
- package/components/range/range.less +11 -24
- package/components/swipeout/swipeout-ios.less +37 -0
- package/components/swipeout/swipeout-md.less +56 -0
- package/components/swipeout/swipeout-rtl.css +1 -1
- package/components/swipeout/swipeout-vars.less +13 -2
- package/components/swipeout/swipeout.css +1 -1
- package/components/swipeout/swipeout.js +99 -23
- package/components/swipeout/swipeout.less +20 -44
- package/components/toast/toast-class.js +2 -2
- package/components/toast/toast-ios.less +2 -0
- package/components/toast/toast-rtl.css +1 -1
- package/components/toast/toast-vars.less +2 -4
- package/components/toast/toast.css +1 -1
- package/components/toast/toast.less +1 -1
- package/framework7-bundle-rtl.css +417 -368
- package/framework7-bundle-rtl.min.css +4 -4
- package/framework7-bundle.css +417 -368
- package/framework7-bundle.esm.js +2 -2
- package/framework7-bundle.js +2446 -849
- package/framework7-bundle.js.map +1 -1
- package/framework7-bundle.less +2 -2
- package/framework7-bundle.min.css +4 -4
- package/framework7-bundle.min.js +3 -3
- package/framework7-bundle.min.js.map +1 -1
- package/framework7-lite-bundle.esm.js +2 -2
- package/framework7-lite.esm.js +2 -2
- package/framework7-rtl.css +27 -25
- package/framework7-rtl.min.css +3 -3
- package/framework7.css +27 -25
- package/framework7.esm.js +2 -2
- package/framework7.less +2 -2
- package/framework7.min.css +3 -3
- package/package.json +1 -1
- package/shared/get-support.d.ts +0 -6
- package/shared/get-support.js +1 -20
- package/shared/material-color-utils.js +2153 -679
- package/shared/material-colors.js +97 -17
- package/shared/utils.js +18 -6
package/framework7-bundle.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Framework7 0.0.
|
|
2
|
+
* Framework7 0.0.5
|
|
3
3
|
* Full featured mobile HTML framework for building iOS & Android apps
|
|
4
4
|
* https://framework7.io/
|
|
5
5
|
*
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*
|
|
8
8
|
* Released under the MIT License
|
|
9
9
|
*
|
|
10
|
-
* Released on: December
|
|
10
|
+
* Released on: December 19, 2025
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
13
|
/*====================
|
|
@@ -2996,18 +2996,18 @@ html.device-full-viewport body {
|
|
|
2996
2996
|
--f7-block-text-color: inherit;
|
|
2997
2997
|
--f7-block-margin-vertical: 35px;
|
|
2998
2998
|
--f7-block-outline-border-color: rgba(0, 0, 0, 0.22);
|
|
2999
|
-
--f7-block-title-font-size:
|
|
2999
|
+
--f7-block-title-font-size: 17px;
|
|
3000
3000
|
--f7-block-title-font-weight: 600;
|
|
3001
3001
|
--f7-block-title-line-height: 20px;
|
|
3002
3002
|
--f7-block-title-margin-bottom: 10px;
|
|
3003
|
-
--f7-block-title-medium-font-size:
|
|
3003
|
+
--f7-block-title-medium-font-size: 20px;
|
|
3004
3004
|
--f7-block-title-medium-font-weight: bold;
|
|
3005
3005
|
--f7-block-title-medium-line-height: 1.4;
|
|
3006
|
-
--f7-block-title-large-font-size:
|
|
3006
|
+
--f7-block-title-large-font-size: 22px;
|
|
3007
3007
|
--f7-block-title-large-font-weight: bold;
|
|
3008
3008
|
--f7-block-title-large-line-height: 1.3;
|
|
3009
|
-
--f7-block-inset-border-radius:
|
|
3010
|
-
--f7-block-title-text-color:
|
|
3009
|
+
--f7-block-inset-border-radius: 24px;
|
|
3010
|
+
--f7-block-title-text-color: rgba(0, 0, 0, 0.6);
|
|
3011
3011
|
--f7-block-strong-text-color: #000;
|
|
3012
3012
|
--f7-block-header-text-color: rgba(0, 0, 0, 0.45);
|
|
3013
3013
|
--f7-block-footer-text-color: rgba(0, 0, 0, 0.45);
|
|
@@ -3017,7 +3017,7 @@ html.device-full-viewport body {
|
|
|
3017
3017
|
}
|
|
3018
3018
|
.ios .dark,
|
|
3019
3019
|
.ios.dark {
|
|
3020
|
-
--f7-block-title-text-color:
|
|
3020
|
+
--f7-block-title-text-color: rgba(255, 255, 255, 0.6);
|
|
3021
3021
|
--f7-block-header-text-color: rgba(255, 255, 255, 0.55);
|
|
3022
3022
|
--f7-block-footer-text-color: rgba(255, 255, 255, 0.55);
|
|
3023
3023
|
--f7-block-strong-text-color: #fff;
|
|
@@ -3423,7 +3423,6 @@ html.device-full-viewport body {
|
|
|
3423
3423
|
:root {
|
|
3424
3424
|
--f7-list-inset-side-margin: 16px;
|
|
3425
3425
|
--f7-list-item-padding-horizontal: 16px;
|
|
3426
|
-
--f7-list-item-padding-vertical: 8px;
|
|
3427
3426
|
--f7-list-media-item-padding-horizontal: 16px;
|
|
3428
3427
|
--f7-list-item-text-max-lines: 2;
|
|
3429
3428
|
--f7-list-chevron-icon-font-size: 20px;
|
|
@@ -3467,8 +3466,9 @@ html.device-full-viewport body {
|
|
|
3467
3466
|
--f7-list-chevron-icon-color: rgba(255, 255, 255, 0.3);
|
|
3468
3467
|
}
|
|
3469
3468
|
.ios {
|
|
3469
|
+
--f7-list-item-padding-vertical: 12px;
|
|
3470
3470
|
--f7-list-in-list-padding-left: 30px;
|
|
3471
|
-
--f7-list-inset-border-radius:
|
|
3471
|
+
--f7-list-inset-border-radius: 24px;
|
|
3472
3472
|
--f7-list-margin-vertical: 35px;
|
|
3473
3473
|
--f7-list-font-size: 17px;
|
|
3474
3474
|
--f7-list-chevron-icon-area: 20px;
|
|
@@ -3480,7 +3480,7 @@ html.device-full-viewport body {
|
|
|
3480
3480
|
--f7-list-item-text-line-height: 21px;
|
|
3481
3481
|
--f7-list-item-after-font-size: inherit;
|
|
3482
3482
|
--f7-list-item-after-padding: 5px;
|
|
3483
|
-
--f7-list-item-min-height:
|
|
3483
|
+
--f7-list-item-min-height: 52px;
|
|
3484
3484
|
--f7-list-item-media-icons-margin: 5px;
|
|
3485
3485
|
--f7-list-media-item-padding-vertical: 10px;
|
|
3486
3486
|
--f7-list-media-item-title-font-weight: 600;
|
|
@@ -3493,7 +3493,7 @@ html.device-full-viewport body {
|
|
|
3493
3493
|
--f7-list-group-title-font-size: inherit;
|
|
3494
3494
|
--f7-list-group-title-font-weight: 400;
|
|
3495
3495
|
--f7-menu-list-offset: 8px;
|
|
3496
|
-
--f7-menu-list-border-radius:
|
|
3496
|
+
--f7-menu-list-border-radius: 16px;
|
|
3497
3497
|
--f7-menu-list-item-bg-color: transparent;
|
|
3498
3498
|
--f7-menu-list-item-text-color: inherit;
|
|
3499
3499
|
--f7-menu-list-item-min-height: 44px;
|
|
@@ -3512,7 +3512,7 @@ html.device-full-viewport body {
|
|
|
3512
3512
|
.ios .dark,
|
|
3513
3513
|
.ios.dark {
|
|
3514
3514
|
--f7-list-item-border-color: rgba(255, 255, 255, 0.15);
|
|
3515
|
-
--f7-list-outline-inset-color: rgba(255, 255, 255, 0.15);
|
|
3515
|
+
--f7-list-outline-inset-border-color: rgba(255, 255, 255, 0.15);
|
|
3516
3516
|
--f7-list-strong-bg-color: #1c1c1d;
|
|
3517
3517
|
--f7-list-item-after-text-color: rgba(255, 255, 255, 0.55);
|
|
3518
3518
|
--f7-list-item-header-text-color: rgba(255, 255, 255, 0.55);
|
|
@@ -3525,6 +3525,7 @@ html.device-full-viewport body {
|
|
|
3525
3525
|
--f7-menu-list-item-selected-bg-color: var(--f7-theme-color);
|
|
3526
3526
|
}
|
|
3527
3527
|
.md {
|
|
3528
|
+
--f7-list-item-padding-vertical: 8px;
|
|
3528
3529
|
--f7-list-in-list-padding-left: 24px;
|
|
3529
3530
|
--f7-list-inset-border-radius: 16px;
|
|
3530
3531
|
--f7-list-margin-vertical: 32px;
|
|
@@ -3735,8 +3736,8 @@ html.device-full-viewport body {
|
|
|
3735
3736
|
.list label.item-content {
|
|
3736
3737
|
color: inherit;
|
|
3737
3738
|
}
|
|
3738
|
-
.list .item-link.active-state,
|
|
3739
|
-
.list label.item-content.active-state {
|
|
3739
|
+
.list .item-link.active-state:not(:has(.toggle-active-state)),
|
|
3740
|
+
.list label.item-content.active-state:not(:has(.toggle-active-state)) {
|
|
3740
3741
|
background-color: var(--f7-list-link-pressed-bg-color);
|
|
3741
3742
|
}
|
|
3742
3743
|
.list .item-link .item-inner {
|
|
@@ -4546,7 +4547,6 @@ li.list-group-title:after,
|
|
|
4546
4547
|
--f7-badge-bg-color: var(--f7-theme-color);
|
|
4547
4548
|
}
|
|
4548
4549
|
:root {
|
|
4549
|
-
--f7-button-font-size: 14px;
|
|
4550
4550
|
--f7-button-min-width: 32px;
|
|
4551
4551
|
--f7-button-bg-color: transparent;
|
|
4552
4552
|
--f7-button-border-width: 0px;
|
|
@@ -4578,12 +4578,13 @@ li.list-group-title:after,
|
|
|
4578
4578
|
--f7-segmented-strong-button-active-text-color: #fff;
|
|
4579
4579
|
}
|
|
4580
4580
|
.ios {
|
|
4581
|
+
--f7-button-font-size: 15px;
|
|
4581
4582
|
--f7-button-fill-text-color: #fff;
|
|
4582
|
-
--f7-button-text-transform:
|
|
4583
|
-
--f7-button-height:
|
|
4583
|
+
--f7-button-text-transform: none;
|
|
4584
|
+
--f7-button-height: 34px;
|
|
4584
4585
|
--f7-button-padding-horizontal: 10px;
|
|
4585
4586
|
--f7-button-border-radius: 4px;
|
|
4586
|
-
--f7-button-font-weight:
|
|
4587
|
+
--f7-button-font-weight: 500;
|
|
4587
4588
|
--f7-button-letter-spacing: 0;
|
|
4588
4589
|
/*
|
|
4589
4590
|
--f7-button-outline-border-color: var(--f7-theme-color);
|
|
@@ -4593,15 +4594,15 @@ li.list-group-title:after,
|
|
|
4593
4594
|
--f7-button-pressed-bg-color: rgba(var(--f7-theme-color-rgb), .15);
|
|
4594
4595
|
--f7-button-fill-pressed-bg-color: var(--f7-theme-color-tint);
|
|
4595
4596
|
*/
|
|
4596
|
-
--f7-button-large-text-transform:
|
|
4597
|
-
--f7-button-large-height:
|
|
4597
|
+
--f7-button-large-text-transform: none;
|
|
4598
|
+
--f7-button-large-height: 48px;
|
|
4598
4599
|
--f7-button-large-font-size: 17px;
|
|
4599
4600
|
--f7-button-large-font-weight: 500;
|
|
4600
4601
|
--f7-button-small-outline-border-width: 2px;
|
|
4601
|
-
--f7-button-small-text-transform:
|
|
4602
|
-
--f7-button-small-height:
|
|
4603
|
-
--f7-button-small-font-size:
|
|
4604
|
-
--f7-button-small-font-weight:
|
|
4602
|
+
--f7-button-small-text-transform: none;
|
|
4603
|
+
--f7-button-small-height: 28px;
|
|
4604
|
+
--f7-button-small-font-size: 14px;
|
|
4605
|
+
--f7-button-small-font-weight: 500;
|
|
4605
4606
|
--f7-segmented-strong-button-text-transform: none;
|
|
4606
4607
|
--f7-segmented-strong-button-active-font-weight: 600;
|
|
4607
4608
|
--f7-button-tonal-bg-color: rgba(var(--f7-theme-color-rgb), 0.15);
|
|
@@ -4616,6 +4617,7 @@ li.list-group-title:after,
|
|
|
4616
4617
|
--f7-segmented-strong-button-pressed-bg-color: rgba(255, 255, 255, 0.04);
|
|
4617
4618
|
}
|
|
4618
4619
|
.md {
|
|
4620
|
+
--f7-button-font-size: 14px;
|
|
4619
4621
|
/*
|
|
4620
4622
|
--f7-button-pressed-bg-color: transparent;
|
|
4621
4623
|
*/
|
|
@@ -5279,15 +5281,16 @@ i.icon {
|
|
|
5279
5281
|
:root {
|
|
5280
5282
|
--f7-dialog-button-text-color: var(--f7-theme-color);
|
|
5281
5283
|
--f7-dialog-button-text-align: center;
|
|
5284
|
+
--f7-dialog-text-line-height: 1.5;
|
|
5282
5285
|
}
|
|
5283
5286
|
.ios {
|
|
5284
5287
|
--f7-dialog-width: 270px;
|
|
5285
|
-
--f7-dialog-inner-padding:
|
|
5286
|
-
--f7-dialog-border-radius:
|
|
5287
|
-
--f7-dialog-text-align:
|
|
5288
|
+
--f7-dialog-inner-padding: 24px;
|
|
5289
|
+
--f7-dialog-border-radius: 32px;
|
|
5290
|
+
--f7-dialog-text-align: left;
|
|
5288
5291
|
--f7-dialog-font-size: 14px;
|
|
5289
5292
|
--f7-dialog-title-text-color: inherit;
|
|
5290
|
-
--f7-dialog-title-font-size:
|
|
5293
|
+
--f7-dialog-title-font-size: 17px;
|
|
5291
5294
|
--f7-dialog-title-font-weight: 600;
|
|
5292
5295
|
--f7-dialog-title-line-height: inherit;
|
|
5293
5296
|
--f7-dialog-button-font-size: 17px;
|
|
@@ -5298,29 +5301,26 @@ i.icon {
|
|
|
5298
5301
|
--f7-dialog-button-strong-bg-color: transparent;
|
|
5299
5302
|
--f7-dialog-button-strong-text-color: var(--f7-theme-color);
|
|
5300
5303
|
--f7-dialog-button-strong-font-weight: 500;
|
|
5301
|
-
--f7-dialog-input-border-radius:
|
|
5304
|
+
--f7-dialog-input-border-radius: 16px;
|
|
5302
5305
|
--f7-dialog-input-font-size: 14px;
|
|
5303
|
-
--f7-dialog-input-height:
|
|
5306
|
+
--f7-dialog-input-height: 40px;
|
|
5304
5307
|
--f7-dialog-input-border-width: 1px;
|
|
5305
5308
|
--f7-dialog-input-placeholder-color: #a9a9a9;
|
|
5306
5309
|
--f7-dialog-preloader-size: 34px;
|
|
5310
|
+
--f7-dialog-bg-color: var(--f7-glass-bg-color);
|
|
5307
5311
|
--f7-dialog-input-bg-color: #fff;
|
|
5308
|
-
--f7-dialog-bg-color: rgba(255, 255, 255, 0.95);
|
|
5309
5312
|
--f7-dialog-bg-color-rgb: 255, 255, 255;
|
|
5310
5313
|
--f7-dialog-text-color: #000;
|
|
5311
5314
|
--f7-dialog-button-pressed-bg-color: rgba(0, 0, 0, 0.1);
|
|
5312
5315
|
--f7-dialog-button-strong-pressed-bg-color: rgba(0, 0, 0, 0.1);
|
|
5313
5316
|
--f7-dialog-input-border-color: rgba(0, 0, 0, 0.3);
|
|
5314
|
-
--f7-dialog-border-divider-color: rgba(0, 0, 0, 0.2);
|
|
5315
5317
|
}
|
|
5316
5318
|
.ios .dark,
|
|
5317
5319
|
.ios.dark {
|
|
5318
5320
|
--f7-dialog-text-color: #fff;
|
|
5319
|
-
--f7-dialog-bg-color: rgba(45, 45, 45, 0.95);
|
|
5320
5321
|
--f7-dialog-bg-color-rgb: 45, 45, 45;
|
|
5321
5322
|
--f7-dialog-button-pressed-bg-color: rgba(0, 0, 0, 0.2);
|
|
5322
5323
|
--f7-dialog-button-strong-pressed-bg-color: rgba(0, 0, 0, 0.2);
|
|
5323
|
-
--f7-dialog-border-divider-color: rgba(255, 255, 255, 0.15);
|
|
5324
5324
|
--f7-dialog-input-border-color: rgba(255, 255, 255, 0.15);
|
|
5325
5325
|
--f7-dialog-input-bg-color: rgba(0, 0, 0, 0.5);
|
|
5326
5326
|
}
|
|
@@ -5380,13 +5380,6 @@ i.icon {
|
|
|
5380
5380
|
background: var(--f7-dialog-bg-color);
|
|
5381
5381
|
will-change: transform, opacity;
|
|
5382
5382
|
}
|
|
5383
|
-
@supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
|
|
5384
|
-
.ios-translucent-modals .dialog {
|
|
5385
|
-
background-color: rgba(var(--f7-dialog-bg-color-rgb), 0.8);
|
|
5386
|
-
-webkit-backdrop-filter: saturate(180%) blur(20px);
|
|
5387
|
-
backdrop-filter: saturate(180%) blur(20px);
|
|
5388
|
-
}
|
|
5389
|
-
}
|
|
5390
5383
|
.dialog.modal-in {
|
|
5391
5384
|
opacity: 1;
|
|
5392
5385
|
transform: translate3d(0, -50%, 0) scale(1);
|
|
@@ -5408,41 +5401,22 @@ i.icon {
|
|
|
5408
5401
|
font-weight: var(--f7-dialog-title-font-weight);
|
|
5409
5402
|
line-height: var(--f7-dialog-title-line-height);
|
|
5410
5403
|
}
|
|
5404
|
+
.dialog-text {
|
|
5405
|
+
line-height: var(--f7-dialog-text-line-height);
|
|
5406
|
+
}
|
|
5411
5407
|
.dialog-buttons {
|
|
5412
5408
|
position: relative;
|
|
5413
5409
|
display: flex;
|
|
5414
5410
|
}
|
|
5415
5411
|
.dialog-buttons-vertical .dialog-buttons {
|
|
5416
|
-
|
|
5412
|
+
flex-direction: column;
|
|
5417
5413
|
height: auto !important;
|
|
5418
5414
|
}
|
|
5419
5415
|
.dialog-button {
|
|
5420
|
-
box-sizing: border-box;
|
|
5421
5416
|
overflow: hidden;
|
|
5422
5417
|
position: relative;
|
|
5423
5418
|
white-space: nowrap;
|
|
5424
5419
|
text-overflow: ellipsis;
|
|
5425
|
-
color: var(--f7-dialog-button-text-color);
|
|
5426
|
-
font-size: var(--f7-dialog-button-font-size);
|
|
5427
|
-
height: var(--f7-dialog-button-height);
|
|
5428
|
-
line-height: var(--f7-dialog-button-height);
|
|
5429
|
-
letter-spacing: var(--f7-dialog-button-letter-spacing);
|
|
5430
|
-
text-align: var(--f7-dialog-button-text-align);
|
|
5431
|
-
font-weight: var(--f7-dialog-button-font-weight);
|
|
5432
|
-
text-transform: var(--f7-dialog-button-text-transform);
|
|
5433
|
-
display: block;
|
|
5434
|
-
cursor: pointer;
|
|
5435
|
-
}
|
|
5436
|
-
.dialog-button.active-state {
|
|
5437
|
-
background-color: var(--f7-dialog-button-pressed-bg-color);
|
|
5438
|
-
}
|
|
5439
|
-
.dialog-button-strong {
|
|
5440
|
-
background-color: var(--f7-dialog-button-strong-bg-color);
|
|
5441
|
-
color: var(--f7-dialog-button-strong-text-color);
|
|
5442
|
-
font-weight: var(--f7-dialog-button-strong-font-weight);
|
|
5443
|
-
}
|
|
5444
|
-
.dialog-button-strong.active-state {
|
|
5445
|
-
background-color: var(--f7-dialog-button-strong-pressed-bg-color);
|
|
5446
5420
|
}
|
|
5447
5421
|
.dialog-no-buttons .dialog-buttons {
|
|
5448
5422
|
display: none;
|
|
@@ -5478,115 +5452,46 @@ input.dialog-input[type]::placeholder {
|
|
|
5478
5452
|
.dialog-preloader .preloader {
|
|
5479
5453
|
--f7-preloader-size: var(--f7-dialog-preloader-size);
|
|
5480
5454
|
}
|
|
5481
|
-
html.
|
|
5455
|
+
html:has(.dialog.modal-in) .page-content {
|
|
5482
5456
|
overflow: hidden;
|
|
5483
5457
|
-webkit-overflow-scrolling: auto;
|
|
5484
5458
|
}
|
|
5459
|
+
.ios .dialog {
|
|
5460
|
+
box-shadow: var(--f7-glass-shadow);
|
|
5461
|
+
-webkit-backdrop-filter: saturate(180%) blur(16px);
|
|
5462
|
+
backdrop-filter: saturate(180%) blur(16px);
|
|
5463
|
+
border-radius: var(--f7-dialog-border-radius);
|
|
5464
|
+
}
|
|
5485
5465
|
.ios .dialog.modal-out {
|
|
5486
5466
|
transform: translate3d(0, -50%, 0) scale(1);
|
|
5487
5467
|
}
|
|
5488
5468
|
.ios .dialog-inner {
|
|
5489
5469
|
border-radius: var(--f7-dialog-border-radius) var(--f7-dialog-border-radius) 0 0;
|
|
5490
5470
|
}
|
|
5491
|
-
.ios .dialog-inner:after {
|
|
5492
|
-
content: '';
|
|
5493
|
-
position: absolute;
|
|
5494
|
-
background-color: var(--f7-dialog-border-divider-color);
|
|
5495
|
-
display: block;
|
|
5496
|
-
z-index: 15;
|
|
5497
|
-
top: auto;
|
|
5498
|
-
right: auto;
|
|
5499
|
-
bottom: 0;
|
|
5500
|
-
left: 0;
|
|
5501
|
-
height: 1px;
|
|
5502
|
-
width: 100%;
|
|
5503
|
-
transform-origin: 50% 100%;
|
|
5504
|
-
transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
|
|
5505
|
-
}
|
|
5506
5471
|
.ios .dialog-title + .dialog-text {
|
|
5507
|
-
margin-top:
|
|
5472
|
+
margin-top: 12px;
|
|
5508
5473
|
}
|
|
5509
5474
|
.ios .dialog-buttons {
|
|
5510
|
-
|
|
5475
|
+
padding: 0 14px 14px 14px;
|
|
5511
5476
|
justify-content: center;
|
|
5477
|
+
gap: 8px;
|
|
5512
5478
|
}
|
|
5513
5479
|
.ios .dialog-button {
|
|
5514
5480
|
width: 100%;
|
|
5515
|
-
padding: 0 5px;
|
|
5516
5481
|
-webkit-box-flex: 1;
|
|
5517
5482
|
-ms-flex: 1;
|
|
5518
5483
|
}
|
|
5519
|
-
.ios .dialog-button:after {
|
|
5520
|
-
content: '';
|
|
5521
|
-
position: absolute;
|
|
5522
|
-
background-color: var(--f7-dialog-border-divider-color);
|
|
5523
|
-
display: block;
|
|
5524
|
-
z-index: 15;
|
|
5525
|
-
top: 0;
|
|
5526
|
-
right: 0;
|
|
5527
|
-
bottom: auto;
|
|
5528
|
-
left: auto;
|
|
5529
|
-
width: 1px;
|
|
5530
|
-
height: 100%;
|
|
5531
|
-
transform-origin: 100% 50%;
|
|
5532
|
-
transform: scaleX(calc(1 / var(--f7-device-pixel-ratio)));
|
|
5533
|
-
}
|
|
5534
|
-
.ios .dialog-button:first-child {
|
|
5535
|
-
border-radius: 0 0 0 var(--f7-dialog-border-radius);
|
|
5536
|
-
}
|
|
5537
|
-
.ios .dialog-button:last-child {
|
|
5538
|
-
border-radius: 0 0 var(--f7-dialog-border-radius) 0;
|
|
5539
|
-
}
|
|
5540
|
-
.ios .dialog-button:last-child:after {
|
|
5541
|
-
display: none !important;
|
|
5542
|
-
}
|
|
5543
|
-
.ios .dialog-button:first-child:last-child {
|
|
5544
|
-
border-radius: 0 0 var(--f7-dialog-border-radius) var(--f7-dialog-border-radius);
|
|
5545
|
-
}
|
|
5546
|
-
.ios .dialog-button[class*='color-'] {
|
|
5547
|
-
--f7-dialog-button-text-color: var(--f7-theme-color);
|
|
5548
|
-
}
|
|
5549
|
-
.ios .dialog-buttons-vertical .dialog-buttons {
|
|
5550
|
-
height: auto;
|
|
5551
|
-
}
|
|
5552
|
-
.ios .dialog-buttons-vertical .dialog-button {
|
|
5553
|
-
border-radius: 0;
|
|
5554
|
-
}
|
|
5555
|
-
.ios .dialog-buttons-vertical .dialog-button:after {
|
|
5556
|
-
content: '';
|
|
5557
|
-
position: absolute;
|
|
5558
|
-
background-color: var(--f7-dialog-border-divider-color);
|
|
5559
|
-
display: block;
|
|
5560
|
-
z-index: 15;
|
|
5561
|
-
top: auto;
|
|
5562
|
-
right: auto;
|
|
5563
|
-
bottom: 0;
|
|
5564
|
-
left: 0;
|
|
5565
|
-
height: 1px;
|
|
5566
|
-
width: 100%;
|
|
5567
|
-
transform-origin: 50% 100%;
|
|
5568
|
-
transform: scaleY(calc(1 / var(--f7-device-pixel-ratio)));
|
|
5569
|
-
}
|
|
5570
|
-
.ios .dialog-buttons-vertical .dialog-button:last-child {
|
|
5571
|
-
border-radius: 0 0 var(--f7-dialog-border-radius) var(--f7-dialog-border-radius);
|
|
5572
|
-
}
|
|
5573
|
-
.ios .dialog-buttons-vertical .dialog-button:last-child:after {
|
|
5574
|
-
display: none !important;
|
|
5575
|
-
}
|
|
5576
5484
|
.ios .dialog-no-buttons .dialog-inner {
|
|
5577
5485
|
border-radius: var(--f7-dialog-border-radius);
|
|
5578
5486
|
}
|
|
5579
|
-
.ios .dialog-no-buttons .dialog-inner:after {
|
|
5580
|
-
display: none !important;
|
|
5581
|
-
}
|
|
5582
5487
|
.ios .dialog-input-field {
|
|
5583
5488
|
margin-top: 15px;
|
|
5584
5489
|
}
|
|
5585
5490
|
.ios .dialog-input {
|
|
5586
|
-
padding: 0
|
|
5491
|
+
padding: 0 12px;
|
|
5587
5492
|
}
|
|
5588
5493
|
.ios .dialog-input + .dialog-input {
|
|
5589
|
-
margin-top:
|
|
5494
|
+
margin-top: 12px;
|
|
5590
5495
|
}
|
|
5591
5496
|
.ios .dialog-input-double + .dialog-input-double {
|
|
5592
5497
|
margin-top: 0;
|
|
@@ -5595,6 +5500,9 @@ html.with-modal-dialog .page-content {
|
|
|
5595
5500
|
border-top: 0;
|
|
5596
5501
|
margin-top: 0;
|
|
5597
5502
|
}
|
|
5503
|
+
.ios .dialog-preloader {
|
|
5504
|
+
text-align: center;
|
|
5505
|
+
}
|
|
5598
5506
|
.ios .dialog-preloader .dialog-title ~ .preloader,
|
|
5599
5507
|
.ios .dialog-preloader .dialog-text ~ .preloader {
|
|
5600
5508
|
margin-top: 15px;
|
|
@@ -5615,39 +5523,20 @@ html.with-modal-dialog .page-content {
|
|
|
5615
5523
|
line-height: 1.5;
|
|
5616
5524
|
}
|
|
5617
5525
|
.md .dialog-buttons {
|
|
5618
|
-
height: 64px;
|
|
5619
5526
|
padding: 0px 24px 24px;
|
|
5620
5527
|
overflow: hidden;
|
|
5621
5528
|
box-sizing: border-box;
|
|
5622
5529
|
justify-content: flex-end;
|
|
5530
|
+
gap: 8px;
|
|
5623
5531
|
}
|
|
5624
5532
|
.md .dialog-button {
|
|
5625
|
-
|
|
5626
|
-
border-radius: 99px;
|
|
5627
|
-
min-width: 64px;
|
|
5628
|
-
padding: 0px 16px;
|
|
5629
|
-
border: none;
|
|
5630
|
-
transition-duration: 300ms;
|
|
5631
|
-
transform: translate3d(0, 0, 0);
|
|
5632
|
-
}
|
|
5633
|
-
.md .dialog-button + .dialog-button {
|
|
5634
|
-
margin-left: 8px;
|
|
5635
|
-
}
|
|
5636
|
-
.md .dialog-button-strong {
|
|
5637
|
-
--f7-touch-ripple-color: var(--f7-touch-ripple-white);
|
|
5638
|
-
}
|
|
5639
|
-
.md .dialog-button[class*='color-'] {
|
|
5640
|
-
--f7-dialog-button-text-color: var(--f7-theme-color);
|
|
5533
|
+
width: auto;
|
|
5641
5534
|
}
|
|
5642
5535
|
.md .dialog-buttons-vertical .dialog-buttons {
|
|
5643
5536
|
display: flex;
|
|
5644
5537
|
flex-direction: column;
|
|
5645
5538
|
align-items: flex-end;
|
|
5646
5539
|
}
|
|
5647
|
-
.md .dialog-buttons-vertical .dialog-button + .dialog-button {
|
|
5648
|
-
margin-top: 8px;
|
|
5649
|
-
margin-left: 0;
|
|
5650
|
-
}
|
|
5651
5540
|
.md .dialog-input {
|
|
5652
5541
|
padding: 0;
|
|
5653
5542
|
transition-duration: 200ms;
|
|
@@ -6010,15 +5899,14 @@ html.with-modal-popup-push-closing .framework7-root > .view.dark:after {
|
|
|
6010
5899
|
--f7-popover-width: 260px;
|
|
6011
5900
|
}
|
|
6012
5901
|
.ios {
|
|
6013
|
-
--f7-popover-border-radius:
|
|
5902
|
+
--f7-popover-border-radius: 32px;
|
|
6014
5903
|
--f7-popover-actions-icon-size: 28px;
|
|
6015
5904
|
--f7-popover-transition-timing-function: initial;
|
|
6016
|
-
--f7-popover-bg-color:
|
|
5905
|
+
--f7-popover-bg-color: transparent;
|
|
6017
5906
|
--f7-popover-actions-label-text-color: rgba(0, 0, 0, 0.45);
|
|
6018
5907
|
}
|
|
6019
5908
|
.ios .dark,
|
|
6020
5909
|
.ios.dark {
|
|
6021
|
-
--f7-popover-bg-color: rgba(30, 30, 30, 0.95);
|
|
6022
5910
|
--f7-popover-actions-label-text-color: rgba(255, 255, 255, 0.55);
|
|
6023
5911
|
}
|
|
6024
5912
|
.md {
|
|
@@ -6044,7 +5932,6 @@ html.with-modal-popup-push-closing .framework7-root > .view.dark:after {
|
|
|
6044
5932
|
left: 0;
|
|
6045
5933
|
position: absolute;
|
|
6046
5934
|
display: none;
|
|
6047
|
-
transition-duration: 300ms;
|
|
6048
5935
|
background-color: var(--f7-popover-bg-color);
|
|
6049
5936
|
border-radius: var(--f7-popover-border-radius);
|
|
6050
5937
|
will-change: transform, opacity;
|
|
@@ -6146,98 +6033,112 @@ html.with-modal-popup-push-closing .framework7-root > .view.dark:after {
|
|
|
6146
6033
|
.md .popover-from-actions-label {
|
|
6147
6034
|
justify-content: center;
|
|
6148
6035
|
}
|
|
6149
|
-
.popover-
|
|
6150
|
-
|
|
6151
|
-
height: 26px;
|
|
6152
|
-
position: absolute;
|
|
6153
|
-
left: -26px;
|
|
6154
|
-
top: 0;
|
|
6155
|
-
z-index: 100;
|
|
6156
|
-
overflow: hidden;
|
|
6157
|
-
}
|
|
6158
|
-
.popover-arrow:after {
|
|
6159
|
-
content: '';
|
|
6160
|
-
background: var(--f7-popover-bg-color);
|
|
6161
|
-
width: 26px;
|
|
6162
|
-
height: 26px;
|
|
6163
|
-
position: absolute;
|
|
6164
|
-
left: 0;
|
|
6165
|
-
top: 0;
|
|
6166
|
-
border-radius: 3px;
|
|
6167
|
-
transform: rotate(45deg);
|
|
6168
|
-
}
|
|
6169
|
-
.popover-arrow.on-left {
|
|
6170
|
-
left: -26px;
|
|
6171
|
-
}
|
|
6172
|
-
.popover-arrow.on-left:after {
|
|
6173
|
-
left: 19px;
|
|
6174
|
-
top: 0;
|
|
6175
|
-
}
|
|
6176
|
-
.popover-arrow.on-right {
|
|
6177
|
-
left: 100%;
|
|
6178
|
-
}
|
|
6179
|
-
.popover-arrow.on-right:after {
|
|
6180
|
-
left: -19px;
|
|
6181
|
-
top: 0;
|
|
6036
|
+
.popover-on-top {
|
|
6037
|
+
transform-origin: center bottom;
|
|
6182
6038
|
}
|
|
6183
|
-
.popover-
|
|
6184
|
-
|
|
6185
|
-
top: -26px;
|
|
6039
|
+
.popover-on-top.popover-on-right {
|
|
6040
|
+
transform-origin: left bottom;
|
|
6186
6041
|
}
|
|
6187
|
-
.popover-
|
|
6188
|
-
|
|
6189
|
-
top: 19px;
|
|
6042
|
+
.popover-on-top.popover-on-left {
|
|
6043
|
+
transform-origin: right bottom;
|
|
6190
6044
|
}
|
|
6191
|
-
.popover-
|
|
6192
|
-
|
|
6193
|
-
top: 100%;
|
|
6045
|
+
.popover-on-middle {
|
|
6046
|
+
transform-origin: center center;
|
|
6194
6047
|
}
|
|
6195
|
-
.popover-
|
|
6196
|
-
|
|
6197
|
-
top: -19px;
|
|
6048
|
+
.popover-on-middle.popover-on-right {
|
|
6049
|
+
transform-origin: left center;
|
|
6198
6050
|
}
|
|
6199
|
-
.
|
|
6200
|
-
transform:
|
|
6201
|
-
transition-property: opacity;
|
|
6051
|
+
.popover-on-middle.popover-on-left {
|
|
6052
|
+
transform-origin: right center;
|
|
6202
6053
|
}
|
|
6203
|
-
.
|
|
6204
|
-
transform:
|
|
6205
|
-
transition-property: opacity, transform;
|
|
6054
|
+
.popover-on-bottom {
|
|
6055
|
+
transform-origin: center top;
|
|
6206
6056
|
}
|
|
6207
|
-
.
|
|
6208
|
-
|
|
6209
|
-
transform: scale(1);
|
|
6057
|
+
.popover-on-bottom.popover-on-right {
|
|
6058
|
+
transform-origin: left top;
|
|
6210
6059
|
}
|
|
6211
|
-
.
|
|
6212
|
-
|
|
6213
|
-
transform: scale(1);
|
|
6060
|
+
.popover-on-bottom.popover-on-left {
|
|
6061
|
+
transform-origin: right top;
|
|
6214
6062
|
}
|
|
6215
|
-
.
|
|
6063
|
+
.ios .popover-on-top {
|
|
6216
6064
|
transform-origin: center bottom;
|
|
6065
|
+
--f7-popover-inner-offset: translate3d(0%, 80px, 0);
|
|
6217
6066
|
}
|
|
6218
|
-
.
|
|
6067
|
+
.ios .popover-on-top.popover-on-right {
|
|
6219
6068
|
transform-origin: left bottom;
|
|
6069
|
+
--f7-popover-inner-offset: translate3d(50%, 80px, 0);
|
|
6220
6070
|
}
|
|
6221
|
-
.
|
|
6071
|
+
.ios .popover-on-top.popover-on-left {
|
|
6222
6072
|
transform-origin: right bottom;
|
|
6073
|
+
--f7-popover-inner-offset: translate3d(-50%, 80px, 0);
|
|
6223
6074
|
}
|
|
6224
|
-
.
|
|
6075
|
+
.ios .popover-on-middle {
|
|
6225
6076
|
transform-origin: center center;
|
|
6226
6077
|
}
|
|
6227
|
-
.
|
|
6078
|
+
.ios .popover-on-middle.popover-on-right {
|
|
6228
6079
|
transform-origin: left center;
|
|
6080
|
+
--f7-popover-inner-offset: translate3d(50%, 0px, 0);
|
|
6229
6081
|
}
|
|
6230
|
-
.
|
|
6082
|
+
.ios .popover-on-middle.popover-on-left {
|
|
6231
6083
|
transform-origin: right center;
|
|
6084
|
+
--f7-popover-inner-offset: translate3d(-50%, 0px, 0);
|
|
6232
6085
|
}
|
|
6233
|
-
.
|
|
6086
|
+
.ios .popover-on-bottom {
|
|
6234
6087
|
transform-origin: center top;
|
|
6088
|
+
--f7-popover-inner-offset: translate3d(0%, -80px, 0);
|
|
6235
6089
|
}
|
|
6236
|
-
.
|
|
6090
|
+
.ios .popover-on-bottom.popover-on-right {
|
|
6237
6091
|
transform-origin: left top;
|
|
6092
|
+
--f7-popover-inner-offset: translate3d(50%, -80px, 0);
|
|
6238
6093
|
}
|
|
6239
|
-
.
|
|
6094
|
+
.ios .popover-on-bottom.popover-on-left {
|
|
6240
6095
|
transform-origin: right top;
|
|
6096
|
+
--f7-popover-inner-offset: translate3d(-50%, -80px, 0);
|
|
6097
|
+
}
|
|
6098
|
+
.ios .popover {
|
|
6099
|
+
transform: translate3d(0, 0, 0) scale(0);
|
|
6100
|
+
transition-property: opacity, transform;
|
|
6101
|
+
opacity: 1;
|
|
6102
|
+
will-change: auto;
|
|
6103
|
+
}
|
|
6104
|
+
.ios .popover.modal-in {
|
|
6105
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
6106
|
+
transition-timing-function: cubic-bezier(0, 1, 0.2, 1.05);
|
|
6107
|
+
transition-duration: 400ms;
|
|
6108
|
+
}
|
|
6109
|
+
.ios .popover.modal-in .popover-inner {
|
|
6110
|
+
transition-duration: 600ms;
|
|
6111
|
+
transition-timing-function: cubic-bezier(0, 1, 0.2, 1.05);
|
|
6112
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
6113
|
+
}
|
|
6114
|
+
.ios .popover.modal-out {
|
|
6115
|
+
opacity: 0;
|
|
6116
|
+
transform: translate3d(0, 0, 0) scale(0);
|
|
6117
|
+
transition-duration: 300ms;
|
|
6118
|
+
}
|
|
6119
|
+
.ios .popover.modal-out .popover-inner {
|
|
6120
|
+
transition-duration: 500ms;
|
|
6121
|
+
}
|
|
6122
|
+
.ios .popover-inner {
|
|
6123
|
+
background: var(--f7-glass-bg-color);
|
|
6124
|
+
box-shadow: var(--f7-glass-shadow);
|
|
6125
|
+
border-radius: var(--f7-popover-border-radius);
|
|
6126
|
+
transform: var(--f7-popover-inner-offset);
|
|
6127
|
+
-webkit-backdrop-filter: saturate(180%) blur(16px);
|
|
6128
|
+
backdrop-filter: saturate(180%) blur(16px);
|
|
6129
|
+
}
|
|
6130
|
+
.md .popover {
|
|
6131
|
+
transform: scale(0.85, 0.6);
|
|
6132
|
+
transition-property: opacity, transform;
|
|
6133
|
+
transition-duration: 300ms;
|
|
6134
|
+
}
|
|
6135
|
+
.md .popover.modal-in {
|
|
6136
|
+
opacity: 1;
|
|
6137
|
+
transform: scale(1);
|
|
6138
|
+
}
|
|
6139
|
+
.md .popover.modal-out {
|
|
6140
|
+
opacity: 0;
|
|
6141
|
+
transform: scale(1);
|
|
6241
6142
|
}
|
|
6242
6143
|
/* === Actions === */
|
|
6243
6144
|
:root {
|
|
@@ -6846,12 +6747,10 @@ html.with-modal-sheet-push-closing .framework7-root > .view.dark:after {
|
|
|
6846
6747
|
--f7-toast-max-width: 568px;
|
|
6847
6748
|
}
|
|
6848
6749
|
.ios {
|
|
6849
|
-
--f7-toast-
|
|
6850
|
-
--f7-toast-bg-color: rgba(0, 0, 0, 0.75);
|
|
6851
|
-
--f7-toast-bg-color-rgb: 0, 0, 0;
|
|
6750
|
+
--f7-toast-bg-color: var(--f7-glass-bg-color);
|
|
6852
6751
|
--f7-toast-padding-horizontal: 16px;
|
|
6853
6752
|
--f7-toast-padding-vertical: 12px;
|
|
6854
|
-
--f7-toast-border-radius:
|
|
6753
|
+
--f7-toast-border-radius: 32px;
|
|
6855
6754
|
--f7-toast-button-min-width: 64px;
|
|
6856
6755
|
}
|
|
6857
6756
|
.md {
|
|
@@ -6877,13 +6776,6 @@ html.with-modal-sheet-push-closing .framework7-root > .view.dark:after {
|
|
|
6877
6776
|
background-color: var(--f7-toast-bg-color);
|
|
6878
6777
|
opacity: 0;
|
|
6879
6778
|
}
|
|
6880
|
-
@supports ((-webkit-backdrop-filter: blur(20px)) or (backdrop-filter: blur(20px))) {
|
|
6881
|
-
.ios-translucent-modals .toast {
|
|
6882
|
-
background-color: rgba(var(--f7-toast-bg-color-rgb), 0.8);
|
|
6883
|
-
-webkit-backdrop-filter: saturate(180%) blur(20px);
|
|
6884
|
-
backdrop-filter: saturate(180%) blur(20px);
|
|
6885
|
-
}
|
|
6886
|
-
}
|
|
6887
6779
|
.toast.modal-in {
|
|
6888
6780
|
opacity: 1;
|
|
6889
6781
|
}
|
|
@@ -6904,6 +6796,7 @@ html.with-modal-sheet-push-closing .framework7-root > .view.dark:after {
|
|
|
6904
6796
|
min-width: var(--f7-toast-button-min-width);
|
|
6905
6797
|
margin-top: -8px;
|
|
6906
6798
|
margin-bottom: -8px;
|
|
6799
|
+
width: auto;
|
|
6907
6800
|
}
|
|
6908
6801
|
.toast.toast-with-icon .toast-content {
|
|
6909
6802
|
display: block;
|
|
@@ -6926,6 +6819,9 @@ html.with-modal-sheet-push-closing .framework7-root > .view.dark:after {
|
|
|
6926
6819
|
transition-duration: 300ms;
|
|
6927
6820
|
width: 100%;
|
|
6928
6821
|
left: 0;
|
|
6822
|
+
-webkit-backdrop-filter: saturate(180%) blur(16px);
|
|
6823
|
+
backdrop-filter: saturate(180%) blur(16px);
|
|
6824
|
+
box-shadow: var(--f7-glass-shadow);
|
|
6929
6825
|
}
|
|
6930
6826
|
.ios .toast.toast-top {
|
|
6931
6827
|
top: 0;
|
|
@@ -7668,7 +7564,6 @@ body > .progressbar-infinite,
|
|
|
7668
7564
|
:root {
|
|
7669
7565
|
--f7-swipeout-delete-button-bg-color: #ff3b30;
|
|
7670
7566
|
--f7-swipeout-button-text-color: #fff;
|
|
7671
|
-
--f7-swipeout-button-padding-vertical: 0px;
|
|
7672
7567
|
--f7-swipeout-button-bg-color: rgba(0, 0, 0, 0.22);
|
|
7673
7568
|
}
|
|
7674
7569
|
:root .dark,
|
|
@@ -7676,11 +7571,21 @@ body > .progressbar-infinite,
|
|
|
7676
7571
|
--f7-swipeout-button-bg-color: rgba(255, 255, 255, 0.55);
|
|
7677
7572
|
}
|
|
7678
7573
|
.ios {
|
|
7679
|
-
--f7-swipeout-button-
|
|
7574
|
+
--f7-swipeout-button-border-radius: 48px;
|
|
7575
|
+
--f7-swipeout-button-padding-vertical: 10px;
|
|
7576
|
+
--f7-swipeout-button-padding-horizontal: 16px;
|
|
7680
7577
|
--f7-swipeout-button-font-size: inherit;
|
|
7681
7578
|
--f7-swipeout-button-font-weight: inherit;
|
|
7579
|
+
--f7-swipeout-active-border-radius: 16px;
|
|
7580
|
+
--f7-swipeout-active-bg-color: #eee;
|
|
7581
|
+
}
|
|
7582
|
+
.ios .dark,
|
|
7583
|
+
.ios.dark {
|
|
7584
|
+
--f7-swipeout-active-bg-color: #2c2c2e;
|
|
7682
7585
|
}
|
|
7683
7586
|
.md {
|
|
7587
|
+
--f7-swipeout-button-border-radius: 0px;
|
|
7588
|
+
--f7-swipeout-button-padding-vertical: 0px;
|
|
7684
7589
|
--f7-swipeout-button-padding-horizontal: 24px;
|
|
7685
7590
|
--f7-swipeout-button-font-size: 14px;
|
|
7686
7591
|
--f7-swipeout-button-font-weight: 500;
|
|
@@ -7700,11 +7605,22 @@ body > .progressbar-infinite,
|
|
|
7700
7605
|
transform: translateX(-100%);
|
|
7701
7606
|
}
|
|
7702
7607
|
.swipeout-transitioning .swipeout-content,
|
|
7608
|
+
.swipeout-transitioning .swipeout-content .item-inner::after {
|
|
7609
|
+
transition-duration: 300ms;
|
|
7610
|
+
transition-property: transform, left, background-color, border-radius, opacity;
|
|
7611
|
+
}
|
|
7703
7612
|
.swipeout-transitioning .swipeout-actions-right a,
|
|
7704
7613
|
.swipeout-transitioning .swipeout-actions-left a,
|
|
7705
7614
|
.swipeout-transitioning .swipeout-overswipe {
|
|
7706
7615
|
transition-duration: 300ms;
|
|
7707
|
-
transition-property: transform, left;
|
|
7616
|
+
transition-property: transform, left, width, margin-left, margin-right;
|
|
7617
|
+
}
|
|
7618
|
+
.swipeout-transitioning:not(.swipeout-opened) .swipeout-content {
|
|
7619
|
+
transition-delay: 0ms, 0ms, 300ms, 300ms, 0ms;
|
|
7620
|
+
}
|
|
7621
|
+
.list li:has( + li:is(.swipeout-opened, .swipeout-active)) .item-inner::after {
|
|
7622
|
+
opacity: 0;
|
|
7623
|
+
transition-duration: 300ms;
|
|
7708
7624
|
}
|
|
7709
7625
|
.swipeout-content {
|
|
7710
7626
|
position: relative;
|
|
@@ -7712,7 +7628,6 @@ body > .progressbar-infinite,
|
|
|
7712
7628
|
}
|
|
7713
7629
|
.swipeout-overswipe {
|
|
7714
7630
|
transition-duration: 200ms;
|
|
7715
|
-
transition-property: left;
|
|
7716
7631
|
}
|
|
7717
7632
|
.swipeout-actions-left,
|
|
7718
7633
|
.swipeout-actions-right {
|
|
@@ -7730,6 +7645,8 @@ body > .progressbar-infinite,
|
|
|
7730
7645
|
.swipeout-actions-right > span,
|
|
7731
7646
|
.swipeout-actions-left > div,
|
|
7732
7647
|
.swipeout-actions-right > div {
|
|
7648
|
+
box-sizing: border-box;
|
|
7649
|
+
border-radius: var(--f7-swipeout-button-border-radius);
|
|
7733
7650
|
color: var(--f7-swipeout-button-text-color);
|
|
7734
7651
|
background: var(--f7-swipeout-button-bg-color);
|
|
7735
7652
|
padding: var(--f7-swipeout-button-padding-vertical) var(--f7-swipeout-button-padding-horizontal);
|
|
@@ -7740,14 +7657,62 @@ body > .progressbar-infinite,
|
|
|
7740
7657
|
font-size: var(--f7-swipeout-button-font-size);
|
|
7741
7658
|
font-weight: var(--f7-swipeout-button-font-weight);
|
|
7742
7659
|
}
|
|
7743
|
-
.swipeout-actions-left
|
|
7744
|
-
.swipeout-actions-right
|
|
7745
|
-
|
|
7746
|
-
|
|
7747
|
-
.swipeout-actions-left
|
|
7748
|
-
.swipeout-actions-right
|
|
7749
|
-
|
|
7750
|
-
|
|
7660
|
+
.swipeout-actions-left .swipeout-delete,
|
|
7661
|
+
.swipeout-actions-right .swipeout-delete {
|
|
7662
|
+
background: var(--f7-swipeout-delete-button-bg-color);
|
|
7663
|
+
}
|
|
7664
|
+
.swipeout-actions-left [class*='color-'],
|
|
7665
|
+
.swipeout-actions-right [class*='color-'] {
|
|
7666
|
+
--f7-swipeout-button-bg-color: var(--f7-theme-color);
|
|
7667
|
+
}
|
|
7668
|
+
.ios .swipeout-actions-right {
|
|
7669
|
+
right: 0%;
|
|
7670
|
+
}
|
|
7671
|
+
.ios .swipeout-actions-left {
|
|
7672
|
+
left: 0%;
|
|
7673
|
+
}
|
|
7674
|
+
.ios .swipeout-actions-left,
|
|
7675
|
+
.ios .swipeout-actions-right {
|
|
7676
|
+
padding: 0 10px;
|
|
7677
|
+
gap: 10px;
|
|
7678
|
+
align-items: center;
|
|
7679
|
+
}
|
|
7680
|
+
.ios .swipeout-actions-left > a,
|
|
7681
|
+
.ios .swipeout-actions-right > a,
|
|
7682
|
+
.ios .swipeout-actions-left > button,
|
|
7683
|
+
.ios .swipeout-actions-right > button,
|
|
7684
|
+
.ios .swipeout-actions-left > span,
|
|
7685
|
+
.ios .swipeout-actions-right > span,
|
|
7686
|
+
.ios .swipeout-actions-left > div,
|
|
7687
|
+
.ios .swipeout-actions-right > div {
|
|
7688
|
+
transform: scale(0);
|
|
7689
|
+
padding: var(--f7-swipeout-button-padding-vertical) var(--f7-swipeout-button-padding-horizontal);
|
|
7690
|
+
}
|
|
7691
|
+
.ios .swipeout-opened .swipeout-content,
|
|
7692
|
+
.ios .swipeout-active .swipeout-content {
|
|
7693
|
+
background-color: var(--f7-swipeout-active-bg-color);
|
|
7694
|
+
border-radius: var(--f7-swipeout-active-border-radius);
|
|
7695
|
+
}
|
|
7696
|
+
.ios .swipeout-opened .item-content,
|
|
7697
|
+
.ios .swipeout-active .item-content {
|
|
7698
|
+
border-radius: var(--f7-swipeout-active-border-radius);
|
|
7699
|
+
}
|
|
7700
|
+
.ios .swipeout-opened .swipeout-content .item-inner::after,
|
|
7701
|
+
.ios .swipeout-active .swipeout-content .item-inner::after {
|
|
7702
|
+
opacity: 0;
|
|
7703
|
+
}
|
|
7704
|
+
.ios .swipeout-overswipe {
|
|
7705
|
+
transition-duration: 200ms;
|
|
7706
|
+
transition-property: transform, left, width, margin-left, margin-right;
|
|
7707
|
+
}
|
|
7708
|
+
.md .swipeout-actions-left > a:after,
|
|
7709
|
+
.md .swipeout-actions-right > a:after,
|
|
7710
|
+
.md .swipeout-actions-left > button:after,
|
|
7711
|
+
.md .swipeout-actions-right > button:after,
|
|
7712
|
+
.md .swipeout-actions-left > span:after,
|
|
7713
|
+
.md .swipeout-actions-right > span:after,
|
|
7714
|
+
.md .swipeout-actions-left > div:after,
|
|
7715
|
+
.md .swipeout-actions-right > div:after {
|
|
7751
7716
|
content: '';
|
|
7752
7717
|
position: absolute;
|
|
7753
7718
|
top: 0;
|
|
@@ -7758,45 +7723,40 @@ body > .progressbar-infinite,
|
|
|
7758
7723
|
transform: translate3d(0, 0, 0);
|
|
7759
7724
|
pointer-events: none;
|
|
7760
7725
|
}
|
|
7761
|
-
.swipeout-actions-
|
|
7762
|
-
.swipeout-actions-right .swipeout-delete {
|
|
7763
|
-
background: var(--f7-swipeout-delete-button-bg-color);
|
|
7764
|
-
}
|
|
7765
|
-
.swipeout-actions-right {
|
|
7726
|
+
.md .swipeout-actions-right {
|
|
7766
7727
|
right: 0%;
|
|
7767
7728
|
transform: translateX(calc(100% + 1px));
|
|
7768
7729
|
}
|
|
7769
|
-
.swipeout-actions-right > a:after,
|
|
7770
|
-
.swipeout-actions-right > button:after,
|
|
7771
|
-
.swipeout-actions-right > span:after,
|
|
7772
|
-
.swipeout-actions-right > div:after {
|
|
7730
|
+
.md .swipeout-actions-right > a:after,
|
|
7731
|
+
.md .swipeout-actions-right > button:after,
|
|
7732
|
+
.md .swipeout-actions-right > span:after,
|
|
7733
|
+
.md .swipeout-actions-right > div:after {
|
|
7773
7734
|
left: 100%;
|
|
7774
7735
|
}
|
|
7775
|
-
.swipeout-actions-right > a:last-child,
|
|
7776
|
-
.swipeout-actions-right > button:last-child,
|
|
7777
|
-
.swipeout-actions-right > span:last-child,
|
|
7778
|
-
.swipeout-actions-right > div:last-child {
|
|
7736
|
+
.md .swipeout-actions-right > a:last-child,
|
|
7737
|
+
.md .swipeout-actions-right > button:last-child,
|
|
7738
|
+
.md .swipeout-actions-right > span:last-child,
|
|
7739
|
+
.md .swipeout-actions-right > div:last-child {
|
|
7779
7740
|
padding-right: calc(var(--f7-swipeout-button-padding-horizontal) + var(--f7-safe-area-right));
|
|
7780
7741
|
}
|
|
7781
|
-
.swipeout-actions-left {
|
|
7742
|
+
.md .swipeout-actions-left {
|
|
7782
7743
|
left: 0%;
|
|
7783
7744
|
transform: translateX(calc(-100% - 1px));
|
|
7784
7745
|
}
|
|
7785
|
-
.swipeout-actions-left > a:after,
|
|
7786
|
-
.swipeout-actions-left > button:after,
|
|
7787
|
-
.swipeout-actions-left > span:after,
|
|
7788
|
-
.swipeout-actions-left > div:after {
|
|
7746
|
+
.md .swipeout-actions-left > a:after,
|
|
7747
|
+
.md .swipeout-actions-left > button:after,
|
|
7748
|
+
.md .swipeout-actions-left > span:after,
|
|
7749
|
+
.md .swipeout-actions-left > div:after {
|
|
7789
7750
|
right: 100%;
|
|
7790
7751
|
}
|
|
7791
|
-
.swipeout-actions-left > a:first-child,
|
|
7792
|
-
.swipeout-actions-left > button:first-child,
|
|
7793
|
-
.swipeout-actions-left > span:first-child,
|
|
7794
|
-
.swipeout-actions-left > div:first-child {
|
|
7752
|
+
.md .swipeout-actions-left > a:first-child,
|
|
7753
|
+
.md .swipeout-actions-left > button:first-child,
|
|
7754
|
+
.md .swipeout-actions-left > span:first-child,
|
|
7755
|
+
.md .swipeout-actions-left > div:first-child {
|
|
7795
7756
|
padding-left: calc(var(--f7-swipeout-button-padding-horizontal) + var(--f7-safe-area-left));
|
|
7796
7757
|
}
|
|
7797
|
-
.swipeout-
|
|
7798
|
-
|
|
7799
|
-
--f7-swipeout-button-bg-color: var(--f7-theme-color);
|
|
7758
|
+
.md .swipeout-overswipe {
|
|
7759
|
+
transition-property: left;
|
|
7800
7760
|
}
|
|
7801
7761
|
/* === Accordion === */
|
|
7802
7762
|
:root {
|
|
@@ -11478,17 +11438,13 @@ label.item-radio.disabled,
|
|
|
11478
11438
|
--f7-range-scale-step-height: 5px;
|
|
11479
11439
|
--f7-range-scale-substep-width: 1px;
|
|
11480
11440
|
--f7-range-scale-substep-height: 4px;
|
|
11481
|
-
--f7-range-bar-bg-color: rgba(0, 0, 0, 0.2);
|
|
11482
|
-
}
|
|
11483
|
-
:root .dark,
|
|
11484
|
-
:root.dark {
|
|
11485
|
-
--f7-range-bar-bg-color: rgba(255, 255, 255, 0.2);
|
|
11486
11441
|
}
|
|
11487
11442
|
.ios {
|
|
11488
11443
|
--f7-range-size: 28px;
|
|
11489
|
-
--f7-range-bar-size:
|
|
11490
|
-
--f7-range-bar-border-radius:
|
|
11491
|
-
--f7-range-knob-
|
|
11444
|
+
--f7-range-bar-size: 6px;
|
|
11445
|
+
--f7-range-bar-border-radius: 6px;
|
|
11446
|
+
--f7-range-knob-width: 38px;
|
|
11447
|
+
--f7-range-knob-height: 24px;
|
|
11492
11448
|
--f7-range-knob-color: #fff;
|
|
11493
11449
|
--f7-range-knob-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
|
|
11494
11450
|
--f7-range-label-size: 24px;
|
|
@@ -11497,18 +11453,24 @@ label.item-radio.disabled,
|
|
|
11497
11453
|
--f7-range-label-font-size: 12px;
|
|
11498
11454
|
--f7-range-label-font-weight: 500;
|
|
11499
11455
|
--f7-range-label-border-radius: 5px;
|
|
11500
|
-
--f7-range-label-padding: 0px
|
|
11456
|
+
--f7-range-label-padding: 0px 4px;
|
|
11501
11457
|
--f7-range-scale-text-color: #666;
|
|
11502
11458
|
--f7-range-scale-step-width: 1px;
|
|
11503
11459
|
--f7-range-scale-font-size: 12px;
|
|
11504
11460
|
--f7-range-scale-font-weight: 400;
|
|
11505
11461
|
--f7-range-scale-label-offset: 4px;
|
|
11462
|
+
--f7-range-bar-bg-color: rgba(0, 0, 0, 0.2);
|
|
11463
|
+
}
|
|
11464
|
+
.ios .dark,
|
|
11465
|
+
.ios.dark {
|
|
11466
|
+
--f7-range-bar-bg-color: rgba(255, 255, 255, 0.2);
|
|
11506
11467
|
}
|
|
11507
11468
|
.md {
|
|
11508
11469
|
--f7-range-size: 20px;
|
|
11509
|
-
--f7-range-bar-size:
|
|
11510
|
-
--f7-range-bar-border-radius:
|
|
11511
|
-
--f7-range-knob-
|
|
11470
|
+
--f7-range-bar-size: 16px;
|
|
11471
|
+
--f7-range-bar-border-radius: 16px;
|
|
11472
|
+
--f7-range-knob-width: 16px;
|
|
11473
|
+
--f7-range-knob-height: 44px;
|
|
11512
11474
|
--f7-range-knob-box-shadow: none;
|
|
11513
11475
|
--f7-range-label-size: 26px;
|
|
11514
11476
|
--f7-range-label-font-weight: normal;
|
|
@@ -11523,6 +11485,7 @@ label.item-radio.disabled,
|
|
|
11523
11485
|
.md,
|
|
11524
11486
|
.md .dark,
|
|
11525
11487
|
.md [class*='color-'] {
|
|
11488
|
+
--f7-range-bar-bg-color: var(--f7-md-secondary-container);
|
|
11526
11489
|
--f7-range-knob-color: var(--f7-theme-color);
|
|
11527
11490
|
--f7-range-label-text-color: var(--f7-md-on-primary);
|
|
11528
11491
|
--f7-range-label-bg-color: var(--f7-theme-color);
|
|
@@ -11590,49 +11553,35 @@ label.item-radio.disabled,
|
|
|
11590
11553
|
.range-knob-wrap {
|
|
11591
11554
|
z-index: 20;
|
|
11592
11555
|
position: absolute;
|
|
11593
|
-
height: var(--f7-range-knob-
|
|
11594
|
-
width: var(--f7-range-knob-
|
|
11556
|
+
height: var(--f7-range-knob-height);
|
|
11557
|
+
width: var(--f7-range-knob-width);
|
|
11595
11558
|
}
|
|
11596
11559
|
.range-slider-horizontal .range-knob-wrap {
|
|
11597
11560
|
top: 50%;
|
|
11598
|
-
margin-top: calc(-1 * var(--f7-range-knob-
|
|
11599
|
-
margin-left: calc(-1 * var(--f7-range-knob-
|
|
11561
|
+
margin-top: calc(-1 * var(--f7-range-knob-height) / 2);
|
|
11562
|
+
margin-left: calc(-1 * var(--f7-range-knob-width) / 2);
|
|
11600
11563
|
left: 0;
|
|
11601
11564
|
}
|
|
11602
11565
|
.range-slider-vertical .range-knob-wrap {
|
|
11603
11566
|
left: 50%;
|
|
11604
|
-
|
|
11567
|
+
height: var(--f7-range-knob-width);
|
|
11568
|
+
width: var(--f7-range-knob-height);
|
|
11569
|
+
margin-left: calc(-1 * var(--f7-range-knob-height) / 2);
|
|
11605
11570
|
bottom: 0;
|
|
11606
|
-
margin-bottom: calc(-1 * var(--f7-range-knob-
|
|
11571
|
+
margin-bottom: calc(-1 * var(--f7-range-knob-width) / 2);
|
|
11607
11572
|
}
|
|
11608
11573
|
.range-slider-vertical-reversed .range-knob-wrap {
|
|
11609
11574
|
bottom: auto;
|
|
11610
11575
|
top: 0;
|
|
11611
11576
|
margin-bottom: 0;
|
|
11612
|
-
margin-top: calc(-1 * var(--f7-range-knob-
|
|
11577
|
+
margin-top: calc(-1 * var(--f7-range-knob-width) / 2);
|
|
11613
11578
|
}
|
|
11614
11579
|
.range-knob {
|
|
11615
11580
|
box-sizing: border-box;
|
|
11616
|
-
border-radius: 50%;
|
|
11617
|
-
position: absolute;
|
|
11618
|
-
left: 0;
|
|
11619
|
-
top: 0;
|
|
11620
|
-
width: 100%;
|
|
11621
|
-
height: 100%;
|
|
11622
11581
|
z-index: 1;
|
|
11623
11582
|
background: var(--f7-range-knob-color, var(--f7-range-knob-bg-color, var(--f7-theme-color)));
|
|
11624
11583
|
box-shadow: var(--f7-range-knob-box-shadow);
|
|
11625
11584
|
}
|
|
11626
|
-
.range-knob:after {
|
|
11627
|
-
content: '';
|
|
11628
|
-
position: absolute;
|
|
11629
|
-
left: 50%;
|
|
11630
|
-
top: 50%;
|
|
11631
|
-
width: 44px;
|
|
11632
|
-
height: 44px;
|
|
11633
|
-
margin-left: -22px;
|
|
11634
|
-
margin-top: -22px;
|
|
11635
|
-
}
|
|
11636
11585
|
.range-knob-label {
|
|
11637
11586
|
position: absolute;
|
|
11638
11587
|
left: 50%;
|
|
@@ -11732,19 +11681,94 @@ label.item-radio.disabled,
|
|
|
11732
11681
|
--f7-range-scale-step-width: var(--f7-range-scale-substep-width);
|
|
11733
11682
|
--f7-range-scale-step-height: var(--f7-range-scale-substep-height);
|
|
11734
11683
|
}
|
|
11684
|
+
.ios .range-bar-active {
|
|
11685
|
+
border-radius: inherit;
|
|
11686
|
+
}
|
|
11687
|
+
.ios .range-knob {
|
|
11688
|
+
border-radius: var(--f7-range-knob-height);
|
|
11689
|
+
transition-duration: 300ms;
|
|
11690
|
+
position: absolute;
|
|
11691
|
+
left: 0;
|
|
11692
|
+
top: 0;
|
|
11693
|
+
width: 100%;
|
|
11694
|
+
height: 100%;
|
|
11695
|
+
}
|
|
11696
|
+
.ios .range-knob:after {
|
|
11697
|
+
content: '';
|
|
11698
|
+
position: absolute;
|
|
11699
|
+
left: 50%;
|
|
11700
|
+
top: 50%;
|
|
11701
|
+
width: 44px;
|
|
11702
|
+
height: 44px;
|
|
11703
|
+
}
|
|
11704
|
+
.ios .range-knob::before,
|
|
11705
|
+
.ios .range-knob::after {
|
|
11706
|
+
content: '';
|
|
11707
|
+
position: absolute;
|
|
11708
|
+
}
|
|
11709
|
+
.ios .range-knob::before {
|
|
11710
|
+
width: 1px;
|
|
11711
|
+
height: 1px;
|
|
11712
|
+
opacity: 0;
|
|
11713
|
+
transition-duration: 300ms;
|
|
11714
|
+
box-shadow: 0px 0px 40px 15px rgba(var(--f7-theme-color-rgb), 0.75);
|
|
11715
|
+
left: 50%;
|
|
11716
|
+
top: 50%;
|
|
11717
|
+
margin-left: -0.5px;
|
|
11718
|
+
margin-top: -0.5px;
|
|
11719
|
+
}
|
|
11720
|
+
.ios .range-knob::after {
|
|
11721
|
+
inset: 0;
|
|
11722
|
+
border-radius: inherit;
|
|
11723
|
+
box-shadow: var(--f7-glass-shadow-thumb);
|
|
11724
|
+
transition-duration: 300ms;
|
|
11725
|
+
opacity: 0;
|
|
11726
|
+
width: 100%;
|
|
11727
|
+
height: 100%;
|
|
11728
|
+
margin: 0;
|
|
11729
|
+
}
|
|
11735
11730
|
.ios .range-knob-label {
|
|
11736
11731
|
margin-bottom: 6px;
|
|
11737
11732
|
transform: translateX(-50%) translateY(100%) scale(0);
|
|
11733
|
+
z-index: 2;
|
|
11738
11734
|
}
|
|
11739
11735
|
.ios .range-knob-active-state .range-knob-label {
|
|
11740
11736
|
transform: translateX(-50%) translateY(0%) scale(1);
|
|
11741
11737
|
}
|
|
11738
|
+
.ios .range-knob-active-state .range-knob {
|
|
11739
|
+
background: transparent;
|
|
11740
|
+
transform: scale(1.4);
|
|
11741
|
+
}
|
|
11742
|
+
.ios .range-knob-active-state .range-knob::before {
|
|
11743
|
+
opacity: 1;
|
|
11744
|
+
}
|
|
11745
|
+
.ios .range-knob-active-state .range-knob::after {
|
|
11746
|
+
opacity: 1;
|
|
11747
|
+
}
|
|
11748
|
+
.md .range-knob-wrap {
|
|
11749
|
+
display: flex;
|
|
11750
|
+
align-items: center;
|
|
11751
|
+
justify-content: center;
|
|
11752
|
+
}
|
|
11742
11753
|
.md .range-knob {
|
|
11743
11754
|
transition-duration: 200ms;
|
|
11744
11755
|
transition-property: transform, background-color;
|
|
11756
|
+
width: 4px;
|
|
11757
|
+
height: var(--f7-range-knob-height);
|
|
11758
|
+
display: flex;
|
|
11759
|
+
align-items: center;
|
|
11760
|
+
justify-content: center;
|
|
11761
|
+
border-radius: 4px;
|
|
11745
11762
|
}
|
|
11746
11763
|
.md .range-knob-active-state .range-knob {
|
|
11747
|
-
transform:
|
|
11764
|
+
transform: scaleX(0.5);
|
|
11765
|
+
}
|
|
11766
|
+
.md .range-slider-vertical .range-knob {
|
|
11767
|
+
width: var(--f7-range-knob-height);
|
|
11768
|
+
height: 4px;
|
|
11769
|
+
}
|
|
11770
|
+
.md .range-slider-vertical .range-knob-active-state .range-knob {
|
|
11771
|
+
transform: scaleY(0.5);
|
|
11748
11772
|
}
|
|
11749
11773
|
.md .range-slider-min:not(.range-slider-dual) .range-knob {
|
|
11750
11774
|
background: #fff !important;
|
|
@@ -11771,8 +11795,48 @@ label.item-radio.disabled,
|
|
|
11771
11795
|
.md .range-knob-active-state .range-knob-label {
|
|
11772
11796
|
transform: translateY(0%) scale(1);
|
|
11773
11797
|
}
|
|
11774
|
-
.md .range-
|
|
11775
|
-
|
|
11798
|
+
.md .range-bar-active,
|
|
11799
|
+
.md .range-bar-inactive {
|
|
11800
|
+
border-radius: 4px;
|
|
11801
|
+
}
|
|
11802
|
+
.md .range-slider::before,
|
|
11803
|
+
.md .range-slider::after {
|
|
11804
|
+
content: '';
|
|
11805
|
+
position: absolute;
|
|
11806
|
+
width: 4px;
|
|
11807
|
+
height: 4px;
|
|
11808
|
+
border-radius: 50%;
|
|
11809
|
+
background: var(--f7-range-knob-color);
|
|
11810
|
+
top: calc(50% - 2px);
|
|
11811
|
+
z-index: 1;
|
|
11812
|
+
pointer-events: none;
|
|
11813
|
+
transition-duration: 200ms;
|
|
11814
|
+
}
|
|
11815
|
+
.md .range-slider::before {
|
|
11816
|
+
left: calc(var(--f7-range-knob-width) / 2 - 2px);
|
|
11817
|
+
}
|
|
11818
|
+
.md .range-slider::after {
|
|
11819
|
+
right: calc(var(--f7-range-knob-width) / 2 - 2px);
|
|
11820
|
+
}
|
|
11821
|
+
.md .range-slider:not(.range-slider-dual)::before {
|
|
11822
|
+
content: none;
|
|
11823
|
+
display: none;
|
|
11824
|
+
}
|
|
11825
|
+
.md .range-slider:has(.range-knob-active-state)::before,
|
|
11826
|
+
.md .range-slider:has(.range-knob-active-state)::after {
|
|
11827
|
+
transform: scale(0.5);
|
|
11828
|
+
}
|
|
11829
|
+
.md .range-slider.range-slider-vertical::before,
|
|
11830
|
+
.md .range-slider.range-slider-vertical::after {
|
|
11831
|
+
top: auto;
|
|
11832
|
+
left: calc(50% - 2px);
|
|
11833
|
+
right: auto;
|
|
11834
|
+
}
|
|
11835
|
+
.md .range-slider.range-slider-vertical::before {
|
|
11836
|
+
bottom: calc(var(--f7-range-knob-width) / 2 - 2px);
|
|
11837
|
+
}
|
|
11838
|
+
.md .range-slider.range-slider-vertical::after {
|
|
11839
|
+
top: calc(var(--f7-range-knob-width) / 2 - 2px);
|
|
11776
11840
|
}
|
|
11777
11841
|
/* === Stepper === */
|
|
11778
11842
|
:root {
|
|
@@ -17609,23 +17673,22 @@ button.swiper-pagination-bullet {
|
|
|
17609
17673
|
}
|
|
17610
17674
|
.ios {
|
|
17611
17675
|
--f7-notification-margin: 8px;
|
|
17612
|
-
--f7-notification-padding-horizontal:
|
|
17613
|
-
--f7-notification-padding-vertical:
|
|
17614
|
-
--f7-notification-border-radius:
|
|
17615
|
-
--f7-notification-box-shadow:
|
|
17616
|
-
--f7-notification-icon-size:
|
|
17617
|
-
--f7-notification-title-font-size:
|
|
17618
|
-
--f7-notification-title-text-transform:
|
|
17676
|
+
--f7-notification-padding-horizontal: 16px;
|
|
17677
|
+
--f7-notification-padding-vertical: 16px;
|
|
17678
|
+
--f7-notification-border-radius: 24px;
|
|
17679
|
+
--f7-notification-box-shadow: var(--f7-glass-shadow);
|
|
17680
|
+
--f7-notification-icon-size: 28px;
|
|
17681
|
+
--f7-notification-title-font-size: 14px;
|
|
17682
|
+
--f7-notification-title-text-transform: none;
|
|
17619
17683
|
--f7-notification-title-line-height: 1.4;
|
|
17620
|
-
--f7-notification-title-font-weight:
|
|
17684
|
+
--f7-notification-title-font-weight: bold;
|
|
17621
17685
|
--f7-notification-title-letter-spacing: 0.02em;
|
|
17622
|
-
--f7-notification-title-right-font-size:
|
|
17623
|
-
--f7-notification-subtitle-font-size:
|
|
17686
|
+
--f7-notification-title-right-font-size: 14px;
|
|
17687
|
+
--f7-notification-subtitle-font-size: 14px;
|
|
17624
17688
|
--f7-notification-subtitle-font-weight: 600;
|
|
17625
|
-
--f7-notification-text-font-size:
|
|
17626
|
-
--f7-notification-text-line-height: 1.
|
|
17627
|
-
--f7-notification-bg-color:
|
|
17628
|
-
--f7-notification-bg-color-rgb: 255, 255, 255;
|
|
17689
|
+
--f7-notification-text-font-size: 14px;
|
|
17690
|
+
--f7-notification-text-line-height: 1.4;
|
|
17691
|
+
--f7-notification-bg-color: var(--f7-glass-bg-color);
|
|
17629
17692
|
--f7-notification-title-color: #000;
|
|
17630
17693
|
--f7-notification-title-right-color: rgba(0, 0, 0, 0.45);
|
|
17631
17694
|
--f7-notification-subtitle-color: #000;
|
|
@@ -17633,8 +17696,6 @@ button.swiper-pagination-bullet {
|
|
|
17633
17696
|
}
|
|
17634
17697
|
.ios .dark,
|
|
17635
17698
|
.ios.dark {
|
|
17636
|
-
--f7-notification-bg-color: rgba(30, 30, 30, 0.95);
|
|
17637
|
-
--f7-notification-bg-color-rgb: 30, 30, 30;
|
|
17638
17699
|
--f7-notification-title-color: #fff;
|
|
17639
17700
|
--f7-notification-text-color: #fff;
|
|
17640
17701
|
--f7-notification-subtitle-color: #fff;
|
|
@@ -17685,14 +17746,22 @@ button.swiper-pagination-bullet {
|
|
|
17685
17746
|
box-shadow: var(--f7-notification-box-shadow);
|
|
17686
17747
|
background: var(--f7-notification-bg-color);
|
|
17687
17748
|
margin-top: var(--f7-safe-area-top);
|
|
17749
|
+
display: flex;
|
|
17750
|
+
gap: 16px;
|
|
17751
|
+
-webkit-backdrop-filter: saturate(180%) blur(16px);
|
|
17752
|
+
backdrop-filter: saturate(180%) blur(16px);
|
|
17688
17753
|
}
|
|
17689
|
-
@
|
|
17690
|
-
.
|
|
17691
|
-
|
|
17692
|
-
-
|
|
17693
|
-
|
|
17754
|
+
@media (min-width: 568px) {
|
|
17755
|
+
.notification {
|
|
17756
|
+
left: 50%;
|
|
17757
|
+
width: var(--f7-notification-max-width);
|
|
17758
|
+
margin-left: calc(-1 * var(--f7-notification-max-width) / 2);
|
|
17694
17759
|
}
|
|
17695
17760
|
}
|
|
17761
|
+
.notification-content {
|
|
17762
|
+
width: 100%;
|
|
17763
|
+
flex-shrink: 10;
|
|
17764
|
+
}
|
|
17696
17765
|
.notification-title {
|
|
17697
17766
|
color: var(--f7-notification-title-color, var(--f7-theme-color));
|
|
17698
17767
|
font-size: var(--f7-notification-title-font-size);
|
|
@@ -17722,6 +17791,7 @@ button.swiper-pagination-bullet {
|
|
|
17722
17791
|
.notification-icon {
|
|
17723
17792
|
font-size: 0;
|
|
17724
17793
|
line-height: var(--f7-notification-icon-size);
|
|
17794
|
+
flex-shrink: 0;
|
|
17725
17795
|
}
|
|
17726
17796
|
.notification-icon i,
|
|
17727
17797
|
.notification-icon {
|
|
@@ -17770,6 +17840,7 @@ button.swiper-pagination-bullet {
|
|
|
17770
17840
|
.ios .notification {
|
|
17771
17841
|
transition-duration: 450ms;
|
|
17772
17842
|
transform: translate3d(0%, -200%, 0);
|
|
17843
|
+
align-items: center;
|
|
17773
17844
|
}
|
|
17774
17845
|
.ios .notification.modal-in {
|
|
17775
17846
|
transform: translate3d(0%, 0%, 0);
|
|
@@ -17778,18 +17849,11 @@ button.swiper-pagination-bullet {
|
|
|
17778
17849
|
.ios .notification.modal-out {
|
|
17779
17850
|
transform: translate3d(0%, -200%, 0);
|
|
17780
17851
|
}
|
|
17781
|
-
.ios .notification-icon {
|
|
17782
|
-
margin-right: 8px;
|
|
17783
|
-
}
|
|
17784
|
-
.ios .notification-header + .notification-content {
|
|
17785
|
-
margin-top: 10px;
|
|
17786
|
-
}
|
|
17787
17852
|
.ios .notification-title-right-text {
|
|
17788
|
-
margin-right: 6px;
|
|
17789
17853
|
margin-left: auto;
|
|
17790
17854
|
}
|
|
17791
17855
|
.ios .notification-title-right-text + .notification-close-button {
|
|
17792
|
-
margin-left:
|
|
17856
|
+
margin-left: 12px;
|
|
17793
17857
|
}
|
|
17794
17858
|
.ios .notification-close-button {
|
|
17795
17859
|
font-size: 14px;
|
|
@@ -17833,22 +17897,7 @@ button.swiper-pagination-bullet {
|
|
|
17833
17897
|
transition-timing-function: ease-in;
|
|
17834
17898
|
transform: translate3d(0, -150%, 0);
|
|
17835
17899
|
}
|
|
17836
|
-
.md .notification-
|
|
17837
|
-
position: absolute;
|
|
17838
|
-
left: var(--f7-notification-padding-horizontal);
|
|
17839
|
-
top: var(--f7-notification-padding-vertical);
|
|
17840
|
-
}
|
|
17841
|
-
.md .notification-with-icon .notification-content,
|
|
17842
|
-
.md .notification-with-icon .notification-header {
|
|
17843
|
-
margin-left: calc(var(--f7-notification-icon-size) + 16px);
|
|
17844
|
-
}
|
|
17845
|
-
.md .notification-icon {
|
|
17846
|
-
margin-right: 8px;
|
|
17847
|
-
}
|
|
17848
|
-
.md .notification-subtitle + .notification-text {
|
|
17849
|
-
margin-top: 4px;
|
|
17850
|
-
}
|
|
17851
|
-
.md .notification-header + .notification-content {
|
|
17900
|
+
.md .notification-header + :is(.notification-subtitle, .notification-text) {
|
|
17852
17901
|
margin-top: 8px;
|
|
17853
17902
|
}
|
|
17854
17903
|
.md .notification-title-right-text {
|