@simplybusiness/theme-simplybusiness 1.13.2 → 1.14.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 +14 -0
- package/dist/index.css +332 -50
- package/package.json +5 -5
- package/src/index.css +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.14.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8f5fbe0: Complete the migration of journey-components into mobius
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [8f5fbe0]
|
|
12
|
+
- @simplybusiness/mobius-datepicker@6.5.0
|
|
13
|
+
- @simplybusiness/mobius-journey@6.68.0
|
|
14
|
+
- @simplybusiness/theme-core@7.5.0
|
|
15
|
+
- @simplybusiness/mobius@5.23.0
|
|
16
|
+
|
|
3
17
|
## 1.13.2
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -5411,63 +5411,63 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5411
5411
|
padding-right:var(--size-sm);
|
|
5412
5412
|
transition:height 1s;
|
|
5413
5413
|
}
|
|
5414
|
-
.mobius-
|
|
5414
|
+
.mobius-payment-summary__styled-div{
|
|
5415
5415
|
display:grid;
|
|
5416
5416
|
row-gap:var(--size-sm);
|
|
5417
5417
|
margin-top:var(--size-sm);
|
|
5418
5418
|
}
|
|
5419
|
-
.mobius-
|
|
5419
|
+
.mobius-payment-summary__styled-div .incomplete-quote-actions{
|
|
5420
5420
|
padding:14px;
|
|
5421
5421
|
}
|
|
5422
5422
|
@media (max-width: 640px){
|
|
5423
|
-
.mobius-
|
|
5423
|
+
.mobius-payment-summary__styled-div .incomplete-quote-actions{
|
|
5424
5424
|
padding:16px;
|
|
5425
5425
|
}
|
|
5426
5426
|
}
|
|
5427
|
-
.mobius-
|
|
5427
|
+
.mobius-payment-summary__button-div{
|
|
5428
5428
|
display:flex;
|
|
5429
5429
|
justify-content:space-around;
|
|
5430
5430
|
margin-top:25px;
|
|
5431
5431
|
margin-bottom:0;
|
|
5432
5432
|
gap:var(--size-sm);
|
|
5433
5433
|
}
|
|
5434
|
-
.mobius-
|
|
5434
|
+
.mobius-payment-summary__big-button-span{
|
|
5435
5435
|
font-weight:700;
|
|
5436
5436
|
margin-left:10px;
|
|
5437
5437
|
margin-right:10px;
|
|
5438
5438
|
}
|
|
5439
|
-
.mobius-
|
|
5439
|
+
.mobius-payment-summary__styled-divider{
|
|
5440
5440
|
height:var(--size-sm) !important;
|
|
5441
5441
|
}
|
|
5442
|
-
.mobius-
|
|
5442
|
+
.mobius-payment-summary__styled-flex{
|
|
5443
5443
|
width:100%;
|
|
5444
5444
|
flex-direction:row;
|
|
5445
5445
|
justify-content:space-between;
|
|
5446
5446
|
}
|
|
5447
|
-
.mobius-
|
|
5447
|
+
.mobius-payment-summary__styled-flex .today-payment,.mobius-payment-summary__styled-flex .total-payment{
|
|
5448
5448
|
font-weight:bold;
|
|
5449
5449
|
}
|
|
5450
|
-
.mobius-
|
|
5450
|
+
.mobius-payment-summary__styled-wrapper{
|
|
5451
5451
|
width:100%;
|
|
5452
5452
|
flex-direction:column;
|
|
5453
5453
|
}
|
|
5454
|
-
.mobius-
|
|
5454
|
+
.mobius-payment-summary__styled-wrapper.combined-styles .mobius-text.--is-small{
|
|
5455
5455
|
line-height:18px;
|
|
5456
5456
|
color:var(--color-text);
|
|
5457
5457
|
}
|
|
5458
|
-
.mobius-
|
|
5458
|
+
.mobius-payment-summary__styled-wrapper.combined-styles .today-payment,.mobius-payment-summary__styled-wrapper.combined-styles .total-payment{
|
|
5459
5459
|
font-weight:normal;
|
|
5460
5460
|
}
|
|
5461
|
-
.mobius-
|
|
5461
|
+
.mobius-payment-summary__styled-wrapper.combined-styles .monthly-payment{
|
|
5462
5462
|
margin-top:var(--size-xs);
|
|
5463
5463
|
}
|
|
5464
|
-
.mobius-
|
|
5464
|
+
.mobius-payment-summary__styled-wrapper.combined-styles .mobius-divider{
|
|
5465
5465
|
height:var(--size-sm);
|
|
5466
5466
|
}
|
|
5467
|
-
.mobius-
|
|
5467
|
+
.mobius-payment-summary__styled-wrapper.combined-styles .mobius-divider__inner{
|
|
5468
5468
|
background-color:var(--color-border-medium);
|
|
5469
5469
|
}
|
|
5470
|
-
.mobius-
|
|
5470
|
+
.mobius-payment-summary__summary-fragment-wrapper .arrow{
|
|
5471
5471
|
display:inline-block;
|
|
5472
5472
|
width:9px;
|
|
5473
5473
|
height:9px;
|
|
@@ -5477,104 +5477,382 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5477
5477
|
transform-origin:center;
|
|
5478
5478
|
margin-bottom:3px;
|
|
5479
5479
|
}
|
|
5480
|
-
.mobius-
|
|
5480
|
+
.mobius-payment-summary__summary-fragment-wrapper .arrow-top{
|
|
5481
5481
|
transform:rotate(-45deg);
|
|
5482
5482
|
}
|
|
5483
|
-
.mobius-
|
|
5483
|
+
.mobius-payment-summary__summary-fragment-wrapper .arrow-bottom{
|
|
5484
5484
|
transform:rotate(135deg);
|
|
5485
5485
|
}
|
|
5486
|
-
.mobius-
|
|
5487
|
-
border-top:1px solid
|
|
5486
|
+
.mobius-payment-summary__summary-fragment-wrapper .additional_covers{
|
|
5487
|
+
border-top:1px solid var(--combobox-border-color);
|
|
5488
5488
|
padding-top:16px;
|
|
5489
5489
|
}
|
|
5490
|
-
.mobius-
|
|
5490
|
+
.mobius-payment-summary__summary-fragment-wrapper .additional_covers ~ .additional_covers{
|
|
5491
5491
|
border:none;
|
|
5492
5492
|
padding-top:0px;
|
|
5493
5493
|
}
|
|
5494
|
-
.mobius-
|
|
5494
|
+
.mobius-payment-summary__summary-fragment-wrapper .align-right{
|
|
5495
5495
|
text-align:right;
|
|
5496
5496
|
}
|
|
5497
|
-
.mobius-
|
|
5497
|
+
.mobius-payment-summary__summary-fragment-wrapper.combined-styles .mobius-divider__inner{
|
|
5498
5498
|
background-color:var(--color-border-medium);
|
|
5499
5499
|
}
|
|
5500
|
-
.mobius-
|
|
5500
|
+
.mobius-payment-summary__section-header-text{
|
|
5501
5501
|
margin-top:0;
|
|
5502
5502
|
margin-bottom:16px;
|
|
5503
5503
|
font-size:16px;
|
|
5504
5504
|
font-weight:bold;
|
|
5505
5505
|
}
|
|
5506
|
-
.mobius-
|
|
5506
|
+
.mobius-payment-summary__section-header{
|
|
5507
|
+
display:grid;
|
|
5508
|
+
grid-template-columns:2fr 1fr;
|
|
5509
|
+
gap:8px;
|
|
5510
|
+
width:100%;
|
|
5511
|
+
}
|
|
5512
|
+
.mobius-payment-summary__header-label{
|
|
5513
|
+
display:inline-block;
|
|
5514
|
+
margin-bottom:8px;
|
|
5515
|
+
}
|
|
5516
|
+
.mobius-payment-summary__item-grid{
|
|
5517
|
+
display:grid;
|
|
5518
|
+
margin-bottom:8px;
|
|
5519
|
+
}
|
|
5520
|
+
.mobius-payment-summary__justified-text{
|
|
5521
|
+
justify-self:flex-end;
|
|
5522
|
+
}
|
|
5523
|
+
.mobius-payment-summary__align-center{
|
|
5524
|
+
align-self:center;
|
|
5525
|
+
}
|
|
5526
|
+
.mobius-payment-summary__summary-item{
|
|
5527
|
+
display:grid;
|
|
5528
|
+
grid-template-columns:2fr 1fr;
|
|
5529
|
+
width:100%;
|
|
5530
|
+
}
|
|
5531
|
+
.mobius-payment-summary__combined-payment-page-text{
|
|
5532
|
+
font-size:var(--font-size-2);
|
|
5533
|
+
font-weight:700;
|
|
5534
|
+
color:var(--color-text);
|
|
5535
|
+
}
|
|
5536
|
+
.mobius-payment-summary__default-payment-page-text{
|
|
5537
|
+
font-size:var(--font-size-3);
|
|
5538
|
+
font-weight:bold;
|
|
5539
|
+
color:var(--color-text-medium);
|
|
5540
|
+
}
|
|
5541
|
+
.mobius-payment-summary__text-align-right{
|
|
5542
|
+
text-align:right;
|
|
5543
|
+
}
|
|
5544
|
+
.mobius-payment-summary__styled-grid{
|
|
5507
5545
|
display:grid;
|
|
5508
5546
|
grid-template-columns:65% 35%;
|
|
5509
5547
|
width:100%;
|
|
5510
5548
|
}
|
|
5511
|
-
.mobius-
|
|
5549
|
+
.mobius-payment-summary__styled-grid-primary-text{
|
|
5550
|
+
font-size:var(--font-size-4);
|
|
5551
|
+
font-weight:var(--font-weight-bold);
|
|
5552
|
+
}
|
|
5553
|
+
.mobius-payment-summary__styled-grid-secondary-text{
|
|
5554
|
+
font-size:var(--font-size-2);
|
|
5555
|
+
font-weight:var(--font-weight-normal);
|
|
5556
|
+
}
|
|
5557
|
+
.mobius-payment-summary__price-summary-group{
|
|
5512
5558
|
padding:13px;
|
|
5513
5559
|
box-sizing:border-box;
|
|
5514
5560
|
}
|
|
5515
|
-
.mobius-
|
|
5516
|
-
|
|
5561
|
+
.mobius-payment-summary__price-summary-group .align-right{
|
|
5562
|
+
text-align:right;
|
|
5563
|
+
}
|
|
5564
|
+
.mobius-payment-summary__border-bottom{
|
|
5565
|
+
border-bottom:1px solid var(--combobox-border-color);
|
|
5517
5566
|
}
|
|
5518
|
-
.mobius-
|
|
5567
|
+
.mobius-payment-summary__form-actions-box{
|
|
5519
5568
|
grid-area:form-actions;
|
|
5520
5569
|
}
|
|
5521
|
-
.mobius-
|
|
5570
|
+
.mobius-payment-summary__payment-summary-box{
|
|
5522
5571
|
grid-area:payment-summary;
|
|
5523
5572
|
}
|
|
5524
|
-
.mobius-
|
|
5525
|
-
grid-area:mobius-
|
|
5573
|
+
.mobius-payment-summary__product-payment-options{
|
|
5574
|
+
grid-area:mobius-payment-summary__product-payment-options;
|
|
5526
5575
|
display:flex;
|
|
5527
5576
|
flex-direction:column;
|
|
5528
5577
|
border-radius:8px;
|
|
5529
5578
|
}
|
|
5530
|
-
.mobius-
|
|
5579
|
+
.mobius-payment-summary__product-payment-options .mobius-segment-group{
|
|
5531
5580
|
margin-bottom:0;
|
|
5532
5581
|
}
|
|
5533
|
-
.mobius-
|
|
5582
|
+
.mobius-payment-summary__product-payment-options .mobius-segment-group + .mobius-segment-group{
|
|
5534
5583
|
margin-top:32px;
|
|
5535
5584
|
}
|
|
5536
|
-
.mobius-
|
|
5585
|
+
.mobius-payment-summary__product-payment-options .non-purchasable-product{
|
|
5537
5586
|
border:3px solid var(--color-primary);
|
|
5538
5587
|
}
|
|
5539
|
-
.mobius-
|
|
5588
|
+
.mobius-payment-summary__product-payment-options .exclude-for-purchase{
|
|
5540
5589
|
opacity:0.5;
|
|
5541
5590
|
cursor:not-allowed;
|
|
5542
5591
|
}
|
|
5543
|
-
.mobius-
|
|
5592
|
+
.mobius-payment-summary__product-payment-options .non-eligible-item{
|
|
5544
5593
|
flex-flow:wrap;
|
|
5545
5594
|
}
|
|
5546
|
-
.mobius-
|
|
5595
|
+
.mobius-payment-summary__product-payment-options.combined-styles .mobius-segment-group:not(.non-purchasable-product){
|
|
5547
5596
|
border:1px solid var(--color-border-medium);
|
|
5548
5597
|
}
|
|
5549
|
-
.mobius-
|
|
5598
|
+
.mobius-payment-summary__outer-grid{
|
|
5550
5599
|
display:grid;
|
|
5551
5600
|
gap:var(--font-size-6);
|
|
5552
5601
|
grid-template-columns:2fr 1fr;
|
|
5553
|
-
grid-template-areas:"mobius-
|
|
5602
|
+
grid-template-areas:"mobius-payment-summary__product-payment-options payment-summary" "continuation-notice payment-summary" "form-actions payment-summary";
|
|
5554
5603
|
}
|
|
5555
|
-
.mobius-
|
|
5604
|
+
.mobius-payment-summary__outer-grid.combined-payment-page{
|
|
5556
5605
|
gap:var(--font-size-3);
|
|
5557
5606
|
grid-template-columns:1fr;
|
|
5558
|
-
grid-template-areas:"mobius-
|
|
5607
|
+
grid-template-areas:"mobius-payment-summary__product-payment-options" "continuation-notice" "payment-summary" "form-actions";
|
|
5559
5608
|
}
|
|
5560
5609
|
@media (max-width: 640px){
|
|
5561
|
-
.mobius-
|
|
5610
|
+
.mobius-payment-summary__outer-grid{
|
|
5562
5611
|
grid-template-columns:1fr;
|
|
5563
|
-
grid-template-areas:"mobius-
|
|
5612
|
+
grid-template-areas:"mobius-payment-summary__product-payment-options" "continuation-notice" "payment-summary" "form-actions";
|
|
5564
5613
|
}
|
|
5565
5614
|
}
|
|
5566
|
-
.mobius-
|
|
5615
|
+
.mobius-payment-summary__outer-grid.show-payment-summary-only{
|
|
5567
5616
|
grid-template-columns:1fr;
|
|
5568
5617
|
grid-template-areas:"payment-summary";
|
|
5569
5618
|
}
|
|
5570
|
-
.mobius-
|
|
5619
|
+
.mobius-payment-summary__styled-image{
|
|
5571
5620
|
margin-bottom:12px;
|
|
5572
5621
|
max-height:45px;
|
|
5573
5622
|
max-width:100%;
|
|
5574
5623
|
}
|
|
5575
|
-
.mobius-
|
|
5576
|
-
background-color:
|
|
5577
|
-
width:
|
|
5624
|
+
.mobius-payment-summary__persistent-price-summary{
|
|
5625
|
+
background-color:var(--color-background);
|
|
5626
|
+
width:100%;
|
|
5627
|
+
}
|
|
5628
|
+
.mobius-payment-summary__styled-text{
|
|
5629
|
+
text-align:right;
|
|
5630
|
+
cursor:pointer;
|
|
5631
|
+
color:var(--color-primary);
|
|
5632
|
+
font-weight:normal;
|
|
5633
|
+
display:flex;
|
|
5634
|
+
font-size:1.3em;
|
|
5635
|
+
flex-basis:35%;
|
|
5636
|
+
}
|
|
5637
|
+
@media (min-width: 640px){
|
|
5638
|
+
.mobius-payment-summary__styled-text{
|
|
5639
|
+
display:none;
|
|
5640
|
+
}
|
|
5641
|
+
}
|
|
5642
|
+
.mobius-payment-summary__styled-coverage-text{
|
|
5643
|
+
flex-basis:65%;
|
|
5644
|
+
}
|
|
5645
|
+
@media (min-width: 640px){
|
|
5646
|
+
.mobius-payment-summary__styled-coverage-text{
|
|
5647
|
+
flex-basis:100%;
|
|
5648
|
+
}
|
|
5649
|
+
}
|
|
5650
|
+
.mobius-payment-summary__styled-coverage-text{
|
|
5651
|
+
font-size:1.8em;
|
|
5652
|
+
margin-bottom:15px;
|
|
5653
|
+
}
|
|
5654
|
+
@media (max-width: 640px){
|
|
5655
|
+
.mobius-payment-summary__styled-box .coverage-title,.mobius-payment-summary__styled-box .close-coverage{
|
|
5656
|
+
margin-top:15px;
|
|
5657
|
+
}
|
|
5658
|
+
}
|
|
5659
|
+
.mobius-payment-summary__persistent-product-summary-div{
|
|
5660
|
+
width:340px;
|
|
5661
|
+
max-width:340px;
|
|
5662
|
+
}
|
|
5663
|
+
@media (max-width: 640px){
|
|
5664
|
+
.mobius-payment-summary__persistent-product-summary-div{
|
|
5665
|
+
width:100%;
|
|
5666
|
+
}
|
|
5667
|
+
}
|
|
5668
|
+
.mobius-payment-summary__persistent-product-summary-div > div{
|
|
5669
|
+
margin-bottom:20px;
|
|
5670
|
+
background-color:var(--color-background);
|
|
5671
|
+
}
|
|
5672
|
+
.mobius-payment-summary__story-container{
|
|
5673
|
+
max-width:1004px;
|
|
5674
|
+
}
|
|
5675
|
+
.mobius-payment-summary__close-text{
|
|
5676
|
+
font-size:1em;
|
|
5677
|
+
margin:0;
|
|
5678
|
+
}
|
|
5679
|
+
.mobius-payment-summary__cover{
|
|
5680
|
+
margin-bottom:10px;
|
|
5681
|
+
font-size:18px;
|
|
5682
|
+
font-weight:bold;
|
|
5683
|
+
}
|
|
5684
|
+
.mobius-payment-summary__flex-margin-bottom{
|
|
5685
|
+
margin-bottom:5px;
|
|
5686
|
+
}
|
|
5687
|
+
.mobius-payment-summary__flex-margin-top{
|
|
5688
|
+
margin-top:10px;
|
|
5689
|
+
}
|
|
5690
|
+
.mobius-payment-summary__additional-covers{
|
|
5691
|
+
width:100%;
|
|
5692
|
+
border-top:1px solid var(--combobox-border-color);
|
|
5693
|
+
margin-bottom:15px;
|
|
5694
|
+
}
|
|
5695
|
+
.mobius-payment-summary__minimum-covers{
|
|
5696
|
+
color:var(--color-primary);
|
|
5697
|
+
cursor:pointer;
|
|
5698
|
+
margin-bottom:10px;
|
|
5699
|
+
}
|
|
5700
|
+
@media (min-width: 641px){
|
|
5701
|
+
.mobius-payment-summary__minimum-covers-desktop{
|
|
5702
|
+
min-height:92px;
|
|
5703
|
+
}
|
|
5704
|
+
}
|
|
5705
|
+
.mobius-payment-summary__price-summary-box{
|
|
5706
|
+
border:1px solid var(--combobox-border-color);
|
|
5707
|
+
border-radius:10px;
|
|
5708
|
+
padding:0px;
|
|
5709
|
+
margin-bottom:20px;
|
|
5710
|
+
overflow:hidden;
|
|
5711
|
+
}
|
|
5712
|
+
.mobius-payment-summary__price-summary-text{
|
|
5713
|
+
font-size:18px;
|
|
5714
|
+
font-weight:bold;
|
|
5715
|
+
}
|
|
5716
|
+
.mobius-payment-summary__summary-wrapper-segment{
|
|
5717
|
+
width:100%;
|
|
5718
|
+
justify-content:space-between;
|
|
5719
|
+
}
|
|
5720
|
+
.mobius-payment-summary__summary-wrapper-div{
|
|
5721
|
+
width:100%;
|
|
5722
|
+
}
|
|
5723
|
+
.mobius-dialogue-modal__description{
|
|
5724
|
+
margin:7px;
|
|
5725
|
+
text-align:left;
|
|
5726
|
+
line-height:25px;
|
|
5727
|
+
font-size:1.2em;
|
|
5728
|
+
}
|
|
5729
|
+
.mobius-dialogue-modal__description_drawer{
|
|
5730
|
+
margin:0;
|
|
5731
|
+
overflow-y:auto;
|
|
5732
|
+
padding-bottom:70px;
|
|
5733
|
+
}
|
|
5734
|
+
.mobius-dialogue-modal__description_non_drawer{
|
|
5735
|
+
max-height:calc(100vh - 210px);
|
|
5736
|
+
overflow-y:auto;
|
|
5737
|
+
}
|
|
5738
|
+
.mobius-dialogue-modal__header{
|
|
5739
|
+
font-weight:600;
|
|
5740
|
+
line-height:var(--line-height-tight);
|
|
5741
|
+
}
|
|
5742
|
+
.mobius-dialogue-modal__styled-button.mobius-button.--variant-primary{
|
|
5743
|
+
background:transparent;
|
|
5744
|
+
color:inherit;
|
|
5745
|
+
font-weight:inherit;
|
|
5746
|
+
border:0;
|
|
5747
|
+
padding-top:inherit;
|
|
5748
|
+
padding-bottom:inherit;
|
|
5749
|
+
padding-left:inherit;
|
|
5750
|
+
padding-right:inherit;
|
|
5751
|
+
-webkit-text-decoration:underline;
|
|
5752
|
+
text-decoration:underline;
|
|
5753
|
+
}
|
|
5754
|
+
.mobius-dialogue-modal__styled-button.mobius-button.--variant-primary:hover{
|
|
5755
|
+
color:inherit;
|
|
5756
|
+
}
|
|
5757
|
+
.mobius-dialogue-modal__styled-button.mobius-button:focus-visible,.mobius-dialogue-modal__styled-button.mobius-button.--is-focus-visible{
|
|
5758
|
+
box-shadow:0 0 0 var(--size-focus-ring) var(--color-primary);
|
|
5759
|
+
}
|
|
5760
|
+
.mobius-dialogue-modal__styled-cta{
|
|
5761
|
+
width:100%;
|
|
5762
|
+
}
|
|
5763
|
+
.mobius-dialogue-modal__styled-cta.--is-ghost{
|
|
5764
|
+
background:var(--color-background);
|
|
5765
|
+
border-color:var(--color-primary);
|
|
5766
|
+
color:var(--color-primary);
|
|
5767
|
+
}
|
|
5768
|
+
.mobius-dialogue-modal__styled-cta-wrapper{
|
|
5769
|
+
padding:var(--size-lg);
|
|
5770
|
+
background:var(--color-background);
|
|
5771
|
+
border-top:1px solid var(--combobox-border-color);
|
|
5772
|
+
position:fixed;
|
|
5773
|
+
width:100%;
|
|
5774
|
+
width:var(--drawer-width);
|
|
5775
|
+
bottom:0;
|
|
5776
|
+
right:0;
|
|
5777
|
+
}
|
|
5778
|
+
.mobius-dialogue-modal__styled-drawer-content p,.mobius-dialogue-modal__styled-drawer-content li{
|
|
5779
|
+
color:var(--color-text-medium);
|
|
5780
|
+
font-size:14px;
|
|
5781
|
+
line-height:1.42;
|
|
5782
|
+
}
|
|
5783
|
+
.mobius-dialogue-modal__styled-drawer-content p{
|
|
5784
|
+
margin-bottom:16px;
|
|
5785
|
+
}
|
|
5786
|
+
:is(.mobius-dialogue-modal__styled-drawer-content p):first-of-type{
|
|
5787
|
+
margin-top:0;
|
|
5788
|
+
}
|
|
5789
|
+
:is(.mobius-dialogue-modal__styled-drawer-content p) + .list__covered,:is(.mobius-dialogue-modal__styled-drawer-content p) + .list__not-covered{
|
|
5790
|
+
margin-top:0;
|
|
5791
|
+
}
|
|
5792
|
+
.mobius-dialogue-modal__styled-drawer-content .list-heading{
|
|
5793
|
+
color:var(--color-neutral-700);
|
|
5794
|
+
font-size:16px;
|
|
5795
|
+
font-weight:600;
|
|
5796
|
+
display:block;
|
|
5797
|
+
margin-top:24px;
|
|
5798
|
+
margin-bottom:8px;
|
|
5799
|
+
}
|
|
5800
|
+
:is(.mobius-dialogue-modal__styled-drawer-content .list-heading) em{
|
|
5801
|
+
font-style:normal;
|
|
5802
|
+
}
|
|
5803
|
+
.mobius-dialogue-modal__styled-drawer-content ul{
|
|
5804
|
+
margin-top:0;
|
|
5805
|
+
padding-left:12px;
|
|
5806
|
+
}
|
|
5807
|
+
:is(.mobius-dialogue-modal__styled-drawer-content ul) li{
|
|
5808
|
+
margin-bottom:6px;
|
|
5809
|
+
}
|
|
5810
|
+
.mobius-dialogue-modal__styled-drawer-content .list__covered,.mobius-dialogue-modal__styled-drawer-content .list__not-covered{
|
|
5811
|
+
padding-left:0;
|
|
5812
|
+
text-transform:lowercase;
|
|
5813
|
+
}
|
|
5814
|
+
:is(.mobius-dialogue-modal__styled-drawer-content .list__covered,.mobius-dialogue-modal__styled-drawer-content .list__not-covered) li{
|
|
5815
|
+
list-style:none;
|
|
5816
|
+
display:flex;
|
|
5817
|
+
margin-bottom:6px;
|
|
5818
|
+
align-items:baseline;
|
|
5819
|
+
}
|
|
5820
|
+
:is(:is(.mobius-dialogue-modal__styled-drawer-content .list__covered,.mobius-dialogue-modal__styled-drawer-content .list__not-covered) li)::before{
|
|
5821
|
+
display:block;
|
|
5822
|
+
flex-basis:16px;
|
|
5823
|
+
}
|
|
5824
|
+
:is(:is(.mobius-dialogue-modal__styled-drawer-content .list__covered,.mobius-dialogue-modal__styled-drawer-content .list__not-covered) li):last-of-type{
|
|
5825
|
+
margin-bottom:0;
|
|
5826
|
+
}
|
|
5827
|
+
:is(.mobius-dialogue-modal__styled-drawer-content .list__covered) li::before{
|
|
5828
|
+
content:url("data:image/svg+xml,%3Csvg aria-hidden%3D%22true%22 width%3D%2214px%22 height%3D%2210px%22 viewBox%3D%220 0 14 10%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E %3Cg stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cg fill%3D%22%23008744%22 fill-rule%3D%22nonzero%22%3E %3Cpolygon points%3D%2214 1.0625 13.4688 1.59375 5.53125 9.5 5 10.0312 4.46875 9.5 0.53125 5.5625 0 5.03125 1.03125 3.96875 1.5625 4.5 5 7.90625 12.4062 0.53125 12.9375 0%22%3E%3C%2Fpolygon%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E");
|
|
5829
|
+
width:16px;
|
|
5830
|
+
height:16px;
|
|
5831
|
+
}
|
|
5832
|
+
:is(.mobius-dialogue-modal__styled-drawer-content .list__not-covered) li::before{
|
|
5833
|
+
content:url("data:image/svg+xml,%3Csvg aria-hidden%3D%22true%22 width%3D%2211px%22 height%3D%2211px%22 viewBox%3D%220 0 13 13%22 version%3D%221.1%22 xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E %3Cg stroke%3D%22none%22 stroke-width%3D%221%22 fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cg fill%3D%22%23B90909%22 fill-rule%3D%22nonzero%22%3E %3Cpolygon points%3D%2212.35 1.95 13 1.3 11.7 0.00382352941 11.05 0.653823529 6.5 5.20382353 1.95 0.65 1.3 0 0.00382352941 1.3 0.653823529 1.95 5.20382353 6.5 0.65 11.05 0 11.7 1.3 12.9961765 1.95 12.3461765 6.5 7.79617647 11.05 12.35 11.7 13 12.9961765 11.7 12.3461765 11.05 7.79617647 6.5%22%3E%3C%2Fpolygon%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E");
|
|
5834
|
+
width:11px;
|
|
5835
|
+
height:11px;
|
|
5836
|
+
position:relative;
|
|
5837
|
+
top:1px;
|
|
5838
|
+
}
|
|
5839
|
+
.mobius-transfer-consent__styled-div{
|
|
5840
|
+
width:50%;
|
|
5841
|
+
text-align:center;
|
|
5842
|
+
margin-top:60px;
|
|
5843
|
+
}
|
|
5844
|
+
.mobius-transfer-consent__styled-button-container{
|
|
5845
|
+
width:50%;
|
|
5846
|
+
margin-top:50px;
|
|
5847
|
+
}
|
|
5848
|
+
.mobius-transfer-consent__styled-button-container .mobius-button{
|
|
5849
|
+
flex:1;
|
|
5850
|
+
}
|
|
5851
|
+
.mobius-transfer-reference__span{
|
|
5852
|
+
font-weight:bold;
|
|
5853
|
+
}
|
|
5854
|
+
.mobius-quote-details-form__buy_button{
|
|
5855
|
+
padding:10px 18px;
|
|
5578
5856
|
}
|
|
5579
5857
|
:root,
|
|
5580
5858
|
:host{
|
|
@@ -5869,10 +6147,10 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5869
6147
|
min-width:100px;
|
|
5870
6148
|
}
|
|
5871
6149
|
.mobius-interventions__trade-based-claims-text-flexbox{
|
|
5872
|
-
|
|
6150
|
+
max-width:50%;
|
|
5873
6151
|
}
|
|
5874
6152
|
.mobius-interventions__trade-based-claims-text{
|
|
5875
|
-
font-size:
|
|
6153
|
+
font-size:20px;
|
|
5876
6154
|
line-height:1.4;
|
|
5877
6155
|
margin:0;
|
|
5878
6156
|
text-wrap:stable;
|
|
@@ -5910,6 +6188,10 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5910
6188
|
margin:0%;
|
|
5911
6189
|
}
|
|
5912
6190
|
|
|
6191
|
+
.mobius-interventions__trade-based-claims-text-flexbox{
|
|
6192
|
+
max-width:100%;
|
|
6193
|
+
}
|
|
6194
|
+
|
|
5913
6195
|
.mobius-interventions__trade-based-claims-cta-button{
|
|
5914
6196
|
margin-top:0%;
|
|
5915
6197
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.
|
|
30
|
-
"@simplybusiness/mobius-datepicker": "^6.
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.
|
|
32
|
-
"@simplybusiness/theme-core": "^7.
|
|
29
|
+
"@simplybusiness/mobius": "^5.23.0",
|
|
30
|
+
"@simplybusiness/mobius-datepicker": "^6.5.0",
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.68.0",
|
|
32
|
+
"@simplybusiness/theme-core": "^7.5.0"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"css-loader": "^7.1.2",
|
package/src/index.css
CHANGED
|
@@ -76,6 +76,9 @@
|
|
|
76
76
|
|
|
77
77
|
/* Journey Components (payment summary, etc.) */
|
|
78
78
|
@import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
|
|
79
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/DialogueModal/DialogueModal.css";
|
|
80
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/TransferConsentPageUK/styles.css";
|
|
81
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/QuoteDetailsForm/styles.css";
|
|
79
82
|
|
|
80
83
|
/* @simplybusiness/mobius-datepicker */
|
|
81
84
|
@import "@simplybusiness/mobius-datepicker/src/components/DatePicker/DatePicker.css";
|