@simplybusiness/theme-simplybusiness 2.13.20 → 2.15.0

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 CHANGED
@@ -1,5 +1,78 @@
1
1
  # @simplybusiness/theme-simplybusiness
2
2
 
3
+ ## 2.15.0
4
+
5
+ ### Minor Changes
6
+
7
+ - a6aa202: Cleanup grid view experiment
8
+
9
+ ### Patch Changes
10
+
11
+ - 966f623: Add post-quote components infrastructure (Phase 1)
12
+
13
+ Create folder structure for migrating post-quote components from shared/ to a dedicated post-quote directory with proper standards compliance. This is Phase 1 of the post-quote components migration plan.
14
+
15
+ - Updated dependencies [56e7eeb]
16
+ - Updated dependencies [7ac6357]
17
+ - Updated dependencies [a6aa202]
18
+ - Updated dependencies [2810034]
19
+ - Updated dependencies [044d0c3]
20
+ - Updated dependencies [5a3d1f3]
21
+ - Updated dependencies [b4358f0]
22
+ - Updated dependencies [1860551]
23
+ - Updated dependencies [86fda87]
24
+ - Updated dependencies [4f23f48]
25
+ - Updated dependencies [b6ac85a]
26
+ - Updated dependencies [966f623]
27
+ - Updated dependencies [41b5a85]
28
+ - Updated dependencies [41b5a85]
29
+ - Updated dependencies [6f293c7]
30
+ - Updated dependencies [45ddf19]
31
+ - @simplybusiness/mobius-journey@11.49.0
32
+ - @simplybusiness/mobius@7.1.0
33
+ - @simplybusiness/mobius-chatbot@2.2.21
34
+ - @simplybusiness/mobius-datepicker@8.0.1
35
+ - @simplybusiness/mobius-interventions@3.15.1
36
+ - @simplybusiness/theme-core@7.14.23
37
+
38
+ ## 2.14.2
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies [e96714f]
43
+ - @simplybusiness/mobius-journey@11.48.2
44
+
45
+ ## 2.14.1
46
+
47
+ ### Patch Changes
48
+
49
+ - Updated dependencies [752b823]
50
+ - Updated dependencies [4142c8a]
51
+ - @simplybusiness/mobius-interventions@3.15.0
52
+ - @simplybusiness/mobius-journey@11.48.1
53
+
54
+ ## 2.14.0
55
+
56
+ ### Minor Changes
57
+
58
+ - 823b20c: Removed UnderwriterLegalAgreements component
59
+
60
+ ### Patch Changes
61
+
62
+ - Updated dependencies [92307ee]
63
+ - Updated dependencies [823b20c]
64
+ - @simplybusiness/mobius-journey@11.48.0
65
+
66
+ ## 2.13.21
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [b8f0960]
71
+ - Updated dependencies [c2fb230]
72
+ - @simplybusiness/mobius-interventions@3.14.0
73
+ - @simplybusiness/mobius-journey@11.47.0
74
+ - @simplybusiness/mobius-chatbot@2.2.20
75
+
3
76
  ## 2.13.20
4
77
 
5
78
  ### Patch Changes
package/dist/index.css CHANGED
@@ -2130,6 +2130,187 @@ h6.mobius-accordion__link-text,
2130
2130
  left:0;
2131
2131
  background-color:var(--color-primary);
2132
2132
  }
