@simplybusiness/theme-simplybusiness 1.9.17 → 1.9.18
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 +8 -0
- package/dist/index.css +165 -0
- package/package.json +2 -2
- package/src/index.css +3 -0
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -5197,6 +5197,171 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
5197
5197
|
padding-right:var(--size-sm);
|
|
5198
5198
|
transition:height 1s;
|
|
5199
5199
|
}
|
|
5200
|
+
.mobius-payment_summary__styled-div{
|
|
5201
|
+
display:grid;
|
|
5202
|
+
row-gap:var(--size-sm);
|
|
5203
|
+
margin-top:var(--size-sm);
|
|
5204
|
+
}
|
|
5205
|
+
.mobius-payment_summary__styled-div .incomplete-quote-actions{
|
|
5206
|
+
padding:14px;
|
|
5207
|
+
}
|
|
5208
|
+
@media (max-width: 640px){
|
|
5209
|
+
.mobius-payment_summary__styled-div .incomplete-quote-actions{
|
|
5210
|
+
padding:16px;
|
|
5211
|
+
}
|
|
5212
|
+
}
|
|
5213
|
+
.mobius-payment_summary__button-div{
|
|
5214
|
+
display:flex;
|
|
5215
|
+
justify-content:space-around;
|
|
5216
|
+
margin-top:25px;
|
|
5217
|
+
margin-bottom:0;
|
|
5218
|
+
gap:var(--size-sm);
|
|
5219
|
+
}
|
|
5220
|
+
.mobius-payment_summary__big-button-span{
|
|
5221
|
+
font-weight:700;
|
|
5222
|
+
margin-left:10px;
|
|
5223
|
+
margin-right:10px;
|
|
5224
|
+
}
|
|
5225
|
+
.mobius-payment_summary__styled-divider{
|
|
5226
|
+
height:var(--size-sm) !important;
|
|
5227
|
+
}
|
|
5228
|
+
.mobius-payment_summary__styled-flex{
|
|
5229
|
+
width:100%;
|
|
5230
|
+
flex-direction:row;
|
|
5231
|
+
justify-content:space-between;
|
|
5232
|
+
}
|
|
5233
|
+
.mobius-payment_summary__styled-flex .today-payment,.mobius-payment_summary__styled-flex .total-payment{
|
|
5234
|
+
font-weight:bold;
|
|
5235
|
+
}
|
|
5236
|
+
.mobius-payment_summary__styled-wrapper{
|
|
5237
|
+
width:100%;
|
|
5238
|
+
flex-direction:column;
|
|
5239
|
+
}
|
|
5240
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .mobius-text.--is-small{
|
|
5241
|
+
line-height:18px;
|
|
5242
|
+
color:var(--color-text);
|
|
5243
|
+
}
|
|
5244
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .today-payment,.mobius-payment_summary__styled-wrapper.combined-styles .total-payment{
|
|
5245
|
+
font-weight:normal;
|
|
5246
|
+
}
|
|
5247
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .monthly-payment{
|
|
5248
|
+
margin-top:var(--size-xs);
|
|
5249
|
+
}
|
|
5250
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .mobius-divider{
|
|
5251
|
+
height:var(--size-sm);
|
|
5252
|
+
}
|
|
5253
|
+
.mobius-payment_summary__styled-wrapper.combined-styles .mobius-divider__inner{
|
|
5254
|
+
background-color:var(--color-border-medium);
|
|
5255
|
+
}
|
|
5256
|
+
.mobius-payment_summary__summary-fragment-wrapper .arrow{
|
|
5257
|
+
display:inline-block;
|
|
5258
|
+
width:9px;
|
|
5259
|
+
height:9px;
|
|
5260
|
+
border-top:1px solid var(--color-primary);
|
|
5261
|
+
border-right:1px solid var(--color-primary);
|
|
5262
|
+
margin-right:8px;
|
|
5263
|
+
transform-origin:center;
|
|
5264
|
+
margin-bottom:3px;
|
|
5265
|
+
}
|
|
5266
|
+
.mobius-payment_summary__summary-fragment-wrapper .arrow-top{
|
|
5267
|
+
transform:rotate(-45deg);
|
|
5268
|
+
}
|
|
5269
|
+
.mobius-payment_summary__summary-fragment-wrapper .arrow-bottom{
|
|
5270
|
+
transform:rotate(135deg);
|
|
5271
|
+
}
|
|
5272
|
+
.mobius-payment_summary__summary-fragment-wrapper .additional_covers{
|
|
5273
|
+
border-top:1px solid #cccccc;
|
|
5274
|
+
padding-top:16px;
|
|
5275
|
+
}
|
|
5276
|
+
.mobius-payment_summary__summary-fragment-wrapper .additional_covers ~ .additional_covers{
|
|
5277
|
+
border:none;
|
|
5278
|
+
padding-top:0px;
|
|
5279
|
+
}
|
|
5280
|
+
.mobius-payment_summary__summary-fragment-wrapper .align-right{
|
|
5281
|
+
text-align:right;
|
|
5282
|
+
}
|
|
5283
|
+
.mobius-payment_summary__summary-fragment-wrapper.combined-styles .mobius-divider__inner{
|
|
5284
|
+
background-color:var(--color-border-medium);
|
|
5285
|
+
}
|
|
5286
|
+
.mobius-payment_summary__section-header-text{
|
|
5287
|
+
margin-top:0;
|
|
5288
|
+
margin-bottom:16px;
|
|
5289
|
+
font-size:16px;
|
|
5290
|
+
font-weight:bold;
|
|
5291
|
+
}
|
|
5292
|
+
.mobius-payment_summary__styled-grid{
|
|
5293
|
+
display:grid;
|
|
5294
|
+
grid-template-columns:65% 35%;
|
|
5295
|
+
width:100%;
|
|
5296
|
+
}
|
|
5297
|
+
.mobius-payment_summary__price-summary-group{
|
|
5298
|
+
padding:13px;
|
|
5299
|
+
box-sizing:border-box;
|
|
5300
|
+
}
|
|
5301
|
+
.mobius-payment_summary__border-bottom{
|
|
5302
|
+
border-bottom:1px solid #ccc;
|
|
5303
|
+
}
|
|
5304
|
+
.mobius-payment_summary__form-actions-box{
|
|
5305
|
+
grid-area:form-actions;
|
|
5306
|
+
}
|
|
5307
|
+
.mobius-payment_summary__payment-summary-box{
|
|
5308
|
+
grid-area:payment-summary;
|
|
5309
|
+
}
|
|
5310
|
+
.mobius-payment_summary__product-payment-options{
|
|
5311
|
+
grid-area:mobius-payment_summary__product-payment-options;
|
|
5312
|
+
display:flex;
|
|
5313
|
+
flex-direction:column;
|
|
5314
|
+
border-radius:8px;
|
|
5315
|
+
}
|
|
5316
|
+
.mobius-payment_summary__product-payment-options .mobius-segment-group{
|
|
5317
|
+
margin-bottom:0;
|
|
5318
|
+
}
|
|
5319
|
+
.mobius-payment_summary__product-payment-options .mobius-segment-group + .mobius-segment-group{
|
|
5320
|
+
margin-top:32px;
|
|
5321
|
+
}
|
|
5322
|
+
.mobius-payment_summary__product-payment-options .non-purchasable-product{
|
|
5323
|
+
border:3px solid var(--color-primary);
|
|
5324
|
+
}
|
|
5325
|
+
.mobius-payment_summary__product-payment-options .exclude-for-purchase{
|
|
5326
|
+
opacity:0.5;
|
|
5327
|
+
cursor:not-allowed;
|
|
5328
|
+
}
|
|
5329
|
+
.mobius-payment_summary__product-payment-options .non-eligible-item{
|
|
5330
|
+
flex-flow:wrap;
|
|
5331
|
+
}
|
|
5332
|
+
.mobius-payment_summary__product-payment-options.combined-styles .mobius-segment-group:not(.non-purchasable-product){
|
|
5333
|
+
border:1px solid var(--color-border-medium);
|
|
5334
|
+
}
|
|
5335
|
+
.mobius-payment_summary__outer-grid{
|
|
5336
|
+
display:grid;
|
|
5337
|
+
gap:var(--font-size-6);
|
|
5338
|
+
grid-template-columns:2fr 1fr;
|
|
5339
|
+
grid-template-areas:"mobius-payment_summary__product-payment-options payment-summary" "continuation-notice payment-summary" "form-actions payment-summary";
|
|
5340
|
+
}
|
|
5341
|
+
.mobius-payment_summary__outer-grid.combined-payment-page{
|
|
5342
|
+
gap:var(--font-size-3);
|
|
5343
|
+
grid-template-columns:1fr;
|
|
5344
|
+
grid-template-areas:"mobius-payment_summary__product-payment-options" "continuation-notice" "payment-summary" "form-actions";
|
|
5345
|
+
}
|
|
5346
|
+
@media (max-width: 640px){
|
|
5347
|
+
.mobius-payment_summary__outer-grid{
|
|
5348
|
+
grid-template-columns:1fr;
|
|
5349
|
+
grid-template-areas:"mobius-payment_summary__product-payment-options" "continuation-notice" "payment-summary" "form-actions";
|
|
5350
|
+
}
|
|
5351
|
+
}
|
|
5352
|
+
.mobius-payment_summary__outer-grid.show-payment-summary-only{
|
|
5353
|
+
grid-template-columns:1fr;
|
|
5354
|
+
grid-template-areas:"payment-summary";
|
|
5355
|
+
}
|
|
5356
|
+
.mobius-payment_summary__styled-image{
|
|
5357
|
+
margin-bottom:12px;
|
|
5358
|
+
max-height:45px;
|
|
5359
|
+
max-width:100%;
|
|
5360
|
+
}
|
|
5361
|
+
.mobius-payment_summary__persistent-price-summary{
|
|
5362
|
+
background-color:white;
|
|
5363
|
+
width:fit-content;
|
|
5364
|
+
}
|
|
5200
5365
|
:root,
|
|
5201
5366
|
:host{
|
|
5202
5367
|
--date-picker-day-size:38px;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.18",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@simplybusiness/mobius": "^5.19.0",
|
|
30
30
|
"@simplybusiness/mobius-datepicker": "^6.4.1",
|
|
31
|
-
"@simplybusiness/mobius-journey": "^6.53.
|
|
31
|
+
"@simplybusiness/mobius-journey": "^6.53.1",
|
|
32
32
|
"@simplybusiness/theme-core": "^7.3.2"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
package/src/index.css
CHANGED
|
@@ -70,6 +70,9 @@
|
|
|
70
70
|
@import "@simplybusiness/mobius-journey/src/pages/AgentReferralPage/AgentReferralContainer.css";
|
|
71
71
|
@import "@simplybusiness/mobius-journey/src/pages/Main.css";
|
|
72
72
|
|
|
73
|
+
/* Journey Components (payment summary, etc.) */
|
|
74
|
+
@import "@simplybusiness/mobius-journey/src/components/shared/PersistentSummary/styles.css";
|
|
75
|
+
|
|
73
76
|
/* @simplybusiness/mobius-datepicker */
|
|
74
77
|
@import "@simplybusiness/mobius-datepicker/src/components/DatePicker/DatePicker.css";
|
|
75
78
|
|