@simplybusiness/theme-simplybusiness 1.19.5 → 1.19.6
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 +11 -0
- package/dist/index.css +143 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @simplybusiness/theme-simplybusiness
|
|
2
2
|
|
|
3
|
+
## 1.19.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [b4cf0a8]
|
|
8
|
+
- Updated dependencies [3557f56]
|
|
9
|
+
- Updated dependencies [8853aa9]
|
|
10
|
+
- Updated dependencies [7d0b5d6]
|
|
11
|
+
- @simplybusiness/mobius-journey@8.18.0
|
|
12
|
+
- @simplybusiness/mobius-interventions@1.42.0
|
|
13
|
+
|
|
3
14
|
## 1.19.5
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/index.css
CHANGED
|
@@ -6461,6 +6461,149 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
6461
6461
|
margin-bottom:0px;
|
|
6462
6462
|
font-size:10px;
|
|
6463
6463
|
}
|
|
6464
|
+
.star-rating__footer{
|
|
6465
|
+
box-sizing:border-box;
|
|
6466
|
+
position:fixed;
|
|
6467
|
+
left:0;
|
|
6468
|
+
bottom:0;
|
|
6469
|
+
width:100%;
|
|
6470
|
+
background-color:var(--color-background-highlight);
|
|
6471
|
+
box-shadow:0 -2px 5px rgba(0, 0, 0, 0.1);
|
|
6472
|
+
padding:var(--size-sm);
|
|
6473
|
+
display:grid;
|
|
6474
|
+
grid-template-columns:1fr auto;
|
|
6475
|
+
align-items:center;
|
|
6476
|
+
z-index:1000;
|
|
6477
|
+
transition:opacity var(--transition-standard), transform var(--transition-standard);
|
|
6478
|
+
}
|
|
6479
|
+
.star-rating__footer--hidden{
|
|
6480
|
+
opacity:0;
|
|
6481
|
+
display:none;
|
|
6482
|
+
pointer-events:none;
|
|
6483
|
+
}
|
|
6484
|
+
.star-rating__content{
|
|
6485
|
+
display:grid;
|
|
6486
|
+
grid-template-columns:auto 1fr auto;
|
|
6487
|
+
align-items:center;
|
|
6488
|
+
width:100%;
|
|
6489
|
+
max-width:1000px;
|
|
6490
|
+
margin:0 auto;
|
|
6491
|
+
gap:var(--size-sm);
|
|
6492
|
+
}
|
|
6493
|
+
.star-rating__text{
|
|
6494
|
+
display:grid;
|
|
6495
|
+
grid-template-columns:auto 1fr;
|
|
6496
|
+
align-items:center;
|
|
6497
|
+
gap:var(--size-sm);
|
|
6498
|
+
}
|
|
6499
|
+
.star-rating__icon{
|
|
6500
|
+
color:var(--color-accent);
|
|
6501
|
+
display:flex;
|
|
6502
|
+
align-items:center;
|
|
6503
|
+
}
|
|
6504
|
+
.star-rating__headline{
|
|
6505
|
+
font-weight:var(--font-weight-bold);
|
|
6506
|
+
display:inline;
|
|
6507
|
+
margin-right:var(--size-xs);
|
|
6508
|
+
}
|
|
6509
|
+
.star-rating__description{
|
|
6510
|
+
display:inline;
|
|
6511
|
+
}
|
|
6512
|
+
.star-rating__images{
|
|
6513
|
+
display:grid;
|
|
6514
|
+
grid-auto-flow:column;
|
|
6515
|
+
gap:var(--size-sm);
|
|
6516
|
+
}
|
|
6517
|
+
.star-rating__image{
|
|
6518
|
+
max-height:50px;
|
|
6519
|
+
width:auto;
|
|
6520
|
+
}
|
|
6521
|
+
.star-rating__close-button{
|
|
6522
|
+
background:none;
|
|
6523
|
+
border:none;
|
|
6524
|
+
cursor:pointer;
|
|
6525
|
+
color:var(--color-secondary);
|
|
6526
|
+
display:flex;
|
|
6527
|
+
align-items:center;
|
|
6528
|
+
gap:var(--size-xs);
|
|
6529
|
+
}
|
|
6530
|
+
.star-rating__button-text{
|
|
6531
|
+
-webkit-text-decoration:underline;
|
|
6532
|
+
text-decoration:underline;
|
|
6533
|
+
}
|
|
6534
|
+
.star-rating__desktop-button{
|
|
6535
|
+
display:flex;
|
|
6536
|
+
}
|
|
6537
|
+
.star-rating__mobile-button{
|
|
6538
|
+
display:none;
|
|
6539
|
+
}
|
|
6540
|
+
.star-rating__button{
|
|
6541
|
+
color:var(--color-secondary);
|
|
6542
|
+
align-items:center;
|
|
6543
|
+
gap:var(--size-xs);
|
|
6544
|
+
}
|
|
6545
|
+
@media (max-width: 768px){
|
|
6546
|
+
.star-rating__footer{
|
|
6547
|
+
grid-template-columns:1fr;
|
|
6548
|
+
align-items:flex-start;
|
|
6549
|
+
padding:var(--size-sm);
|
|
6550
|
+
}
|
|
6551
|
+
|
|
6552
|
+
.star-rating__headline{
|
|
6553
|
+
margin:0;
|
|
6554
|
+
display:block;
|
|
6555
|
+
}
|
|
6556
|
+
|
|
6557
|
+
.star-rating__content{
|
|
6558
|
+
grid-template-columns:1fr;
|
|
6559
|
+
gap:var(--size-xs);
|
|
6560
|
+
align-items:flex-start;
|
|
6561
|
+
}
|
|
6562
|
+
|
|
6563
|
+
.star-rating__text{
|
|
6564
|
+
grid-template-columns:1fr;
|
|
6565
|
+
gap:var(--size-xs);
|
|
6566
|
+
align-items:flex-start;
|
|
6567
|
+
}
|
|
6568
|
+
|
|
6569
|
+
.star-rating__images{
|
|
6570
|
+
grid-auto-flow:row;
|
|
6571
|
+
gap:var(--size-xs);
|
|
6572
|
+
}
|
|
6573
|
+
|
|
6574
|
+
.star-rating__image{
|
|
6575
|
+
max-height:var(--size-lg);
|
|
6576
|
+
width:auto;
|
|
6577
|
+
}
|
|
6578
|
+
|
|
6579
|
+
.star-rating__close-button{
|
|
6580
|
+
align-self:flex-end;
|
|
6581
|
+
}
|
|
6582
|
+
|
|
6583
|
+
.star-rating__desktop-button{
|
|
6584
|
+
display:none;
|
|
6585
|
+
}
|
|
6586
|
+
|
|
6587
|
+
.star-rating__mobile-button{
|
|
6588
|
+
display:flex;
|
|
6589
|
+
}
|
|
6590
|
+
|
|
6591
|
+
.star-rating__text-container{
|
|
6592
|
+
display:grid;
|
|
6593
|
+
grid-template-columns:1fr auto;
|
|
6594
|
+
align-items:center;
|
|
6595
|
+
width:100%;
|
|
6596
|
+
}
|
|
6597
|
+
|
|
6598
|
+
.star-rating__image{
|
|
6599
|
+
max-height:var(--size-lg);
|
|
6600
|
+
max-width:110px;
|
|
6601
|
+
}
|
|
6602
|
+
|
|
6603
|
+
.star-rating__button-text{
|
|
6604
|
+
margin:0;
|
|
6605
|
+
}
|
|
6606
|
+
}
|
|
6464
6607
|
.mobius-chatbot{
|
|
6465
6608
|
height:100%;
|
|
6466
6609
|
display:flex;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-simplybusiness",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.6",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
"@simplybusiness/mobius": "^5.26.3",
|
|
30
30
|
"@simplybusiness/mobius-chatbot": "^1.2.2",
|
|
31
31
|
"@simplybusiness/mobius-datepicker": "^6.5.14",
|
|
32
|
-
"@simplybusiness/mobius-interventions": "^1.
|
|
33
|
-
"@simplybusiness/mobius-journey": "^8.
|
|
32
|
+
"@simplybusiness/mobius-interventions": "^1.42.0",
|
|
33
|
+
"@simplybusiness/mobius-journey": "^8.18.0",
|
|
34
34
|
"@simplybusiness/theme-core": "^7.6.9"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|