@simplybusiness/theme-simplybusiness 1.26.1 → 1.26.3
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 +16 -0
- package/dist/index.css +17 -31
- package/package.json +6 -6
- package/src/index.css +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.26.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c6a2c58: adjust css to fix partial quotes ui
|
|
8
|
+
- Updated dependencies [c6a2c58]
|
|
9
|
+
- @simplybusiness/mobius-journey@8.49.1
|
|
10
|
+
|
|
11
|
+
## 1.26.2
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 4b0d4d1: create secondary dark as an alias for secondary hover
|
|
16
|
+
- Updated dependencies [4b0d4d1]
|
|
17
|
+
- @simplybusiness/theme-core@7.9.1
|
|
18
|
+
|
|
3
19
|
## 1.26.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -2427,7 +2427,8 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
2427
2427
|
--color-primary-darker:var(--color-azure-600);
|
|
2428
2428
|
--color-primary-hover:var(--color-primary-darker);
|
|
2429
2429
|
--color-secondary:var(--color-azure-500);
|
|
2430
|
-
--color-secondary-
|
|
2430
|
+
--color-secondary-dark:var(--color-azure-600);
|
|
2431
|
+
--color-secondary-hover:var(--color-secondary-dark);
|
|
2431
2432
|
--color-focus:var(--color-bubblegum-500);
|
|
2432
2433
|
--color-accent:var(--color-bubblegum-500);
|
|
2433
2434
|
--color-accent-lighter:var(--color-bubblegum-300);
|
|
@@ -4075,42 +4076,38 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4075
4076
|
margin-top:0;
|
|
4076
4077
|
}
|
|
4077
4078
|
}
|
|
4078
|
-
.partial-quotes-referral__container
|
|
4079
|
+
.partial-quotes-referral__container{
|
|
4079
4080
|
display:grid;
|
|
4080
4081
|
grid-row:span 4;
|
|
4081
4082
|
height:100%;
|
|
4082
4083
|
}
|
|
4083
|
-
.partial-quotes-referral__container
|
|
4084
|
+
.partial-quotes-referral__container--grid .partial-quotes-referral__insurer-panel{
|
|
4084
4085
|
display:grid;
|
|
4085
4086
|
grid-template-columns:repeat(3, 1fr);
|
|
4086
4087
|
}
|
|
4087
|
-
.partial-quotes-
|
|
4088
|
+
.partial-quotes-referral-logo{
|
|
4088
4089
|
object-position:center;
|
|
4089
4090
|
}
|
|
4090
4091
|
@media (min-width: 850px){
|
|
4091
|
-
.partial-quotes-referral__container
|
|
4092
|
+
.partial-quotes-referral__container--grid .partial-quotes-referral__main{
|
|
4092
4093
|
grid-template-columns:unset;
|
|
4093
4094
|
}
|
|
4094
|
-
.partial-quotes-referral__container
|
|
4095
|
+
.partial-quotes-referral__container--banner .partial-quotes-referral__main{
|
|
4095
4096
|
grid-template-columns:2fr 3fr;
|
|
4096
4097
|
}
|
|
4097
|
-
|
|
4098
|
-
.partial-quotes-referral__container.partial-quotes-referral__container--grid.partial-quotes-referral__container-variant-b .partial-quotes-referral__main{
|
|
4098
|
+
.partial-quotes-referral__container-variant-b .partial-quotes-referral__main{
|
|
4099
4099
|
grid-template-columns:none;
|
|
4100
4100
|
}
|
|
4101
|
-
|
|
4102
|
-
.partial-quotes-referral__container.partial-quotes-referral-b .partial-quotes-referral__insurer-panel{
|
|
4101
|
+
.partial-quotes-referral__insurer-panel{
|
|
4103
4102
|
grid-template-columns:repeat(5, minmax(75px, 1fr));
|
|
4104
4103
|
justify-content:center;
|
|
4105
4104
|
align-content:space-around;
|
|
4106
4105
|
}
|
|
4107
|
-
|
|
4108
|
-
.partial-quotes-referral__container.partial-quotes-referral__container--grid.partial-quotes-referral-b .partial-quotes-referral__insurer-panel{
|
|
4106
|
+
.partial-quotes-referral__container--grid .partial-quotes-referral__insurer-panel{
|
|
4109
4107
|
grid-template-columns:repeat(3, minmax(75px, 1fr));
|
|
4110
4108
|
gap:var(--size-xs);
|
|
4111
4109
|
}
|
|
4112
|
-
|
|
4113
|
-
.partial-quotes-referral__container.partial-quotes-referral-b .partial-quotes-referral-logo{
|
|
4110
|
+
.partial-quotes-referral-logo{
|
|
4114
4111
|
width:75px;
|
|
4115
4112
|
height:25px;
|
|
4116
4113
|
}
|
|
@@ -4200,19 +4197,18 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4200
4197
|
}
|
|
4201
4198
|
.partial-quotes-referral__insurer-panel{
|
|
4202
4199
|
display:grid;
|
|
4203
|
-
grid-template-columns:repeat(auto-fit, minmax(
|
|
4200
|
+
grid-template-columns:repeat(auto-fit, minmax(80px, 1fr));
|
|
4204
4201
|
gap:var(--size-xs);
|
|
4205
4202
|
opacity:0.8;
|
|
4206
4203
|
}
|
|
4207
4204
|
.partial-quotes-referral__insurer-panel *{
|
|
4208
4205
|
justify-self:center;
|
|
4209
4206
|
}
|
|
4210
|
-
.partial-quotes-referral-logo{
|
|
4211
|
-
width:
|
|
4207
|
+
.partial-quotes-referral-logo.mobius-quote-details__logo{
|
|
4208
|
+
width:80px;
|
|
4212
4209
|
height:30px;
|
|
4213
4210
|
object-fit:contain;
|
|
4214
4211
|
object-position:center;
|
|
4215
|
-
gap:var(--size-xs);
|
|
4216
4212
|
}
|
|
4217
4213
|
@media (min-width: 850px){
|
|
4218
4214
|
.partial-quotes-referral__main{
|
|
@@ -4223,16 +4219,6 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4223
4219
|
grid-template-columns:repeat(2, 1fr);
|
|
4224
4220
|
grid-template-rows:1fr;
|
|
4225
4221
|
}
|
|
4226
|
-
|
|
4227
|
-
.partial-quotes-referral__insurer-panel{
|
|
4228
|
-
grid-template-columns:repeat(auto-fit, minmax(128px, 1fr));
|
|
4229
|
-
gap:var(--size-md);
|
|
4230
|
-
}
|
|
4231
|
-
|
|
4232
|
-
.partial-quotes-referral-logo{
|
|
4233
|
-
width:128px;
|
|
4234
|
-
height:60px;
|
|
4235
|
-
}
|
|
4236
4222
|
}
|
|
4237
4223
|
.mobius-quote-card__coverage{
|
|
4238
4224
|
flex-grow:1;
|
|
@@ -4687,14 +4673,14 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
4687
4673
|
gap:var(--size-sm);
|
|
4688
4674
|
align-items:flex-end;
|
|
4689
4675
|
}
|
|
4690
|
-
:where([data-variant="without-qdp-drawer"]) .mobius-quote-actions__button{
|
|
4676
|
+
:is(:where([data-variant="referral-reasons"]),:where([data-variant="without-qdp-drawer"])) .mobius-quote-actions__button{
|
|
4691
4677
|
margin-top:0;
|
|
4692
4678
|
}
|
|
4693
|
-
:where([data-variant="without-qdp-drawer"]) .mobius-quote-actions__button--is-details{
|
|
4679
|
+
:is(:where([data-variant="referral-reasons"]),:where([data-variant="without-qdp-drawer"])) .mobius-quote-actions__button--is-details{
|
|
4694
4680
|
display:none;
|
|
4695
4681
|
}
|
|
4696
4682
|
@media (min-width: 850px){
|
|
4697
|
-
:where([data-variant="without-qdp-drawer"]) .mobius-quote-actions__button--is-details{
|
|
4683
|
+
:is(:where([data-variant="referral-reasons"]),:where([data-variant="without-qdp-drawer"])) .mobius-quote-actions__button--is-details{
|
|
4698
4684
|
display:block;
|
|
4699
4685
|
}
|
|
4700
4686
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.26.
|
|
3
|
+
"version": "1.26.3",
|
|
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.30.
|
|
30
|
-
"@simplybusiness/mobius-chatbot": "^1.4.
|
|
29
|
+
"@simplybusiness/mobius": "^5.30.1",
|
|
30
|
+
"@simplybusiness/mobius-chatbot": "^1.4.18",
|
|
31
31
|
"@simplybusiness/mobius-datepicker": "^6.7.4",
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.74.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
34
|
-
"@simplybusiness/theme-core": "^7.9.
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.74.3",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.49.1",
|
|
34
|
+
"@simplybusiness/theme-core": "^7.9.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"css-loader": "^7.1.2",
|
package/src/index.css
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/Header/Header.css";
|
|
44
44
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/PricingUK/Pricing.css";
|
|
45
45
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/QuoteCard/QuoteActions/QuoteActions.css";
|
|
46
|
-
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/PartialQuotesReferral/
|
|
46
|
+
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/ExperimentGridView/PartialQuotesReferral/PartialQuotesReferral.css";
|
|
47
47
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesCard/NoQuotesCard.css";
|
|
48
48
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/NoQuotesReferral/NoQuotesReferral.css";
|
|
49
49
|
@import "@simplybusiness/mobius-journey/src/components/QuoteCards/PartialQuotesReferral/PartialQuotesReferral.css";
|