@simplybusiness/theme-core 7.10.3 → 7.10.4
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 +4 -2
- package/package.json +2 -2
- package/src/variables.css +2 -0
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1025,7 +1025,7 @@ a.mobius-button:focus-visible,
|
|
|
1025
1025
|
-webkit-text-decoration:underline;
|
|
1026
1026
|
text-decoration:underline;
|
|
1027
1027
|
cursor:pointer;
|
|
1028
|
-
color:var(--color-
|
|
1028
|
+
color:var(--color-link-hover);
|
|
1029
1029
|
}
|
|
1030
1030
|
|
|
1031
1031
|
.mobius-link:focus-visible{
|
|
@@ -1044,7 +1044,7 @@ a.mobius-button:focus-visible,
|
|
|
1044
1044
|
}
|
|
1045
1045
|
|
|
1046
1046
|
.mobius-link--secondary:hover,.mobius-link--secondary:active{
|
|
1047
|
-
color:var(--color-link-secondary);
|
|
1047
|
+
color:var(--color-link-secondary-hover);
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
1050
|
.mobius-list{
|
|
@@ -3049,7 +3049,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3049
3049
|
--table-border-width:1px;
|
|
3050
3050
|
--title-decorator-width:8px;
|
|
3051
3051
|
--color-link:var(--color-secondary);
|
|
3052
|
+
--color-link-hover:var(--color-secondary-hover);
|
|
3052
3053
|
--color-link-secondary:var(--color-link);
|
|
3054
|
+
--color-link-secondary-hover:var(--color-link-hover);
|
|
3053
3055
|
}
|
|
3054
3056
|
|
|
3055
3057
|
:root{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.10.
|
|
3
|
+
"version": "7.10.4",
|
|
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.32.
|
|
29
|
+
"@simplybusiness/mobius": "^5.32.3"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"build-scripts": "^1.0.1"
|
package/src/variables.css
CHANGED