@simplybusiness/theme-core 7.5.1 → 7.5.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 +7 -0
- package/dist/index.css +10 -3
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -584,19 +584,26 @@ a.mobius-button:focus-visible,
|
|
|
584
584
|
max-height:var(--listbox-max-height-mobile);
|
|
585
585
|
}
|
|
586
586
|
|
|
587
|
+
.mobius-combobox__no-options{
|
|
588
|
+
padding:var(--option-padding);
|
|
589
|
+
text-align:center;
|
|
590
|
+
}
|
|
591
|
+
|
|
587
592
|
.mobius-combobox__option{
|
|
588
593
|
padding:var(--option-padding);
|
|
589
594
|
cursor:pointer;
|
|
595
|
+
margin:2px;
|
|
596
|
+
border:solid 2px transparent;
|
|
597
|
+
border-radius:var(--radius-1);
|
|
590
598
|
}
|
|
591
599
|
|
|
592
600
|
.mobius-combobox__option:hover{
|
|
593
|
-
background-color:var(--color-primary);
|
|
601
|
+
background-color:var(--color-primary-light);
|
|
594
602
|
color:var(--color-neutral-100);
|
|
595
603
|
}
|
|
596
604
|
|
|
597
605
|
.mobius-combobox__option--is-highlighted{
|
|
598
|
-
|
|
599
|
-
color:var(--color-neutral-100);
|
|
606
|
+
border-color:var(--color-focus);
|
|
600
607
|
}
|
|
601
608
|
|
|
602
609
|
[role="group"]{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.5.
|
|
3
|
+
"version": "7.5.2",
|
|
4
4
|
"main": "dist/index.css",
|
|
5
5
|
"simplyBusiness": {
|
|
6
6
|
"publishToPublicNpm": true
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"./fonts": "./dist/fonts.css"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@simplybusiness/mobius": "^5.24.
|
|
29
|
+
"@simplybusiness/mobius": "^5.24.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"css-loader": "^7.1.2",
|