@simplybusiness/theme-simplybusiness 1.20.0 → 1.20.2
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 +30 -0
- package/dist/index.css +99 -32
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.20.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [08ec229]
|
|
8
|
+
- @simplybusiness/mobius-journey@8.30.0
|
|
9
|
+
|
|
10
|
+
## 1.20.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [dbd72a0]
|
|
15
|
+
- Updated dependencies [0497e7a]
|
|
16
|
+
- Updated dependencies [6f0cf86]
|
|
17
|
+
- Updated dependencies [9b06f5a]
|
|
18
|
+
- Updated dependencies [cb26660]
|
|
19
|
+
- Updated dependencies [55affff]
|
|
20
|
+
- Updated dependencies [e565476]
|
|
21
|
+
- Updated dependencies [37f319b]
|
|
22
|
+
- Updated dependencies [8532781]
|
|
23
|
+
- Updated dependencies [0de3be8]
|
|
24
|
+
- Updated dependencies [4fa7128]
|
|
25
|
+
- Updated dependencies [aaa634d]
|
|
26
|
+
- @simplybusiness/theme-core@7.7.1
|
|
27
|
+
- @simplybusiness/mobius@5.28.1
|
|
28
|
+
- @simplybusiness/mobius-interventions@1.56.0
|
|
29
|
+
- @simplybusiness/mobius-datepicker@6.5.22
|
|
30
|
+
- @simplybusiness/mobius-chatbot@1.4.5
|
|
31
|
+
- @simplybusiness/mobius-journey@8.29.0
|
|
32
|
+
|
|
3
33
|
## 1.20.0
|
|
4
34
|
|
|
5
35
|
### Minor Changes
|
package/dist/index.css
CHANGED
|
@@ -342,19 +342,29 @@ a.mobius-button:focus-visible,
|
|
|
342
342
|
.mobius-checkbox__input{
|
|
343
343
|
appearance:none;
|
|
344
344
|
position:absolute;
|
|
345
|
-
margin-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
345
|
+
margin:var(--checkbox-margin);
|
|
346
|
+
width:var(--checkbox-width);
|
|
347
|
+
height:var(--checkbox-height);
|
|
348
|
+
border:var(--checkbox-border);
|
|
349
|
+
border-radius:var(--checkbox-border-radius);
|
|
349
350
|
pointer-events:none;
|
|
351
|
+
background-repeat:no-repeat;
|
|
352
|
+
background-position:center;
|
|
350
353
|
}
|
|
354
|
+
.mobius-checkbox__input.--is-selected{
|
|
355
|
+
background-color:var(--checkbox-background-color);
|
|
356
|
+
background-image:var(--checkbox-icon);
|
|
357
|
+
}
|
|
358
|
+
.mobius-checkbox__input.--is-selected.--is-invalid{
|
|
359
|
+
background-color:var(--checkbox-background-color-invalid);
|
|
360
|
+
}
|
|
351
361
|
.mobius-checkbox__input:focus-visible{
|
|
352
362
|
outline:none;
|
|
353
363
|
}
|
|
354
364
|
.mobius-checkbox__input.--is-disabled{
|
|
355
|
-
color:var(--color-
|
|
356
|
-
border-color:var(--
|
|
357
|
-
background-color:var(--
|
|
365
|
+
color:var(--checkbox-label-color-disabled);
|
|
366
|
+
border-color:var(--checkbox-border-color-disabled);
|
|
367
|
+
background-color:var(--checkbox-background-color-disabled);
|
|
358
368
|
}
|
|
359
369
|
.--is-invalid .mobius-checkbox__input:not(.--is-disabled){
|
|
360
370
|
border-color:var(--color-error);
|
|
@@ -364,18 +374,18 @@ a.mobius-button:focus-visible,
|
|
|
364
374
|
display:flex;
|
|
365
375
|
align-items:flex-start;
|
|
366
376
|
flex-direction:row;
|
|
367
|
-
border:var(--border
|
|
377
|
+
border:var(--checkbox-label-border);
|
|
368
378
|
border-radius:var(--radius-1);
|
|
369
|
-
padding:var(--
|
|
379
|
+
padding:var(--checkbox-label-padding);
|
|
370
380
|
position:relative;
|
|
371
381
|
user-select:none;
|
|
372
382
|
cursor:pointer;
|
|
373
383
|
background-color:var(--color-background-input);
|
|
374
384
|
}
|
|
375
385
|
.mobius-checkbox__label.--is-disabled{
|
|
376
|
-
color:var(--color-
|
|
377
|
-
border-color:var(--
|
|
378
|
-
background-color:var(--
|
|
386
|
+
color:var(--checkbox-label-color-disabled);
|
|
387
|
+
border-color:var(--checkbox-border-color-disabled);
|
|
388
|
+
background-color:var(--checkbox-label-background-color-disabled);
|
|
379
389
|
cursor:not-allowed;
|
|
380
390
|
}
|
|
381
391
|
.mobius-checkbox__label.--is-disabled .mobius-checkbox__icon{
|
|
@@ -391,30 +401,31 @@ a.mobius-button:focus-visible,
|
|
|
391
401
|
.mobius-checkbox__label:hover:not(.--is-disabled):not(.mobius-checkbox__label.--is-invalid) .mobius-checkbox__icon{
|
|
392
402
|
color:var(--color-primary);
|
|
393
403
|
}
|
|
394
|
-
.mobius-checkbox__label:focus-
|
|
404
|
+
.mobius-checkbox__label:has(:focus-visible):not(.--is-disabled):not(.--is-invalid){
|
|
395
405
|
box-shadow:var(--box-shadow-default);
|
|
396
406
|
border-color:var(--color-primary);
|
|
397
407
|
background-color:var(--color-background-input-active);
|
|
398
408
|
}
|
|
399
|
-
.mobius-checkbox__label:focus-
|
|
409
|
+
.mobius-checkbox__label:has(:focus-visible):not(.--is-disabled):not(.--is-invalid) .mobius-checkbox__icon{
|
|
400
410
|
color:var(--color-primary);
|
|
401
411
|
}
|
|
402
412
|
.mobius-checkbox__label.--is-invalid:not(.--is-disabled){
|
|
403
|
-
|
|
404
|
-
color:var(--color-
|
|
413
|
+
color:var(--checkbox-label-color-invalid);
|
|
414
|
+
border-color:var(--checkbox-border-color-invalid);
|
|
405
415
|
}
|
|
406
416
|
.mobius-checkbox__label.--is-invalid:not(.--is-disabled):hover,.mobius-checkbox__label.--is-invalid:not(.--is-disabled):focus-within{
|
|
407
|
-
background-color:var(--
|
|
417
|
+
background-color:var(--checkbox-label-background-color-invalid);
|
|
408
418
|
}
|
|
409
419
|
.mobius-checkbox__label.--is-invalid:not(.--is-disabled) .mobius-checkbox__icon{
|
|
410
|
-
color:var(--color-
|
|
420
|
+
color:var(--checkbox-color-invalid);
|
|
411
421
|
}
|
|
412
422
|
.mobius-checkbox__label.--is-invalid:not(.--is-disabled) .mobius-checkbox__input{
|
|
413
|
-
border-color:var(--color-
|
|
423
|
+
border-color:var(--checkbox-border-color-invalid);
|
|
414
424
|
}
|
|
415
425
|
.mobius-checkbox__icon{
|
|
416
426
|
position:relative;
|
|
417
|
-
color:var(--color
|
|
427
|
+
color:var(--checkbox-color);
|
|
428
|
+
visibility:var(--checkbox-default-icon-visibility);
|
|
418
429
|
}
|
|
419
430
|
.mobius-checkbox__visible-label{
|
|
420
431
|
box-sizing:border-box;
|
|
@@ -422,7 +433,7 @@ a.mobius-button:focus-visible,
|
|
|
422
433
|
font-family:var(--font-family);
|
|
423
434
|
line-height:var(--line-height-normal);
|
|
424
435
|
font-size:var(--font-size-regular);
|
|
425
|
-
margin-left:var(--
|
|
436
|
+
margin-left:var(--checkbox-label-gap);
|
|
426
437
|
}
|
|
427
438
|
.mobius-checkbox-group{
|
|
428
439
|
display:grid;
|
|
@@ -856,7 +867,7 @@ a.mobius-button:focus-visible,
|
|
|
856
867
|
font-family:var(--font-family);
|
|
857
868
|
font-weight:var(--label-font-weight);
|
|
858
869
|
font-variation-settings:var(--label-font-variation-settings);
|
|
859
|
-
color:var(--color
|
|
870
|
+
color:var(--label-color);
|
|
860
871
|
}
|
|
861
872
|
.mobius-label.--is-invalid:not(.--is-disabled){
|
|
862
873
|
color:var(--color-error);
|
|
@@ -1094,7 +1105,7 @@ a.mobius-button:focus-visible,
|
|
|
1094
1105
|
.mobius-number-field__input{
|
|
1095
1106
|
box-sizing:border-box;
|
|
1096
1107
|
border:var(--border-default);
|
|
1097
|
-
border-radius:var(--radius
|
|
1108
|
+
border-radius:var(--input-border-radius);
|
|
1098
1109
|
background-color:var(--color-background-input);
|
|
1099
1110
|
padding:var(--input-field-padding);
|
|
1100
1111
|
font-family:var(--font-family);
|
|
@@ -1510,7 +1521,7 @@ a.mobius-button:focus-visible,
|
|
|
1510
1521
|
font-family:var(--font-family);
|
|
1511
1522
|
font-size:var(--font-size-regular);
|
|
1512
1523
|
border:var(--border-default);
|
|
1513
|
-
border-radius:var(--radius
|
|
1524
|
+
border-radius:var(--input-border-radius);
|
|
1514
1525
|
background-color:var(--color-background-input);
|
|
1515
1526
|
color:var(--color-text-medium);
|
|
1516
1527
|
outline:0;
|
|
@@ -1550,7 +1561,7 @@ a.mobius-button:focus-visible,
|
|
|
1550
1561
|
padding:var(--size-md);
|
|
1551
1562
|
border-radius:var(--radius-1);
|
|
1552
1563
|
pointer-events:none;
|
|
1553
|
-
color:var(--color-
|
|
1564
|
+
color:var(--color-primary-light);
|
|
1554
1565
|
}
|
|
1555
1566
|
.mobius-select__icon.--is-disabled{
|
|
1556
1567
|
color:var(--color-text-light);
|
|
@@ -1889,7 +1900,7 @@ a.mobius-button:focus-visible,
|
|
|
1889
1900
|
box-sizing:border-box;
|
|
1890
1901
|
flex:1 1 0%;
|
|
1891
1902
|
border:var(--border-default);
|
|
1892
|
-
border-radius:var(--radius
|
|
1903
|
+
border-radius:var(--input-border-radius);
|
|
1893
1904
|
padding:var(--size-xs) var(--size-sm);
|
|
1894
1905
|
margin:0px;
|
|
1895
1906
|
font-family:var(--font-family);
|
|
@@ -1947,6 +1958,7 @@ a.mobius-button:focus-visible,
|
|
|
1947
1958
|
align-self:center;
|
|
1948
1959
|
}
|
|
1949
1960
|
.mobius-text-field__prefix-outside.mobius-button{
|
|
1961
|
+
border-radius:var(--input-border-radius);
|
|
1950
1962
|
border-top-right-radius:0;
|
|
1951
1963
|
border-bottom-right-radius:0;
|
|
1952
1964
|
}
|
|
@@ -1958,6 +1970,7 @@ a.mobius-button:focus-visible,
|
|
|
1958
1970
|
padding-right:var(--size-sm);
|
|
1959
1971
|
}
|
|
1960
1972
|
.mobius-text-field__suffix-outside.mobius-button{
|
|
1973
|
+
border-radius:var(--input-border-radius);
|
|
1961
1974
|
border-top-left-radius:0;
|
|
1962
1975
|
border-bottom-left-radius:0;
|
|
1963
1976
|
}
|
|
@@ -1990,7 +2003,7 @@ a.mobius-button:focus-visible,
|
|
|
1990
2003
|
display:flex;
|
|
1991
2004
|
flex:1 1 0;
|
|
1992
2005
|
align-items:center;
|
|
1993
|
-
border-radius:var(--radius
|
|
2006
|
+
border-radius:var(--input-border-radius);
|
|
1994
2007
|
color:var(--color-text-medium);
|
|
1995
2008
|
overflow:hidden;
|
|
1996
2009
|
background-color:var(--color-background-input);
|
|
@@ -1999,6 +2012,7 @@ a.mobius-button:focus-visible,
|
|
|
1999
2012
|
border:var(--border-default);
|
|
2000
2013
|
}
|
|
2001
2014
|
.mobius-text-field__input-wrapper:has( + .mobius-button){
|
|
2015
|
+
border-radius:var(--input-border-radius);
|
|
2002
2016
|
border-top-right-radius:0;
|
|
2003
2017
|
border-bottom-right-radius:0;
|
|
2004
2018
|
}
|
|
@@ -2552,15 +2566,36 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2552
2566
|
--drawer-transition-duration:200ms;
|
|
2553
2567
|
--modal-transition-duration:0;
|
|
2554
2568
|
--backdrop-color:#18181d;
|
|
2569
|
+
--label-color:var(--color-text);
|
|
2555
2570
|
--label-font-weight:var(--font-weight-bold);
|
|
2556
2571
|
--label-font-variation-settings:normal;
|
|
2557
2572
|
--input-field-padding:17px var(--size-sm);
|
|
2558
2573
|
--input-field-padding-tight:14px var(--size-sm);
|
|
2574
|
+
--input-border-radius:var(--radius-1);
|
|
2559
2575
|
--border-default:var(--size-border-width) solid var(--color-primary-light);
|
|
2560
2576
|
--box-shadow-default:0 0 0 var(--size-focus-ring) var(--color-focus);
|
|
2561
2577
|
--text-input-max-width:none;
|
|
2562
2578
|
--number-input-max-width:none;
|
|
2563
2579
|
--select-wrapper-max-width:none;
|
|
2580
|
+
--checkbox-label-border:var(--border-default);
|
|
2581
|
+
--checkbox-label-padding:var(--input-field-padding-tight);
|
|
2582
|
+
--checkbox-label-gap:var(--size-sm);
|
|
2583
|
+
--checkbox-width:21px;
|
|
2584
|
+
--checkbox-height:20px;
|
|
2585
|
+
--checkbox-margin:2px 0 0 0;
|
|
2586
|
+
--checkbox-border:none;
|
|
2587
|
+
--checkbox-color:var(--color-primary-light);
|
|
2588
|
+
--checkbox-label-color:var(--color-text);
|
|
2589
|
+
--checkbox-border-color:var(--color-background-input);
|
|
2590
|
+
--checkbox-color-disabled:var(--color-text-light);
|
|
2591
|
+
--checkbox-label-color-disabled:var(--color-text-light);
|
|
2592
|
+
--checkbox-label-background-color-disabled:var(--color-background-light);
|
|
2593
|
+
--checkbox-border-color-disabled:var(--color-border-medium);
|
|
2594
|
+
--checkbox-color-invalid:var(--color-error);
|
|
2595
|
+
--checkbox-label-color-invalid:var(--color-error);
|
|
2596
|
+
--checkbox-label-background-color-invalid:var(--color-error-background);
|
|
2597
|
+
--checkbox-border-color-invalid:var(--color-error);
|
|
2598
|
+
--checkbox-default-icon-visibility:visible;
|
|
2564
2599
|
--popover-max-width:260px;
|
|
2565
2600
|
--popover-z-index:2147483647;
|
|
2566
2601
|
--color-background-popover:var(--color-azure-700);
|
|
@@ -4236,6 +4271,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4236
4271
|
.mobius-quote-card__coverage .mobius-quote-card__coverage-header-title{
|
|
4237
4272
|
margin:0;
|
|
4238
4273
|
font-size:var(--font-size-small-paragraph);
|
|
4274
|
+
flex-grow:1;
|
|
4239
4275
|
}
|
|
4240
4276
|
.--is-horizontal .mobius-quote-card__coverage{
|
|
4241
4277
|
padding-top:0;
|
|
@@ -4417,6 +4453,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4417
4453
|
}
|
|
4418
4454
|
.mobius-quote-card__cover-amount{
|
|
4419
4455
|
color:var(--color-text);
|
|
4456
|
+
margin-left:auto;
|
|
4420
4457
|
}
|
|
4421
4458
|
.mobius-quote-card__coverage.--is-grid{
|
|
4422
4459
|
border-top:0;
|
|
@@ -6041,9 +6078,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6041
6078
|
min-width:var(--size-xxl);
|
|
6042
6079
|
transition:none;
|
|
6043
6080
|
border-top-left-radius:0;
|
|
6044
|
-
border-top-right-radius:var(--radius
|
|
6081
|
+
border-top-right-radius:var(--input-border-radius);
|
|
6045
6082
|
border-bottom-left-radius:0;
|
|
6046
|
-
border-bottom-right-radius:var(--radius
|
|
6083
|
+
border-bottom-right-radius:var(--input-border-radius);
|
|
6047
6084
|
}
|
|
6048
6085
|
.mobius-date-picker__field-button:hover:not(.--is-disabled):not(.mobius-date-picker__field-button.--is-valid):not(.mobius-date-picker__field-button.--is-invalid),.mobius-date-picker__field-button:focus-visible:not(.--is-disabled):not(.mobius-date-picker__field-button.--is-valid):not(.mobius-date-picker__field-button.--is-invalid){
|
|
6049
6086
|
background-color:var(--color-primary-hover);
|
|
@@ -6060,7 +6097,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6060
6097
|
min-width:280px;
|
|
6061
6098
|
background-color:var(--color-background-light);
|
|
6062
6099
|
border:var(--border-default);
|
|
6063
|
-
border-radius:var(--radius
|
|
6100
|
+
border-radius:var(--input-border-radius);
|
|
6064
6101
|
background-color:var(--color-background-light);
|
|
6065
6102
|
box-shadow:0 1px 1px hsl(0deg 0% 0% / 0.075), 0 2px 2px hsl(0deg 0% 0% / 0.075), 0 4px 4px hsl(0deg 0% 0% / 0.075), 0 8px 8px hsl(0deg 0% 0% / 0.075), 0 16px 16px hsl(0deg 0% 0% / 0.075);
|
|
6066
6103
|
}
|
|
@@ -6121,8 +6158,11 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6121
6158
|
}
|
|
6122
6159
|
.mobius-date-picker__month-grid{
|
|
6123
6160
|
width:100%;
|
|
6161
|
+
overflow:hidden;
|
|
6124
6162
|
border-collapse:collapse;
|
|
6125
6163
|
border-spacing:0;
|
|
6164
|
+
border-bottom-left-radius:var(--input-border-radius);
|
|
6165
|
+
border-bottom-right-radius:var(--input-border-radius);
|
|
6126
6166
|
}
|
|
6127
6167
|
.mobius-date-picker__weekday{
|
|
6128
6168
|
color:var(--color-text-medium);
|
|
@@ -6204,6 +6244,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6204
6244
|
width:60px;
|
|
6205
6245
|
height:60px;
|
|
6206
6246
|
}
|
|
6247
|
+
.mobius-interventions__trade-based-msm-logo{
|
|
6248
|
+
background-image:url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 viewBox%3D%220 0 1020.58 127.65%22 width%3D%22250px%22%3E %3Cdefs%3E %3Cpath id%3D%22a%22 d%3D%22M1020.58 20.69v15.76h-14.88v89.08h-18.95V36.45H971.7V20.69h48.88zm-879.22 13.1c2.06 4.84 3.1 10.98 3.1 18.42v41.26c0 7.44-1.04 13.7-3.1 18.77-2.07 5.08-5.2 8.92-9.39 11.51-4.19 2.6-9.42 3.9-15.67 3.9-6.02 0-11.13-1.3-15.32-3.9-4.19-2.6-7.38-6.4-9.56-11.42-2.19-5.02-3.28-11.3-3.28-18.86V52.21c0-7.32 1.09-13.43 3.28-18.33 2.18-4.9 5.43-8.68 9.74-11.33 4.31-2.66 9.36-3.98 15.14-3.98 6.26 0 11.48 1.33 15.67 3.98 4.2 2.65 7.33 6.4 9.39 11.24zm-15.49 15.23c0-3.19-.35-5.81-1.06-7.88-.71-2.06-1.74-3.66-3.1-4.78s-3.16-1.68-5.4-1.68c-2.01 0-3.66.56-4.96 1.68-1.3 1.12-2.33 2.72-3.1 4.78-.77 2.07-1.15 4.69-1.15 7.88v47.82c0 3.43.38 6.17 1.15 8.23.77 2.07 1.8 3.6 3.1 4.61 1.3 1 2.95 1.5 4.96 1.5 2.24 0 4.01-.5 5.31-1.5 1.3-1 2.33-2.54 3.1-4.61.77-2.06 1.15-4.81 1.15-8.23V49.02zm794.17 76.51h43.39v-16.47h-24.44V79.31h22.14V63.72h-22.14v-27.1h24.44V20.69h-43.39v104.84zM191.52 71.69l-.08 8.66-17.81-59.66h-20.01v104.84h18.24V66.67l17.71 58.86h20.01V20.69h-18.24l.18 51zm321.07-40.38c2.06 3.78 3.1 8.62 3.1 14.52V67.8c0 6.02-1 10.98-3.01 14.88-2.01 3.9-4.84 6.7-8.5 8.41s-8.09 2.57-13.28 2.57h-9.39v31.88h-18.77V20.69h27.63c5.19 0 9.68.83 13.46 2.48 3.77 1.65 6.69 4.37 8.76 8.14zm-15.85 14.17c0-2.71-.71-4.9-2.13-6.55-1.42-1.65-3.78-2.48-7.08-2.48h-6.02v40.91h6.02c3.3 0 5.67-.8 7.08-2.39 1.42-1.59 2.13-3.92 2.13-7V45.48zm-277.59 80.05h43.39v-16.47H238.1V79.31h22.14V63.72H238.1v-27.1h24.44V20.69h-43.39v104.84zm305.7 0h43.39v-16.47H543.8V79.31h22.14V63.72H543.8v-27.1h24.44V20.69h-43.39v104.84zM914.02 20.69h-21.07l-18.59 49.13V20.87h-18.59v104.66h18.59V99.2l8.28-12.82 12.27 39.15h20.9l-20.88-59.37 19.09-45.47zM297.14 74.35l-9.12-53.66h-19.48l19.13 75.97v28.87h18.77V96.66l19.48-75.97h-19.13l-9.65 53.66zm473.25-53.48l16.82 104.66h-19.13l-2.43-18.06h-19.02l-2.46 18.06H725.4l16.65-104.66h28.34zm-6.89 70.48l-6.92-51.53h-.71l-7.03 51.53h14.66zm-328.92 8.32c0 2.6-.3 4.72-.89 6.38-.59 1.66-1.51 2.92-2.74 3.81-1.24.89-2.74 1.33-4.52 1.33-2.36 0-4.1-.44-5.22-1.33-1.12-.89-1.98-2.15-2.57-3.81-.59-1.65-.89-3.78-.89-6.38V20.69H398.8v76.86c0 6.73 1 12.31 3.01 16.74 2.01 4.43 5.02 7.76 9.03 10.01 4.01 2.24 9.21 3.36 15.58 3.36 6.02 0 11.01-1.18 14.96-3.54 3.95-2.36 6.91-5.72 8.85-10.09 1.95-4.37 2.92-9.86 2.92-16.47V20.69h-18.59v78.98zm411.61-55.25v16.12c0 5.31-1.15 9.74-3.45 13.28a20.775 20.775 0 01-5.61 5.76l-.06-.02c.74.49 1.46 1.01 2.13 1.58 4.66 3.96 7 9.89 7 17.8v26.59h-18.95V92.59c0-2.36-.65-4.28-1.95-5.76-1.3-1.47-3.43-2.21-6.38-2.21h-6.91v40.91h-18.77V20.69h26.92c8.03 0 14.37 1.98 19.04 5.93 4.66 3.96 6.99 9.89 6.99 17.8zm-27.27 25.15c2.95 0 5.07-.74 6.38-2.21 1.3-1.47 1.95-3.51 1.95-6.11V44.42c0-2.36-.65-4.28-1.95-5.76-1.3-1.47-3.43-2.21-6.38-2.21h-6.91v33.12h6.91zM630.75 44.42v16.12c0 5.31-1.15 9.74-3.45 13.28a20.775 20.775 0 01-5.61 5.76l-.06-.02c.74.49 1.46 1.01 2.13 1.58 4.66 3.96 7 9.89 7 17.8v26.59H611.8V92.59c0-2.36-.65-4.28-1.95-5.76-1.3-1.47-3.43-2.21-6.38-2.21h-6.91v40.91H577.8V20.69h26.92c8.03 0 14.37 1.98 19.04 5.93 4.66 3.96 6.99 9.89 6.99 17.8zm-27.27 25.15c2.95 0 5.07-.74 6.38-2.21 1.3-1.47 1.95-3.51 1.95-6.11V44.42c0-2.36-.65-4.28-1.95-5.76-1.3-1.47-3.43-2.21-6.38-2.21h-6.91v33.12h6.91zm-563.99-7.1L24.9 1.95H0v123.58h19.3l-1.59-87.45 21.78 78.54 21.78-78.54-1.59 87.45h19.3V1.95h-24.9L39.49 62.47zm339.52-1.12c-3.48-2.83-21.02-11.83-22.49-12.84-1.48-1-2.69-2.36-3.63-4.07-.95-1.71-1.48-3.92-1.59-6.64V25.32c0-1.53.35-2.92 1.06-4.16a8.416 8.416 0 012.92-3.01c1.24-.77 2.92-1.15 5.05-1.15 3.78 0 6.43 1.09 7.97 3.28 1.53 2.19 2.3 5.17 2.3 8.94v11.23h18.42V29.22c0-9.21-2.45-16.38-7.35-21.52-4.9-5.14-12.01-7.7-21.34-7.7-5.79 0-10.8.97-15.05 2.92s-7.53 4.9-9.83 8.85c-2.3 3.96-3.45 8.47-3.45 13.55v12.47c0 5.31.74 9.71 2.21 13.19 1.48 3.48 3.6 6.44 6.38 8.85 2.77 2.42 21.78 12.4 23.73 13.64 1.95 1.24 3.42 2.86 4.43 4.87 1 2.01 1.51 4.72 1.51 8.15v13.71c0 3.07-.8 5.58-2.39 7.53-1.59 1.95-3.98 2.92-7.17 2.92-2.72 0-4.87-.59-6.46-1.77-1.59-1.18-2.75-2.77-3.45-4.78-.71-2.01-1.06-4.13-1.06-6.38V85.25h-18.95v12.47c0 6.49 1.12 11.98 3.36 16.47 2.24 4.49 5.61 7.85 10.09 10.09 4.49 2.24 9.98 3.36 16.47 3.36 5.55 0 10.63-1.12 15.23-3.36 4.6-2.24 8.03-5.37 10.27-9.39 2.24-4.01 3.36-8.74 3.36-14.17v-14.6c0-5.67-.89-10.51-2.66-14.52-1.78-3.99-4.41-7.42-7.89-10.25zm300.9 1.12l-14.6-60.52h-24.9v123.58h19.3l-1.59-87.45 21.78 78.54 21.78-78.54-1.59 87.45h19.3V1.95h-24.9l-14.58 60.52z%22%2F%3E %3C%2Fdefs%3E %3CradialGradient id%3D%22b%22 cx%3D%22504.947%22 cy%3D%2263.826%22 r%3D%22500.402%22 gradientUnits%3D%22userSpaceOnUse%22%3E %3Cstop offset%3D%220%22 stop-color%3D%22%23604389%22%2F%3E %3Cstop offset%3D%22.999%22 stop-color%3D%22%23491770%22%2F%3E %3C%2FradialGradient%3E %3Cuse xlink%3Ahref%3D%22%23a%22 overflow%3D%22visible%22 fill%3D%22url%28%23b%29%22%2F%3E%3C%2Fsvg%3E");
|
|
6249
|
+
background-position:left center;
|
|
6250
|
+
background-repeat:no-repeat;
|
|
6251
|
+
background-size:contain;
|
|
6252
|
+
height:100%;
|
|
6253
|
+
width:230px;
|
|
6254
|
+
}
|
|
6207
6255
|
.mobius-interventions__trade-based-bulb{
|
|
6208
6256
|
width:30px;
|
|
6209
6257
|
height:30px;
|
|
@@ -6261,6 +6309,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6261
6309
|
margin:0;
|
|
6262
6310
|
text-wrap:stable;
|
|
6263
6311
|
}
|
|
6312
|
+
.mobius-interventions__trade-based-text-msm{
|
|
6313
|
+
font-size:20px;
|
|
6314
|
+
line-height:1.4;
|
|
6315
|
+
margin:0;
|
|
6316
|
+
text-wrap:stable;
|
|
6317
|
+
color:rgb(75,60,89);
|
|
6318
|
+
}
|
|
6264
6319
|
.mobius-interventions__trade-based-text-fineprint{
|
|
6265
6320
|
color:#5d5d60;
|
|
6266
6321
|
line-height:16px;
|
|
@@ -6273,6 +6328,13 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6273
6328
|
.mobius-interventions__trade-based-close-button{
|
|
6274
6329
|
margin-top:5%;
|
|
6275
6330
|
}
|
|
6331
|
+
.mobius-interventions__trade-based-close-button-msm{
|
|
6332
|
+
margin-top:5%;
|
|
6333
|
+
color:rgb(75,60,89);
|
|
6334
|
+
}
|
|
6335
|
+
.mobius-interventions__trade-based-close-button-msm:hover{
|
|
6336
|
+
color:white;
|
|
6337
|
+
}
|
|
6276
6338
|
.mobius-interventions__trade-based-cta-button{
|
|
6277
6339
|
margin-top:10%;
|
|
6278
6340
|
font-weight:var(--font-weight-normal);
|
|
@@ -6305,10 +6367,15 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6305
6367
|
.mobius-interventions__trade-based-cta-button{
|
|
6306
6368
|
margin-top:0%;
|
|
6307
6369
|
}
|
|
6308
|
-
|
|
6370
|
+
|
|
6309
6371
|
.mobius-interventions__trade-based-box-msm{
|
|
6310
6372
|
max-width:none;
|
|
6311
6373
|
}
|
|
6374
|
+
|
|
6375
|
+
.mobius-interventions__trade-based-msm-logo{
|
|
6376
|
+
height:100%;
|
|
6377
|
+
width:200px;
|
|
6378
|
+
}
|
|
6312
6379
|
}
|
|
6313
6380
|
.mobius-interventions__coverage-diagnosis-cover-display-cta{
|
|
6314
6381
|
display:flex;
|
|
@@ -7108,7 +7175,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
7108
7175
|
gap:var(--size-xs);
|
|
7109
7176
|
}
|
|
7110
7177
|
.mobius-chatbot__submit-button.mobius-button{
|
|
7111
|
-
border-radius:var(--radius
|
|
7178
|
+
border-radius:var(--button-border-radius);
|
|
7112
7179
|
}
|
|
7113
7180
|
.mobius-chatbot__copyright{
|
|
7114
7181
|
display:flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.20.
|
|
3
|
+
"version": "1.20.2",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,12 +26,12 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.28.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.4.
|
|
31
|
-
"@simplybusiness/mobius-datepicker": "^6.5.
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.7.
|
|
29
|
+
"@simplybusiness/mobius": "^5.28.1",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.4.5",
|
|
31
|
+
"@simplybusiness/mobius-datepicker": "^6.5.22",
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.56.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.30.0",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.7.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"css-loader": "^7.1.2",
|