@simplybusiness/theme-simplybusiness 2.10.11 → 2.11.1
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/CHANGELOG.md +43 -0
- package/dist/index.css +247 -89
- package/package.json +8 -8
- package/src/index.css +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 2.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [e160de4]
|
|
8
|
+
- Updated dependencies [754a161]
|
|
9
|
+
- Updated dependencies [fa3183a]
|
|
10
|
+
- Updated dependencies [d0940fa]
|
|
11
|
+
- Updated dependencies [bf809eb]
|
|
12
|
+
- @simplybusiness/theme-core@7.14.8
|
|
13
|
+
- @simplybusiness/mobius-journey@11.22.0
|
|
14
|
+
- @simplybusiness/mobius-interventions@3.4.0
|
|
15
|
+
- @simplybusiness/mobius@6.9.5
|
|
16
|
+
- @simplybusiness/mobius-chatbot@2.2.6
|
|
17
|
+
- @simplybusiness/mobius-datepicker@7.3.6
|
|
18
|
+
|
|
19
|
+
## 2.11.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- a295210: Coverage recommendations skeleton
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 8d1278f: Implement back button in Showcase and implement more styling
|
|
28
|
+
- 56c673f: Migrate CSS from SASS-style nesting to native CSS nesting syntax
|
|
29
|
+
- Update 62 CSS source files to use native CSS nesting with `&` prefix
|
|
30
|
+
- Switch PostCSS plugin from `postcss-nested` to `postcss-nesting`
|
|
31
|
+
- No functional changes to compiled CSS output (still Safari 14 compatible)
|
|
32
|
+
|
|
33
|
+
- Updated dependencies [a295210]
|
|
34
|
+
- Updated dependencies [8d1278f]
|
|
35
|
+
- Updated dependencies [a934bca]
|
|
36
|
+
- Updated dependencies [56c673f]
|
|
37
|
+
- Updated dependencies [c54e331]
|
|
38
|
+
- Updated dependencies [7cf76f2]
|
|
39
|
+
- @simplybusiness/mobius-journey@11.21.0
|
|
40
|
+
- @simplybusiness/mobius@6.9.5
|
|
41
|
+
- @simplybusiness/mobius-interventions@3.3.7
|
|
42
|
+
- @simplybusiness/mobius-datepicker@7.3.6
|
|
43
|
+
- @simplybusiness/theme-core@7.14.7
|
|
44
|
+
- @simplybusiness/mobius-chatbot@2.2.5
|
|
45
|
+
|
|
3
46
|
## 2.10.11
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -268,7 +268,7 @@ h6.mobius-accordion__link-text,
|
|
|
268
268
|
border-color:var(--color-valid);
|
|
269
269
|
color:transparent;
|
|
270
270
|
}
|
|
271
|
-
.mobius-button:where(.--is-success)
|
|
271
|
+
.mobius-button:where(.--is-success) > :not(.mobius-button__icon-wrapper){
|
|
272
272
|
opacity:0;
|
|
273
273
|
visibility:hidden;
|
|
274
274
|
}
|
|
@@ -294,7 +294,7 @@ h6.mobius-accordion__link-text,
|
|
|
294
294
|
.mobius-button:where(.--is-loading){
|
|
295
295
|
color:transparent;
|
|
296
296
|
}
|
|
297
|
-
.mobius-button:where(.--is-loading)
|
|
297
|
+
.mobius-button:where(.--is-loading) > :not(.mobius-button__icon-wrapper){
|
|
298
298
|
opacity:0;
|
|
299
299
|
visibility:hidden;
|
|
300
300
|
}
|
|
@@ -606,7 +606,7 @@ h6.mobius-accordion__link-text,
|
|
|
606
606
|
opacity:0;
|
|
607
607
|
transition:opacity var(--drawer-transition-duration) ease-in-out;
|
|
608
608
|
}
|
|
609
|
-
.mobius-drawer
|
|
609
|
+
.mobius-drawer + .backdrop{
|
|
610
610
|
position:fixed;
|
|
611
611
|
top:0;
|
|
612
612
|
right:0;
|
|
@@ -615,7 +615,7 @@ h6.mobius-accordion__link-text,
|
|
|
615
615
|
background-color:var(--backdrop-color);
|
|
616
616
|
opacity:0.3;
|
|
617
617
|
}
|
|
618
|
-
:is(.mobius-drawer + .backdrop)
|
|
618
|
+
:is(.mobius-drawer + .backdrop) + ._dialog_overlay{
|
|
619
619
|
position:fixed;
|
|
620
620
|
top:0;
|
|
621
621
|
right:0;
|
|
@@ -996,7 +996,7 @@ h6.mobius-accordion__link-text,
|
|
|
996
996
|
opacity:0;
|
|
997
997
|
transition:opacity var(--modal-transition-duration) ease-in-out;
|
|
998
998
|
}
|
|
999
|
-
.mobius-modal
|
|
999
|
+
.mobius-modal + .backdrop{
|
|
1000
1000
|
position:fixed;
|
|
1001
1001
|
top:0;
|
|
1002
1002
|
right:0;
|
|
@@ -1005,7 +1005,7 @@ h6.mobius-accordion__link-text,
|
|
|
1005
1005
|
background-color:var(--backdrop-color);
|
|
1006
1006
|
opacity:0.3;
|
|
1007
1007
|
}
|
|
1008
|
-
:is(.mobius-modal + .backdrop)
|
|
1008
|
+
:is(.mobius-modal + .backdrop) + ._dialog_overlay{
|
|
1009
1009
|
position:fixed;
|
|
1010
1010
|
top:0;
|
|
1011
1011
|
right:0;
|
|
@@ -1530,7 +1530,7 @@ h6.mobius-accordion__link-text,
|
|
|
1530
1530
|
box-sizing:border-box;
|
|
1531
1531
|
width:100%;
|
|
1532
1532
|
}
|
|
1533
|
-
.mobius-select__outer
|
|
1533
|
+
.mobius-select__outer > :where(.mobius-label.--is-optional)::after{
|
|
1534
1534
|
content:" (optional)";
|
|
1535
1535
|
}
|
|
1536
1536
|
.mobius-select__wrapper{
|
|
@@ -1734,7 +1734,7 @@ h6.mobius-accordion__link-text,
|
|
|
1734
1734
|
width:0;
|
|
1735
1735
|
height:0;
|
|
1736
1736
|
}
|
|
1737
|
-
:is(.mobius-switch input):focus-visible
|
|
1737
|
+
:is(.mobius-switch input):focus-visible + .mobius-switch__slider{
|
|
1738
1738
|
box-shadow:var(--box-shadow-default);
|
|
1739
1739
|
}
|
|
1740
1740
|
.mobius-switch__slider{
|
|
@@ -1978,7 +1978,7 @@ h6.mobius-accordion__link-text,
|
|
|
1978
1978
|
border-top-right-radius:0;
|
|
1979
1979
|
border-bottom-right-radius:0;
|
|
1980
1980
|
}
|
|
1981
|
-
.mobius-text-field__prefix-outside.mobius-button
|
|
1981
|
+
.mobius-text-field__prefix-outside.mobius-button + .mobius-text-field__input-wrapper{
|
|
1982
1982
|
border-top-left-radius:0;
|
|
1983
1983
|
border-bottom-left-radius:0;
|
|
1984
1984
|
}
|
|
@@ -2170,6 +2170,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2170
2170
|
position:absolute;
|
|
2171
2171
|
right:0;
|
|
2172
2172
|
top:0;
|
|
2173
|
+
transform-origin:center center;
|
|
2173
2174
|
}
|
|
2174
2175
|
.mobius-icon-layers-counter,
|
|
2175
2176
|
.mobius-icon-layers-text{
|
|
@@ -2185,9 +2186,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2185
2186
|
vertical-align:-0.125em;
|
|
2186
2187
|
width:1em;
|
|
2187
2188
|
}
|
|
2188
|
-
.mobius-icon-layers svg.svg-inline--mobius-icon{
|
|
2189
|
-
transform-origin:center center;
|
|
2190
|
-
}
|
|
2191
2189
|
.mobius-icon-layers-text{
|
|
2192
2190
|
left:50%;
|
|
2193
2191
|
top:50%;
|
|
@@ -2445,16 +2443,16 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2445
2443
|
fill:var(--mobius-icon-secondary-color, currentColor);
|
|
2446
2444
|
opacity:var(--mobius-icon-secondary-opacity, 0.4);
|
|
2447
2445
|
}
|
|
2446
|
+
.svg-inline--mobius-icon mask .mobius-icon-primary,
|
|
2447
|
+
.svg-inline--mobius-icon mask .mobius-icon-secondary{
|
|
2448
|
+
fill:black;
|
|
2449
|
+
}
|
|
2448
2450
|
.svg-inline--mobius-icon.mobius-icon-swap-opacity .mobius-icon-primary{
|
|
2449
2451
|
opacity:var(--mobius-icon-secondary-opacity, 0.4);
|
|
2450
2452
|
}
|
|
2451
2453
|
.svg-inline--mobius-icon.mobius-icon-swap-opacity .mobius-icon-secondary{
|
|
2452
2454
|
opacity:var(--mobius-icon-primary-opacity, 1);
|
|
2453
2455
|
}
|
|
2454
|
-
.svg-inline--mobius-icon mask .mobius-icon-primary,
|
|
2455
|
-
.svg-inline--mobius-icon mask .mobius-icon-secondary{
|
|
2456
|
-
fill:black;
|
|
2457
|
-
}
|
|
2458
2456
|
.fad.mobius-icon-inverse,
|
|
2459
2457
|
.mobius-icon-duotone.mobius-icon-inverse{
|
|
2460
2458
|
color:var(--mobius-icon-inverse, #fff);
|
|
@@ -4207,7 +4205,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4207
4205
|
|
|
4208
4206
|
}
|
|
4209
4207
|
.mobius-question__chatbox p{
|
|
4210
|
-
margin:0
|
|
4208
|
+
margin:0;
|
|
4211
4209
|
}
|
|
4212
4210
|
.mobius-question__chatbox .mobius-question__chatbox-link-container{
|
|
4213
4211
|
gap:var(--size-xs);
|
|
@@ -5618,6 +5616,124 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5618
5616
|
--column-count:2;
|
|
5619
5617
|
}
|
|
5620
5618
|
}
|
|
5619
|
+
.mobius-recommendations__card{
|
|
5620
|
+
display:flex;
|
|
5621
|
+
flex-direction:column;
|
|
5622
|
+
gap:16px;
|
|
5623
|
+
padding:24px 16px;
|
|
5624
|
+
border:2px solid #e2dbfb;
|
|
5625
|
+
border-width:2px;
|
|
5626
|
+
background-color:#ffffff;
|
|
5627
|
+
transition:border-color 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
|
|
5628
|
+
overflow:hidden;
|
|
5629
|
+
box-shadow:0px 12px 24px 0px rgba(0, 0, 0, 0.1607843137);
|
|
5630
|
+
position:relative;
|
|
5631
|
+
}
|
|
5632
|
+
.mobius-recommendations__card--selected{
|
|
5633
|
+
border:2px solid #2a1e81;
|
|
5634
|
+
border-radius:var(--radius-2);
|
|
5635
|
+
}
|
|
5636
|
+
.mobius-recommendations__card:focus-visible{
|
|
5637
|
+
outline:2px solid var(--color-focus);
|
|
5638
|
+
outline-offset:4px;
|
|
5639
|
+
}
|
|
5640
|
+
.mobius-recommendations__card-content{
|
|
5641
|
+
display:flex;
|
|
5642
|
+
flex-direction:column;
|
|
5643
|
+
gap:var(--size-md);
|
|
5644
|
+
}
|
|
5645
|
+
.mobius-recommendations__card-header{
|
|
5646
|
+
display:flex;
|
|
5647
|
+
justify-content:space-between;
|
|
5648
|
+
align-items:flex-start;
|
|
5649
|
+
gap:16px;
|
|
5650
|
+
}
|
|
5651
|
+
.mobius-recommendations__badge{
|
|
5652
|
+
display:flex;
|
|
5653
|
+
align-items:center;
|
|
5654
|
+
gap:8px;
|
|
5655
|
+
margin:-30px -24px 8px;
|
|
5656
|
+
padding:14px 24px;
|
|
5657
|
+
background:rgb(42, 30, 129);
|
|
5658
|
+
color:var(--color-text-inverted);
|
|
5659
|
+
font-size:14px;
|
|
5660
|
+
border-radius:22px 22px 0 0;
|
|
5661
|
+
}
|
|
5662
|
+
.mobius-recommendations__badge-icon{
|
|
5663
|
+
color:currentColor;
|
|
5664
|
+
}
|
|
5665
|
+
.mobius-recommendations__badge-label{
|
|
5666
|
+
line-height:1.2;
|
|
5667
|
+
}
|
|
5668
|
+
.mobius-recommendations__checkbox{
|
|
5669
|
+
min-width:24px;
|
|
5670
|
+
min-height:24px;
|
|
5671
|
+
border-radius:var(--radius-1);
|
|
5672
|
+
border:2px solid var(--color-border);
|
|
5673
|
+
display:grid;
|
|
5674
|
+
place-items:center;
|
|
5675
|
+
background-color:var(--color-background);
|
|
5676
|
+
transition:border-color var(--transition-standard), background-color var(--transition-standard), color var(--transition-standard);
|
|
5677
|
+
color:transparent;
|
|
5678
|
+
}
|
|
5679
|
+
.mobius-recommendations__checkbox--selected{
|
|
5680
|
+
border-color:var(--color-primary-hover);
|
|
5681
|
+
background-color:var(--color-primary-hover);
|
|
5682
|
+
color:var(--color-text-inverted);
|
|
5683
|
+
}
|
|
5684
|
+
.mobius-recommendations__checkbox-icon{
|
|
5685
|
+
width:10px;
|
|
5686
|
+
height:6px;
|
|
5687
|
+
border-left:2px solid currentColor;
|
|
5688
|
+
border-bottom:2px solid currentColor;
|
|
5689
|
+
transform:rotate(-45deg);
|
|
5690
|
+
}
|
|
5691
|
+
.mobius-recommendations__heading{
|
|
5692
|
+
margin:0;
|
|
5693
|
+
font-size:20px;
|
|
5694
|
+
line-height:1.2;
|
|
5695
|
+
color:#111118;
|
|
5696
|
+
}
|
|
5697
|
+
.mobius-recommendations__description{
|
|
5698
|
+
display:flex;
|
|
5699
|
+
flex-direction:column;
|
|
5700
|
+
gap:var(--size-xs);
|
|
5701
|
+
}
|
|
5702
|
+
.mobius-recommendations__footer{
|
|
5703
|
+
margin-top:auto;
|
|
5704
|
+
}
|
|
5705
|
+
.mobius-recommendations__cta{
|
|
5706
|
+
border-radius:20px;
|
|
5707
|
+
font-weight:var(--font-weight-bold);
|
|
5708
|
+
font-size:var(--font-size-2);
|
|
5709
|
+
padding:8px 12px;
|
|
5710
|
+
}
|
|
5711
|
+
.mobius-recommendations{
|
|
5712
|
+
display:flex;
|
|
5713
|
+
flex-direction:column;
|
|
5714
|
+
gap:var(--size-xl);
|
|
5715
|
+
padding-top:var(--size-xl);
|
|
5716
|
+
padding-bottom:var(--size-xl);
|
|
5717
|
+
}
|
|
5718
|
+
.mobius-recommendations__intro{
|
|
5719
|
+
max-width:720px;
|
|
5720
|
+
}
|
|
5721
|
+
@media (min-width: 1024px){
|
|
5722
|
+
.mobius-recommendations__intro{
|
|
5723
|
+
flex-direction:row;
|
|
5724
|
+
justify-content:space-between;
|
|
5725
|
+
align-items:flex-start;
|
|
5726
|
+
max-width:none;
|
|
5727
|
+
}
|
|
5728
|
+
}
|
|
5729
|
+
.mobius-recommendations__title{
|
|
5730
|
+
margin:0;
|
|
5731
|
+
}
|
|
5732
|
+
.mobius-recommendations__grid{
|
|
5733
|
+
display:grid;
|
|
5734
|
+
grid-template-columns:repeat(auto-fit, minmax(240px, 1fr));
|
|
5735
|
+
gap:var(--size-lg);
|
|
5736
|
+
}
|
|
5621
5737
|
.mobius-quote-card__section{
|
|
5622
5738
|
position:relative;
|
|
5623
5739
|
font-size:var(--font-size-regular);
|
|
@@ -5898,6 +6014,24 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5898
6014
|
.mobius-coverage-summary{
|
|
5899
6015
|
grid-area:1 / 2;
|
|
5900
6016
|
}
|
|
6017
|
+
.mobius-underwriter-legal-agreements__sms-button{
|
|
6018
|
+
display:flex;
|
|
6019
|
+
justify-content:center;
|
|
6020
|
+
margin:0 auto;
|
|
6021
|
+
margin-bottom:var(--size-md);
|
|
6022
|
+
}
|
|
6023
|
+
.mobius-underwriter-legal-agreements__sms-message{
|
|
6024
|
+
display:flex;
|
|
6025
|
+
justify-content:center;
|
|
6026
|
+
flex-direction:row;
|
|
6027
|
+
padding:var(--size-md);
|
|
6028
|
+
margin:var(--size-md) 0;
|
|
6029
|
+
font-size:var(--font-size-regular);
|
|
6030
|
+
background-color:var(--color-valid-background);
|
|
6031
|
+
}
|
|
6032
|
+
.mobius-underwriter-legal-agreements__sms-message.--is-invalid{
|
|
6033
|
+
background-color:var(--color-error-background);
|
|
6034
|
+
}
|
|
5901
6035
|
.mobius-checkout-buttons{
|
|
5902
6036
|
margin-top:var(--size-md);
|
|
5903
6037
|
display:flex;
|
|
@@ -5940,7 +6074,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5940
6074
|
.mobius-underwriter-legal-agreements__agreement-content .signature{
|
|
5941
6075
|
width:200px;
|
|
5942
6076
|
height:auto;
|
|
5943
|
-
font-size:
|
|
6077
|
+
font-size:var(--font-size-regular);
|
|
5944
6078
|
}
|
|
5945
6079
|
.mobius-underwriter-legal-agreements__bullet-list{
|
|
5946
6080
|
margin:0;
|
|
@@ -6330,22 +6464,12 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6330
6464
|
width:100%;
|
|
6331
6465
|
}
|
|
6332
6466
|
}
|
|
6333
|
-
.mobius-showcase-explore{
|
|
6467
|
+
.mobius-showcase__card.mobius-showcase-explore{
|
|
6334
6468
|
flex:1;
|
|
6335
|
-
min-width:0;
|
|
6336
|
-
background-color:var(--color-background);
|
|
6337
|
-
border:1px solid var(--color-border);
|
|
6338
|
-
border-radius:var(--radius-2);
|
|
6339
|
-
box-shadow:0px 12px 24px 0px #00000012;
|
|
6340
|
-
padding:var(--size-lg);
|
|
6341
|
-
display:flex;
|
|
6342
6469
|
flex-direction:column;
|
|
6343
6470
|
gap:var(--size-md);
|
|
6344
|
-
|
|
6345
|
-
|
|
6346
|
-
.mobius-showcase-explore{
|
|
6347
|
-
padding:var(--size-xl);
|
|
6348
|
-
}
|
|
6471
|
+
padding:var(--size-lg) var(--size-md);
|
|
6472
|
+
background-color:var(--color-azure-200);
|
|
6349
6473
|
}
|
|
6350
6474
|
.mobius-showcase-explore__title{
|
|
6351
6475
|
margin:0;
|
|
@@ -6365,13 +6489,49 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6365
6489
|
.mobius-showcase-explore__list-item{
|
|
6366
6490
|
color:var(--color-text);
|
|
6367
6491
|
}
|
|
6368
|
-
.mobius-showcase-
|
|
6492
|
+
.mobius-showcase-explore__form{
|
|
6369
6493
|
margin-top:auto;
|
|
6370
|
-
|
|
6494
|
+
}
|
|
6495
|
+
.mobius-showcase-explore__cta{
|
|
6496
|
+
width:100%;
|
|
6497
|
+
}
|
|
6498
|
+
.showcase-products-list__item:not(:last-child){
|
|
6499
|
+
margin-bottom:var(--size-sm);
|
|
6371
6500
|
}
|
|
6372
6501
|
.showcase-products-list__item__title{
|
|
6373
6502
|
font-size:var(--font-size-lead);
|
|
6374
6503
|
}
|
|
6504
|
+
.showcase-product-drawer__trigger{
|
|
6505
|
+
width:fit-content;
|
|
6506
|
+
border-radius:var(--size-lg);
|
|
6507
|
+
}
|
|
6508
|
+
.mobius-showcase-form{
|
|
6509
|
+
width:100%;
|
|
6510
|
+
}
|
|
6511
|
+
.mobius-showcase-form .mobius-button{
|
|
6512
|
+
display:flex;
|
|
6513
|
+
align-items:center;
|
|
6514
|
+
gap:var(--size-xs);
|
|
6515
|
+
width:100%;
|
|
6516
|
+
justify-content:center;
|
|
6517
|
+
font-size:var(--font-size-lead);
|
|
6518
|
+
}
|
|
6519
|
+
.mobius-showcase-form__back{
|
|
6520
|
+
display:flex;
|
|
6521
|
+
justify-content:center;
|
|
6522
|
+
}
|
|
6523
|
+
@media screen and (min-width: 641px){
|
|
6524
|
+
.mobius-showcase-form__back{
|
|
6525
|
+
justify-content:flex-start;
|
|
6526
|
+
}
|
|
6527
|
+
}
|
|
6528
|
+
.mobius-showcase-form__back .mobius-button{
|
|
6529
|
+
font-size:var(--font-size-regular);
|
|
6530
|
+
padding:var(--size-sm) var(--size-lg);
|
|
6531
|
+
}
|
|
6532
|
+
.mobius-showcase-form__accept-showcase-cta{
|
|
6533
|
+
width:fit-content;
|
|
6534
|
+
}
|
|
6375
6535
|
.mobius-disclaimers{
|
|
6376
6536
|
margin:var(--size-lg) 0;
|
|
6377
6537
|
padding:0 var(--size-sm);
|
|
@@ -6385,24 +6545,20 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6385
6545
|
}
|
|
6386
6546
|
@media screen and (min-width: 641px){
|
|
6387
6547
|
.mobius-showcase__layout{
|
|
6388
|
-
align-items:
|
|
6548
|
+
align-items:stretch;
|
|
6389
6549
|
flex-direction:row;
|
|
6390
6550
|
}
|
|
6391
6551
|
}
|
|
6392
|
-
.mobius-showcase{
|
|
6393
|
-
flex:2.5;
|
|
6394
|
-
min-width:0;
|
|
6395
|
-
}
|
|
6396
6552
|
.mobius-showcase__image-wrapper{
|
|
6397
6553
|
position:relative;
|
|
6398
6554
|
overflow:hidden;
|
|
6399
6555
|
aspect-ratio:100 / 45;
|
|
6400
6556
|
width:100%;
|
|
6401
|
-
border-radius:
|
|
6557
|
+
border-radius:var(--radius-2) var(--radius-2) 80px 80px;
|
|
6402
6558
|
}
|
|
6403
6559
|
@media screen and (min-width: 641px){
|
|
6404
6560
|
.mobius-showcase__image-wrapper{
|
|
6405
|
-
border-radius:160px
|
|
6561
|
+
border-radius:160px var(--radius-2) var(--radius-2) 160px;
|
|
6406
6562
|
order:2;
|
|
6407
6563
|
flex-basis:240px;
|
|
6408
6564
|
flex-shrink:0;
|
|
@@ -6421,48 +6577,51 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6421
6577
|
object-fit:cover;
|
|
6422
6578
|
}
|
|
6423
6579
|
.mobius-showcase__card{
|
|
6424
|
-
border-radius:var(--radius-2);
|
|
6425
|
-
box-shadow:0px 12px 24px 0px #00000029;
|
|
6426
|
-
display:flex;
|
|
6427
|
-
flex-direction:column;
|
|
6428
|
-
overflow:hidden;
|
|
6429
|
-
}
|
|
6430
|
-
@media screen and (min-width: 641px){
|
|
6431
|
-
.mobius-showcase__card{
|
|
6432
|
-
flex-direction:row;
|
|
6433
|
-
}
|
|
6434
|
-
}
|
|
6435
|
-
.mobius-showcase__group{
|
|
6436
6580
|
display:flex;
|
|
6437
6581
|
flex-direction:column;
|
|
6438
6582
|
gap:var(--size-lg);
|
|
6439
6583
|
margin:var(--size-lg) 0;
|
|
6584
|
+
flex:2.5;
|
|
6585
|
+
min-width:0;
|
|
6586
|
+
border-radius:var(--radius-2);
|
|
6587
|
+
box-shadow:0px 12px 24px 0px #00000029;
|
|
6588
|
+
overflow:hidden;
|
|
6589
|
+
}
|
|
6590
|
+
.mobius-showcase__title{
|
|
6591
|
+
margin-top:0;
|
|
6440
6592
|
}
|
|
6441
6593
|
@media screen and (min-width: 641px){
|
|
6442
|
-
.mobius-
|
|
6594
|
+
.mobius-showcase__card{
|
|
6443
6595
|
flex-direction:row;
|
|
6444
6596
|
margin:0;
|
|
6445
6597
|
}
|
|
6446
6598
|
}
|
|
6447
6599
|
.mobius-showcase__content{
|
|
6448
6600
|
order:1;
|
|
6449
|
-
padding:var(--size-
|
|
6601
|
+
padding:var(--size-md);
|
|
6450
6602
|
}
|
|
6451
6603
|
@media screen and (min-width: 641px){
|
|
6452
6604
|
.mobius-showcase__content{
|
|
6453
6605
|
order:unset;
|
|
6454
|
-
padding:
|
|
6455
|
-
padding-left:calc(var(--size-sm) + var(--title-decorator-width));
|
|
6606
|
+
padding:var(--size-lg) var(--size-md);
|
|
6456
6607
|
}
|
|
6457
6608
|
}
|
|
6458
6609
|
.mobius-showcase__heading{
|
|
6459
6610
|
display:block;
|
|
6611
|
+
margin-top:0;
|
|
6460
6612
|
margin-bottom:var(--size-xs);
|
|
6461
|
-
margin-top:var(--size-md);
|
|
6462
6613
|
color:var(--color-text);
|
|
6463
6614
|
font-weight:600;
|
|
6464
6615
|
text-transform:uppercase;
|
|
6465
6616
|
}
|
|
6617
|
+
.mobius-showcase__audience{
|
|
6618
|
+
margin-bottom:0;
|
|
6619
|
+
}
|
|
6620
|
+
.mobius-showcase__coverage, .mobius-showcase__audience{
|
|
6621
|
+
color:var(--color-text-medium);
|
|
6622
|
+
font-size:var(--font-size-3);
|
|
6623
|
+
line-height:1.5;
|
|
6624
|
+
}
|
|
6466
6625
|
.mobius-payment-summary__styled-div{
|
|
6467
6626
|
display:grid;
|
|
6468
6627
|
row-gap:var(--size-sm);
|
|
@@ -6751,7 +6910,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6751
6910
|
width:100%;
|
|
6752
6911
|
}
|
|
6753
6912
|
}
|
|
6754
|
-
.mobius-payment-summary__persistent-product-summary-div
|
|
6913
|
+
.mobius-payment-summary__persistent-product-summary-div > div{
|
|
6755
6914
|
margin-bottom:20px;
|
|
6756
6915
|
background-color:var(--color-background);
|
|
6757
6916
|
}
|
|
@@ -6996,6 +7155,36 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6996
7155
|
.mobius-quote-details-form__buy_button{
|
|
6997
7156
|
padding:10px 18px;
|
|
6998
7157
|
}
|
|
7158
|
+
.mobius-price-block{
|
|
7159
|
+
position:relative;
|
|
7160
|
+
padding-left:16px;
|
|
7161
|
+
}
|
|
7162
|
+
.mobius-price-block::before{
|
|
7163
|
+
content:"";
|
|
7164
|
+
position:absolute;
|
|
7165
|
+
left:0;
|
|
7166
|
+
top:0;
|
|
7167
|
+
bottom:0;
|
|
7168
|
+
width:4px;
|
|
7169
|
+
border-radius:999px;
|
|
7170
|
+
box-shadow:inset 4px 0 #ff6bd6;
|
|
7171
|
+
}
|
|
7172
|
+
.mobius-price-block__price{
|
|
7173
|
+
display:flex;
|
|
7174
|
+
align-items:baseline;
|
|
7175
|
+
gap:6px;
|
|
7176
|
+
}
|
|
7177
|
+
.mobius-price-block__prefix,
|
|
7178
|
+
.mobius-price-block__suffix{
|
|
7179
|
+
font-size:14px;
|
|
7180
|
+
color:#6b6b70;
|
|
7181
|
+
}
|
|
7182
|
+
.mobius-price-block__value{
|
|
7183
|
+
margin:0;
|
|
7184
|
+
font-size:34px;
|
|
7185
|
+
font-weight:600;
|
|
7186
|
+
color:#111118;
|
|
7187
|
+
}
|
|
6999
7188
|
.mobius-date-picker__container{
|
|
7000
7189
|
position:relative;
|
|
7001
7190
|
}
|
|
@@ -7628,37 +7817,6 @@ input[type="date"]::-webkit-datetime-edit-year-field{
|
|
|
7628
7817
|
display:block;
|
|
7629
7818
|
}
|
|
7630
7819
|
}
|
|
7631
|
-
.voucher-intervention{
|
|
7632
|
-
display:grid;
|
|
7633
|
-
grid-template:"icon . close" auto "text text text" auto "button button button" auto / auto 1fr auto;
|
|
7634
|
-
gap:var(--size-xs);
|
|
7635
|
-
align-items:start;
|
|
7636
|
-
width:100%;
|
|
7637
|
-
}
|
|
7638
|
-
.voucher-intervention__icon{
|
|
7639
|
-
grid-area:icon;
|
|
7640
|
-
color:var(--color-accent);
|
|
7641
|
-
margin-top:var(--size-xs);
|
|
7642
|
-
}
|
|
7643
|
-
.voucher-intervention__button{
|
|
7644
|
-
grid-area:button;
|
|
7645
|
-
}
|
|
7646
|
-
@media (min-width: 768px){
|
|
7647
|
-
.voucher-intervention{
|
|
7648
|
-
grid-template:"icon text button close" auto / auto 1fr auto auto;
|
|
7649
|
-
align-items:center;
|
|
7650
|
-
gap:var(--size-sm);
|
|
7651
|
-
}
|
|
7652
|
-
|
|
7653
|
-
.voucher-intervention__icon{
|
|
7654
|
-
align-self:center;
|
|
7655
|
-
margin-top:0;
|
|
7656
|
-
}
|
|
7657
|
-
|
|
7658
|
-
.voucher-intervention__button{
|
|
7659
|
-
min-width:238px;
|
|
7660
|
-
}
|
|
7661
|
-
}
|
|
7662
7820
|
.live-chat__text{
|
|
7663
7821
|
display:grid;
|
|
7664
7822
|
grid-template-columns:auto 1fr;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.11.1",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,15 +26,15 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^6.9.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^2.2.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^7.3.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^3.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^11.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.14.
|
|
29
|
+
"@simplybusiness/mobius": "^6.9.5",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^2.2.6",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^7.3.6",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^3.4.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^11.22.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.14.8"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"build-scripts": "^1.0
|
|
37
|
+
"build-scripts": "^1.1.0",
|
|
38
38
|
"react": "^19.2.1",
|
|
39
39
|
"react-dom": "^19.2.1"
|
|
40
40
|
}
|
package/src/index.css
CHANGED
|
@@ -75,6 +75,7 @@
|
|
|
75
75
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Upsells/Upsells.css";
|
|
76
76
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCard/Ratings/Ratings.css";
|
|
77
77
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/QuoteCards.css";
|
|
78
|
+
@import "@simplybusiness/mobius-journey/src/components/Recommendations/Recommendations.css";
|
|
78
79
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/Section/Section.css";
|
|
79
80
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/Unquotable/Unquotable.css";
|
|
80
81
|
@import "@simplybusiness/mobius-journey/src/components/QuoteHelp/QuoteHelp.css";
|
|
@@ -97,6 +98,7 @@
|
|
|
97
98
|
@import "@simplybusiness/mobius-journey/src/components/shared/DialogueModal/DialogueModal.css";
|
|
98
99
|
@import "@simplybusiness/mobius-journey/src/components/shared/TransferConsentPageUK/styles.css";
|
|
99
100
|
@import "@simplybusiness/mobius-journey/src/components/shared/QuoteDetailsForm/styles.css";
|
|
101
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/PriceBlock/PriceBlock.css";
|
|
100
102
|
|
|
101
103
|
/* @simplybusiness/mobius-datepicker */
|
|
102
104
|
@import "@simplybusiness/mobius-datepicker/src/components/DatePicker/DatePicker.css";
|