2133
+ [data-sonner-toaster]{
2134
+ font-family:var(--font-family);
2135
+ }
2136
+ .mobius-toast{
2137
+ position:relative;
2138
+ font-family:var(--font-family);
2139
+ font-size:var(--font-size-regular);
2140
+ line-height:var(--line-height-normal);
2141
+ color:var(--color-text);
2142
+ background-color:var(--color-background);
2143
+ border:2px solid var(--color-border);
2144
+ border-radius:var(--radius-1);
2145
+ box-shadow:var(--shadow-md);
2146
+ padding:var(--size-md);
2147
+ display:flex;
2148
+ align-items:flex-start;
2149
+ gap:var(--size-sm);
2150
+ width:var(--toast-width);
2151
+ max-width:calc(100vw - var(--size-lg) * 2);
2152
+ box-sizing:border-box;
2153
+ }
2154
+ .mobius-toast.--info{
2155
+ border-color:var(--color-info);
2156
+ background-color:var(--color-info-background);
2157
+ }
2158
+ .mobius-toast.--success{
2159
+ border-color:var(--color-valid);
2160
+ background-color:var(--color-valid-background);
2161
+ }
2162
+ .mobius-toast.--warning{
2163
+ border-color:var(--color-warning);
2164
+ background-color:var(--color-warning-background);
2165
+ }
2166
+ .mobius-toast.--error{
2167
+ border-color:var(--color-error);
2168
+ background-color:var(--color-error-background);
2169
+ }
2170
+ .mobius-toast__icon{
2171
+ flex-shrink:0;
2172
+ display:flex;
2173
+ align-items:center;
2174
+ padding-top:2px;
2175
+ }
2176
+ .mobius-toast__icon .mobius-icon{
2177
+ width:1.25em;
2178
+ height:1.25em;
2179
+ }
2180
+ .mobius-toast__body{
2181
+ display:flex;
2182
+ flex-direction:column;
2183
+ gap:var(--size-sm);
2184
+ flex:1;
2185
+ min-width:0;
2186
+ padding-right:var(--size-lg);
2187
+ }
2188
+ .mobius-toast__content{
2189
+ display:flex;
2190
+ flex-direction:column;
2191
+ gap:var(--size-xxs);
2192
+ }
2193
+ .mobius-toast__title{
2194
+ font-size:var(--font-size-regular);
2195
+ font-weight:600;
2196
+ line-height:var(--line-height-normal);
2197
+ color:var(--color-text);
2198
+ margin:0;
2199
+ }
2200
+ .mobius-toast__description{
2201
+ font-size:var(--font-size-regular);
2202
+ line-height:var(--line-height-normal);
2203
+ color:var(--color-text);
2204
+ margin:0;
2205
+ }
2206
+ .mobius-toast__actions{
2207
+ display:flex;
2208
+ justify-content:flex-end;
2209
+ gap:var(--size-xs);
2210
+ flex-wrap:wrap;
2211
+ }
2212
+ .mobius-toast__action,
2213
+ .mobius-toast__cancel{
2214
+ font-family:var(--font-family);
2215
+ font-size:var(--font-size-small);
2216
+ font-weight:600;
2217
+ padding:var(--size-xs) var(--size-sm);
2218
+ border-radius:var(--radius-1);
2219
+ cursor:pointer;
2220
+ transition:background-color 0.15s ease;
2221
+ flex-shrink:0;
2222
+ display:inline-flex;
2223
+ align-items:center;
2224
+ justify-content:center;
2225
+ }
2226
+ .mobius-toast__action{
2227
+ background-color:var(--button-primary-color);
2228
+ color:var(--button-primary-content-color);
2229
+ border:none;
2230
+ }
2231
+ .mobius-toast__action:hover{
2232
+ filter:brightness(0.9);
2233
+ }
2234
+ .mobius-toast.--info .mobius-toast__action{
2235
+ background-color:var(--color-info);
2236
+ }
2237
+ .mobius-toast.--success .mobius-toast__action{
2238
+ background-color:var(--color-valid);
2239
+ }
2240
+ .mobius-toast.--warning .mobius-toast__action{
2241
+ background-color:var(--color-warning);
2242
+ }
2243
+ .mobius-toast.--error .mobius-toast__action{
2244
+ background-color:var(--color-error);
2245
+ }
2246
+ .mobius-toast__cancel{
2247
+ background-color:transparent;
2248
+ color:var(--color-text);
2249
+ border:1px solid var(--color-border);
2250
+ }
2251
+ .mobius-toast__cancel:hover{
2252
+ background-color:var(--color-background-hover);
2253
+ }
2254
+ .mobius-toast.--info .mobius-toast__cancel{
2255
+ border-color:var(--color-info);
2256
+ color:var(--color-info);
2257
+ }
2258
+ .mobius-toast.--success .mobius-toast__cancel{
2259
+ border-color:var(--color-valid);
2260
+ color:var(--color-valid);
2261
+ }
2262
+ .mobius-toast.--warning .mobius-toast__cancel{
2263
+ border-color:var(--color-warning);
2264
+ color:var(--color-warning);
2265
+ }
2266
+ .mobius-toast.--error .mobius-toast__cancel{
2267
+ border-color:var(--color-error);
2268
+ color:var(--color-error);
2269
+ }
2270
+ .mobius-toast__close{
2271
+ position:absolute;
2272
+ top:var(--size-md);
2273
+ right:var(--size-sm);
2274
+ background:transparent;
2275
+ border:none;
2276
+ border-radius:var(--radius-1);
2277
+ cursor:pointer;
2278
+ padding:var(--size-xxs);
2279
+ width:var(--size-md);
2280
+ height:var(--size-md);
2281
+ display:flex;
2282
+ align-items:center;
2283
+ justify-content:center;
2284
+ color:var(--color-text-muted);
2285
+ transition:color 0.15s ease;
2286
+ }
2287
+ .mobius-toast__close:hover{
2288
+ color:var(--color-text);
2289
+ }
2290
+ .mobius-toast__close-icon{
2291
+ display:flex;
2292
+ align-items:center;
2293
+ justify-content:center;
2294
+ }
2295
+ .mobius-toast__close-icon .mobius-icon{
2296
+ width:1.25em;
2297
+ height:1.25em;
2298
+ }
2299
+ .mobius-toast.--info .mobius-toast__close{
2300
+ color:var(--color-info);
2301
+ }
2302
+ .mobius-toast.--success .mobius-toast__close{
2303
+ color:var(--color-valid);
2304
+ }
2305
+ .mobius-toast.--warning .mobius-toast__close{
2306
+ color:var(--color-warning);
2307
+ }
2308
+ .mobius-toast.--error .mobius-toast__close{
2309
+ color:var(--color-error);
2310
+ }
2311
+ .mobius-toast .mobius-toast__close:hover{
2312
+ filter:brightness(0.8);
2313
+ }
2133
2314
  .mobius-expandable-text__content--collapsed{
2134
2315
  display:-webkit-box;
2135
2316
  -webkit-line-clamp:var(--line-clamp, 3);
@@ -2684,6 +2865,7 @@ svg:not(:host).svg-inline--mobius-icon{
2684
2865
  --popover-z-index:2147483647;
2685
2866
  --color-background-popover:var(--color-azure-700);
2686
2867
  --color-text-popover:#fff;
2868
+ --toast-width:450px;
2687
2869
  --slider-primary-track-background:var(--color-primary-lighter);
2688
2870
  --slider-primary-thumb-background:var(--color-primary);
2689
2871
  --slider-secondary-track-background:var(--color-accent-lighter);
@@ -2920,62 +3102,6 @@ svg:not(:host).svg-inline--mobius-icon{
2920
3102
  grid-template-columns:1fr auto;
2921
3103
  }
2922
3104
  }
2923
- .mobius-layout-toggle{
2924
- display:none;
2925
- width:100%;
2926
- }
2927
- .mobius-cover-toggles-container__extra-toggles{
2928
- box-sizing:border-box;
2929
- display:grid;
2930
- grid-template-columns:1fr;
2931
- align-items:center;
2932
- }
2933
- @media (min-width: 850px){
2934
- .mobius-layout-toggle{
2935
- display:grid;
2936
- width:unset;
2937
- grid-template-columns:repeat(3, min-content);
2938
- height:100%;
2939
- align-items:center;
2940
- gap:var(--size-sm);
2941
- }
2942
-
2943
- .mobius-cover-toggles-container__extra-toggles{
2944
- grid-template-columns:repeat(2, 1fr);
2945
- }
2946
- }
2947
- .mobius-layout-toggle__divider{
2948
- height:var(--size-lg);
2949
- width:1px;
2950
- box-shadow:-1px 0 0 0 var(--color-primary);
2951
- }
2952
- .mobius-layout-toggle__item{
2953
- display:grid;
2954
- grid-template-columns:2fr 1fr;
2955
- gap:var(--size-sm);
2956
- align-items:center;
2957
- padding:0;
2958
- border:0;
2959
- -webkit-text-decoration:none;
2960
- text-decoration:none;
2961
- }
2962
- .mobius-layout-toggle__item .mobius-text{
2963
- margin:0;
2964
- text-wrap:nowrap;
2965
- transition:color var(--transition-standard);
2966
- }
2967
- .mobius-layout-toggle__item .mobius-icon{
2968
- opacity:0.2;
2969
- transition:opacity var(--transition-standard);
2970
- }
2971
- .mobius-layout-toggle__item--active .mobius-text{
2972
- color:var(--color-primary);
2973
- -webkit-text-decoration:underline;
2974
- text-decoration:underline;
2975
- }
2976
- .mobius-layout-toggle__item--active .mobius-icon{
2977
- opacity:1;
2978
- }
2979
3105
  .error-boundary__container{
2980
3106
  display:flex;
2981
3107
  flex-direction:column;
@@ -4079,12 +4205,19 @@ svg:not(:host).svg-inline--mobius-icon{
4079
4205
  }
4080
4206
  }
4081
4207
  .mobius-insurers{
4208
+ display:flex;
4209
+ flex-wrap:wrap;
4210
+ align-items:center;
4211
+ justify-content:space-between;
4082
4212
  margin-top:var(--size-lg);
4083
4213
  margin-bottom:var(--size-lg);
4084
4214
  overflow-y:hidden;
4085
4215
  height:40px;
4086
4216
  column-gap:26px;
4087
4217
  }
4218
+ .mobius-insurers.mobius-insurers--contractors_combined{
4219
+ justify-content:flex-start;
4220
+ }
4088
4221
  .mobius-insurers > div{
4089
4222
  background-position:left center;
4090
4223
  background-repeat:no-repeat;
@@ -4160,6 +4293,10 @@ svg:not(:host).svg-inline--mobius-icon{
4160
4293
  background-image:url(data:image/webp;base64,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);
4161
4294
  width:var(--size-xxl);
4162
4295
  }
4296
+ .mobius-insurers__insurer--qbe{
4297
+ background-image:url(data:image/webp;base64,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);
4298
+ width:62px;
4299
+ }
4163
4300
  .mobius-section__personalised-cover-group{
4164
4301
  border:2px solid var(--color-border-medium);
4165
4302
  border-radius:var(--radius-1);
@@ -4389,6 +4526,7 @@ svg:not(:host).svg-inline--mobius-icon{
4389
4526
  margin-bottom:var(--size-xxl);
4390
4527
  }
4391
4528
  .mobius-section__postamble{
4529
+ max-width:var(--section-max-width);
4392
4530
  color:var(--color-text-medium);
4393
4531
  }
4394
4532
  .mobius-section__postamble a{
@@ -4432,133 +4570,6 @@ svg:not(:host).svg-inline--mobius-icon{
4432
4570
  width:100%;
4433
4571
  height:auto;
4434
4572
  }
4435
- .mobius-quote-cards__grid.--is-treatment{
4436
- margin-bottom:unset;
4437
- }
4438
- @media(min-width: 850px){
4439
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card{
4440
- grid-template-areas:"header" "pricing" "actions" "coverage";
4441
- grid-template-columns:1fr;
4442
- grid-auto-rows:auto;
4443
- grid-template-rows:subgrid;
4444
- grid-row:span 4;
4445
- padding:16px 16px 32px;
4446
- gap:unset;
4447
- }
4448
- }
4449
- @media(min-width: 850px){
4450
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__coverage{
4451
- border-top:none;
4452
- padding-top:0;
4453
- margin-bottom:0;
4454
- }
4455
-
4456
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__coverage .mobius-accordion__link{
4457
- align-self:center;
4458
- }
4459
-
4460
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__coverage .mobius-quote-card__coverage-items{
4461
- display:grid;
4462
- grid-template-columns:auto 1fr auto;
4463
- }
4464
-
4465
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__coverage .mobius-quote-card__coverage-item{
4466
- display:grid;
4467
- grid-template-columns:subgrid;
4468
- grid-column:1 / -1;
4469
- align-items:center;
4470
- gap:var(--size-sm);
4471
- }
4472
-
4473
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__coverage .mobius-quote-card__coverage-item-excess-link{
4474
- font-size:var(--font-size-small-print);
4475
- text-wrap:nowrap;
4476
- }
4477
- }
4478
- @media(min-width: 850px){
4479
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__header{
4480
- border-bottom:1px solid var(--color-border-light);
4481
- border-right:none;
4482
- margin-bottom:0;
4483
- padding-bottom:16px;
4484
- padding-right:0;
4485
- align-items:center;
4486
- gap:var(--size-xs);
4487
- }
4488
-
4489
- .mobius-quote-cards__grid.--is-grid .header__underwriter-text{
4490
- margin-top:0;
4491
- margin-bottom:0;
4492
- }
4493
-
4494
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__header-logo{
4495
- object-position:center;
4496
- max-height:var(--size-xxl);
4497
- }
4498
- }
4499
- @media(min-width: 850px){
4500
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__pricing-flex{
4501
- flex-direction:column;
4502
- }
4503
-
4504
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__pricing-primary-amount{
4505
- font-weight:var(--font-weight-normal);
4506
- }
4507
-
4508
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__badges.--is-uk.--is-desktop{
4509
- display:none;
4510
- }
4511
-
4512
- .mobius-quote-cards__grid.--is-grid .mobius-quote-card__badges.--is-mobile{
4513
- display:flex;
4514
- margin-bottom:0;
4515
- }
4516
- }
4517
- @media(min-width: 850px){
4518
- .mobius-quote-cards__grid.--is-grid .mobius-quote-actions{
4519
- gap:var(--size-xs) !important;
4520
- }
4521
-
4522
- .mobius-quote-cards__grid.--is-grid .mobius-quote-actions .mobius-quote-actions__button{
4523
- margin-top:0;
4524
- }
4525
- }
4526
- .partial-quotes-referral__container{
4527
- display:grid;
4528
- grid-row:span 4;
4529
- height:100%;
4530
- }
4531
- .partial-quotes-referral__container--grid .partial-quotes-referral__insurer-panel{
4532
- display:grid;
4533
- grid-template-columns:repeat(3, 1fr);
4534
- }
4535
- .partial-quotes-referral-logo{
4536
- object-position:center;
4537
- }
4538
- @media (min-width: 850px){
4539
- .partial-quotes-referral__container--grid .partial-quotes-referral__main{
4540
- grid-template-columns:unset;
4541
- }
4542
- .partial-quotes-referral__container--banner .partial-quotes-referral__main{
4543
- grid-template-columns:2fr 3fr;
4544
- }
4545
- .partial-quotes-referral__container-variant-b .partial-quotes-referral__main{
4546
- grid-template-columns:none;
4547
- }
4548
- .partial-quotes-referral__insurer-panel{
4549
- grid-template-columns:repeat(5, minmax(75px, 1fr));
4550
- justify-content:center;
4551
- align-content:space-around;
4552
- }
4553
- .partial-quotes-referral__container--grid .partial-quotes-referral__insurer-panel{
4554
- grid-template-columns:repeat(3, minmax(75px, 1fr));
4555
- gap:var(--size-xs);
4556
- }
4557
- .partial-quotes-referral-logo{
4558
- width:75px;
4559
- height:25px;
4560
- }
4561
- }
4562
4573
  .mobius-no-quotes-card{
4563
4574
  margin:0;
4564
4575
  border:1px solid var(--color-border);
@@ -6195,207 +6206,6 @@ svg:not(:host).svg-inline--mobius-icon{
6195
6206
  justify-content:flex-start;
6196
6207
  }
6197
6208
  }
6198
- .mobius-underwriter-legal-agreements{
6199
- display:grid;
6200
- gap:var(--size-sm) var(--size-xl);
6201
- margin-bottom:var(--size-lg);
6202
- }
6203
- @media (min-width: 960px){
6204
- .mobius-underwriter-legal-agreements{
6205
- grid-template-columns:1fr max-content;
6206
- grid-template-areas:"referralText trustSection" "nextCoverage trustSection";
6207
- row-gap:0;
6208
- }
6209
- }
6210
- .mobius-cross-sell{
6211
- grid-template-areas:"referralText" "coverageSummary" "nextCoverage" "trustSection";
6212
- }
6213
- @media (min-width: 960px){
6214
- .mobius-cross-sell{
6215
- grid-template-columns:2fr 1.25fr;
6216
- grid-template-areas:"referralText coverageSummary" "nextCoverage coverageSummary" "nextCoverage coverageSummary" "nextCoverage trustSection";
6217
- }
6218
- }
6219
- .mobius-trust-section{
6220
- grid-area:trustSection;
6221
- }
6222
- .mobius-next-coverage{
6223
- grid-area:nextCoverage;
6224
- }
6225
- .mobius-referral__text{
6226
- grid-area:referralText;
6227
- }
6228
- .mobius-coverage-summary{
6229
- grid-area:1 / 2;
6230
- }
6231
- .mobius-underwriter-legal-agreements__sms-button{
6232
- display:flex;
6233
- justify-content:center;
6234
- margin:0 auto;
6235
- margin-bottom:var(--size-md);
6236
- }
6237
- .mobius-underwriter-legal-agreements__sms-message{
6238
- display:flex;
6239
- justify-content:center;
6240
- flex-direction:row;
6241
- padding:var(--size-md);
6242
- margin:var(--size-md) 0;
6243
- font-size:var(--font-size-regular);
6244
- background-color:var(--color-valid-background);
6245
- }
6246
- .mobius-underwriter-legal-agreements__sms-message.--is-invalid{
6247
- background-color:var(--color-error-background);
6248
- }
6249
- .mobius-checkout-buttons{
6250
- margin-top:var(--size-md);
6251
- display:flex;
6252
- justify-content:space-between;
6253
- gap:var(--size-lg);
6254
- }
6255
- @media (min-width: 960px){
6256
- .mobius-checkout-buttons{
6257
- justify-content:flex-start;
6258
- }
6259
- }
6260
- .mobius-underwriter-legal-agreements__agreement-content{
6261
- color:var(--color-text-medium);
6262
- }
6263
- .mobius-underwriter-legal-agreements__agreement-content :is(h1, h2, h3, h4, h5, h6){
6264
- color:var(--color-text);
6265
- margin-top:0;
6266
- margin-bottom:15px;
6267
- }
6268
- .mobius-underwriter-legal-agreements__agreement-content h1,
6269
- .mobius-underwriter-legal-agreements__agreement-content h2,
6270
- .mobius-underwriter-legal-agreements__agreement-content h3{
6271
- text-align:center;
6272
- }
6273
- .mobius-underwriter-legal-agreements__agreement-content .client_information{
6274
- margin-top:10px;
6275
- margin-bottom:10px;
6276
- }
6277
- .mobius-underwriter-legal-agreements__agreement-content .client_information p{
6278
- margin:1px;
6279
- }
6280
- .mobius-underwriter-legal-agreements__agreement-content .signature_block{
6281
- margin-top:10px;
6282
- margin-bottom:10px;
6283
- }
6284
- .mobius-underwriter-legal-agreements__agreement-content .signature_block p,
6285
- .mobius-underwriter-legal-agreements__agreement-content .signature_block h4{
6286
- margin:1px;
6287
- }
6288
- .mobius-underwriter-legal-agreements__agreement-content .signature{
6289
- width:200px;
6290
- height:auto;
6291
- font-size:var(--font-size-regular);
6292
- }
6293
- .mobius-underwriter-legal-agreements__bullet-list{
6294
- margin:0;
6295
- padding-left:20px;
6296
- list-style:none;
6297
- }
6298
- .mobius-underwriter-legal-agreements__carrier-title{
6299
- font-size:24px;
6300
- font-weight:600;
6301
- margin-bottom:20px;
6302
- color:var(--color-text);
6303
- }
6304
- .mobius-underwriter-legal-agreements__checkbox{
6305
- display:none;
6306
- }
6307
- .mobius-underwriter-legal-agreements__checkbox-container{
6308
- border:1px solid var(--color-border);
6309
- border-radius:10px;
6310
- margin-bottom:30px;
6311
- display:flex;
6312
- align-items:flex-start;
6313
- gap:15px;
6314
- padding:25px 25px 25px 15px;
6315
- }
6316
- .mobius-underwriter-legal-agreements__checkbox-label{
6317
- color:var(--color-text-medium);
6318
- cursor:pointer;
6319
- flex:1;
6320
- }
6321
- .mobius-underwriter-legal-agreements__form-actions{
6322
- margin-top:80px;
6323
- display:flex;
6324
- justify-content:space-between;
6325
- align-items:center;
6326
- }
6327
- .mobius-underwriter-legal-agreements__main-checkbox{
6328
- display:none;
6329
- }
6330
- .mobius-underwriter-legal-agreements__legal-agreements-column{
6331
- flex:1;
6332
- min-width:0;
6333
- }
6334
- .mobius-underwriter-legal-agreements__page-container{
6335
- margin:0 auto;
6336
- padding:20px;
6337
- font-family:Arial, sans-serif;
6338
- line-height:1.6;
6339
- display:flex;
6340
- gap:40px;
6341
- }
6342
- @media (max-width: 768px){
6343
- .mobius-underwriter-legal-agreements__page-container{
6344
- flex-direction:column;
6345
- gap:20px;
6346
- }
6347
- }
6348
- .mobius-text.mobius-underwriter-legal-agreements__page-title{
6349
- padding-left:20px;
6350
- }
6351
- .mobius-underwriter-legal-agreements__price-summary-column{
6352
- width:340px;
6353
- flex-shrink:0;
6354
- }
6355
- @media (max-width: 768px){
6356
- .mobius-underwriter-legal-agreements__price-summary-column{
6357
- width:100%;
6358
- }
6359
- }
6360
- .mobius-underwriter-legal-agreements__section-title{
6361
- font-size:20px;
6362
- font-weight:600;
6363
- margin-top:10px;
6364
- margin-bottom:10px;
6365
- color:var(--color-text);
6366
- }
6367
- .mobius-underwriter-legal-agreements__styled-checkbox{
6368
- height:25px;
6369
- width:25px;
6370
- border:2px solid var(--color-border);
6371
- background-color:var(--color-background);
6372
- display:inline-block;
6373
- position:relative;
6374
- cursor:pointer;
6375
- border-radius:3px;
6376
- border-color:var(--color-primary-light);
6377
- }
6378
- .mobius-underwriter-legal-agreements__styled-checkbox.checked{
6379
- background-color:var(--color-primary);
6380
- border-color:var(--color-primary);
6381
- }
6382
- .mobius-underwriter-legal-agreements__styled-checkbox::after{
6383
- content:"";
6384
- position:absolute;
6385
- top:2.5px;
6386
- left:7.7px;
6387
- width:6px;
6388
- height:12px;
6389
- border:none;
6390
- border-width:0 4px 4px 0;
6391
- transform:rotate(45deg);
6392
- opacity:0;
6393
- }
6394
- .mobius-underwriter-legal-agreements__styled-checkbox.checked::after{
6395
- border:solid var(--color-text-inverted);
6396
- border-width:0 4px 4px 0;
6397
- opacity:1;
6398
- }
6399
6209
  .mobius-trust-section__header{
6400
6210
  border-bottom-right-radius:0;
6401
6211
  border-bottom-left-radius:0;
@@ -6559,7 +6369,7 @@ svg:not(:host).svg-inline--mobius-icon{
6559
6369
  .mobius-payment-toggle:active,.mobius-payment-toggle:hover,.mobius-payment-toggle:focus-visible{
6560
6370
  border-color:var(--color-primary-hover);
6561
6371
  }
6562
- :is(.mobius-payment-toggle:active,.mobius-payment-toggle:hover,.mobius-payment-toggle:focus-visible) .mobius-payment-toggle__text.--yearly{
6372
+ :is(.mobius-payment-toggle:active,.mobius-payment-toggle:hover,.mobius-payment-toggle:focus-visible):not(.--is-toggled) .mobius-payment-toggle__text.--yearly{
6563
6373
  color:var(--color-primary-hover);
6564
6374
  }
6565
6375
  :is(.mobius-payment-toggle:active,.mobius-payment-toggle:hover,.mobius-payment-toggle:focus-visible) .mobius-payment-toggle__slider{
@@ -8491,62 +8301,65 @@ input[type="date"]::-webkit-datetime-edit-year-field{
8491
8301
  display:block;
8492
8302
  }
8493
8303
  }
8494
- .live-chat__text{
8304
+ .live-chat .sticky__content{
8495
8305
  display:grid;
8496
- grid-template-columns:auto 1fr;
8497
- align-items:center;
8498
- color:var(--color-secondary);
8306
+ grid-template-columns:1fr auto auto;
8307
+ gap:var(--size-sm);
8499
8308
  }
8500
- .live-chat .sticky__content{
8501
- grid-template-columns:auto 1fr auto;
8309
+ .live-chat .sticky-footer__text{
8310
+ grid-column:1;
8311
+ grid-row:1;
8312
+ color:var(--color-secondary);
8313
+ text-align:center;
8502
8314
  }
8503
- .live-chat button{
8315
+ .live-chat-intervention__button{
8504
8316
  --button-content-color:var(--color-text-inverted);
8505
8317
 
8506
8318
  background:var(--button-secondary-hover-color);
8507
8319
  border-color:var(--button-secondary-hover-color);
8508
8320
  border-radius:19px;
8321
+ white-space:nowrap;
8509
8322
  }
8510
- .live-chat button:hover{
8323
+ .live-chat-intervention__button:hover{
8511
8324
  --button-content-color:var(--button-secondary-hover-color);
8512
8325
 
8513
8326
  background:var(--color-text-inverted);
8514
8327
  border-color:var(--button-secondary-color);
8515
8328
  }
8516
- @media (max-width: 768px){
8517
- .sticky__footer{
8518
- grid-template-columns:1fr;
8519
- align-items:flex-start;
8520
- }
8521
-
8329
+ .live-chat__close-button{
8330
+ background:none;
8331
+ border:none;
8332
+ cursor:pointer;
8333
+ padding:var(--size-xs);
8334
+ color:var(--color-secondary);
8335
+ display:flex;
8336
+ align-items:center;
8337
+ justify-content:center;
8338
+ }
8339
+ .live-chat__close-button:hover{
8340
+ color:var(--color-secondary-hover);
8341
+ }
8342
+ @media (max-width: 640px){
8522
8343
  .live-chat .sticky__content{
8523
8344
  grid-template-columns:1fr;
8524
- gap:var(--size-xs);
8525
- align-items:flex-start;
8526
- }
8527
-
8528
- .live-chat__text{
8529
- grid-template-columns:1fr;
8530
- gap:var(--size-xs);
8531
- align-items:flex-start;
8345
+ grid-template-rows:auto auto auto;
8532
8346
  }
8533
8347
 
8534
- .live-chat__images{
8535
- grid-auto-flow:row;
8536
- gap:var(--size-xs);
8348
+ .live-chat .sticky-footer__text{
8349
+ grid-column:1;
8350
+ grid-row:2;
8537
8351
  }
8538
8352
 
8539
- .live-chat__image{
8540
- max-height:var(--size-lg);
8541
- max-width:110px;
8542
- width:auto;
8353
+ .live-chat .live-chat-intervention__button{
8354
+ grid-column:1;
8355
+ grid-row:3;
8543
8356
  }
8544
8357
 
8545
- .live-chat__text-container{
8546
- display:grid;
8547
- grid-template-columns:1fr auto;
8548
- align-items:center;
8549
- width:100%;
8358
+ .live-chat .live-chat__close-button{
8359
+ grid-column:1;
8360
+ grid-row:1;
8361
+ padding:0;
8362
+ justify-self:end;
8550
8363
  }
8551
8364
  }
8552
8365
  .sticky-footer__close-button{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-simplybusiness",
3
- "version": "2.13.20",
3
+ "version": "2.15.0",
4
4
  "main": "dist/index.css",
5
5
  "simplyBusiness": {
6
6
  "publishToPublicNpm": true
@@ -28,12 +28,12 @@
28
28
  "./fonts": "./dist/fonts.css"
29
29
  },
30
30
  "dependencies": {
31
- "@simplybusiness/mobius": "^7.0.0",
32
- "@simplybusiness/mobius-chatbot": "^2.2.19",
33
- "@simplybusiness/mobius-datepicker": "^8.0.0",
34
- "@simplybusiness/mobius-interventions": "^3.13.0",
35
- "@simplybusiness/mobius-journey": "^11.46.0",
36
- "@simplybusiness/theme-core": "^7.14.22"
31
+ "@simplybusiness/mobius": "^7.1.0",
32
+ "@simplybusiness/mobius-chatbot": "^2.2.21",
33
+ "@simplybusiness/mobius-datepicker": "^8.0.1",
34
+ "@simplybusiness/mobius-interventions": "^3.15.1",
35
+ "@simplybusiness/mobius-journey": "^11.49.0",
36
+ "@simplybusiness/theme-core": "^7.14.23"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@simplybusiness/build-scripts": "^1.2.2",
package/src/index.css CHANGED
@@ -10,7 +10,6 @@
10
10
  @import "@simplybusiness/mobius-journey/src/components/CoverageSummary/PaymentSummary/PaymentSummary.css";
11
11
  @import "@simplybusiness/mobius-journey/src/components/CoverageSummary/QuoteSummary/QuoteSummary.css";
12
12
  @import "@simplybusiness/mobius-journey/src/components/CoverTogglesContainer/CoverTogglesContainer.css";
13
- @import "@simplybusiness/mobius-journey/src/components/CoverTogglesContainer/ExperimentGridView/LayoutToggle/LayoutToggle.css";
14
13
  @import "@simplybusiness/mobius-journey/src/components/ErrorBoundary/ErrorBoundary.css";
15
14
  @import "@simplybusiness/mobius-journey/src/components/Footer/Footer.css";
16
15
  @import "@simplybusiness/mobius-journey/src/components/Footer/MoneySuperMarketFooter/Footer.css";
@@ -44,13 +43,6 @@
44
43
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Question/QuestionFactory/questions/PercentageQuestion/PercentageQuestion.css";
45
44
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/Section/Section.css";
46
45
  @import "@simplybusiness/mobius-journey/src/components/Questionnaire/SecurityLocks/SecurityLocks.css";
47
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCards.css";
48
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/QuoteCard.css";
49
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/Coverage/Coverage.css";
50
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/Header/Header.css";
51
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/PricingUK/Pricing.css";
52
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/QuoteActions/QuoteActions.css";
53
- @import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/PartialQuotesReferral/PartialQuotesReferral.css";
54
46
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesCard/NoQuotesCard.css";
55
47
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
56
48
  @import "@simplybusiness/mobius-journey/src/components/QuoteCards/PartialQuotesReferral/PartialQuotesReferral.css";
@@ -83,7 +75,6 @@
83
75
  @import "@simplybusiness/mobius-journey/src/components/QuoteHelp/QuoteHelp.css";
84
76
  @import "@simplybusiness/mobius-journey/src/components/SpecialistReferralContent/SpecialistReferralContent.css";
85
77
  @import "@simplybusiness/mobius-journey/src/components/Referral/Referral.css";
86
- @import "@simplybusiness/mobius-journey/src/components/UnderwriterLegalAgreements/UnderwriterLegalAgreements.css";
87
78
  @import "@simplybusiness/mobius-journey/src/components/Referral/TrustSection/TrustSection.css";
88
79
  @import "@simplybusiness/mobius-journey/src/components/RewardBanner/RewardBanner.css";
89
80
  @import "@simplybusiness/mobius-journey/src/components/ScrollableText/ScrollableText.css";
@@ -99,6 +90,13 @@
99
90
  @import "@simplybusiness/mobius-journey/src/components/SmsButton/SmsButton.css";
100
91
  /* Journey Components (payment summary, etc.) */
101
92
  @import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
93
+
94
+ /* Post-quote components (migrated from shared/ with mobius-frontend-expert compliance)
95
+ * CSS imports will be added here in subsequent migration phases:
96
+ * - Phase 2: DialogueModal
97
+ * - Phase 3: PersistentSummary sub-components
98
+ * - Phase 4: Theme integration & validation
99
+ */
102
100
  @import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/PaymentTermsChecklist/PaymentTermsChecklist.css";
103
101
  @import "@simplybusiness/mobius-journey/src/components/shared/DialogueModal/DialogueModal.css";
104
102
  @import "@simplybusiness/mobius-journey/src/components/shared/TransferConsentPageUK/styles.css";