@simplybusiness/theme-core 7.7.3 → 7.8.0
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 +11 -1
- package/package.json +2 -2
- package/src/variables.css +4 -0
package/CHANGELOG.md
CHANGED
package/dist/index.css
CHANGED
|
@@ -1043,7 +1043,7 @@ a.mobius-button:focus-visible,
|
|
|
1043
1043
|
box-sizing:border-box;
|
|
1044
1044
|
font-family:var(--font-family);
|
|
1045
1045
|
line-height:var(--line-height-normal);
|
|
1046
|
-
color:var(--color-
|
|
1046
|
+
color:var(--color-link);
|
|
1047
1047
|
outline:none;
|
|
1048
1048
|
border-radius:var(--radius-1);
|
|
1049
1049
|
}
|
|
@@ -1066,6 +1066,14 @@ a.mobius-button:focus-visible,
|
|
|
1066
1066
|
cursor:not-allowed;
|
|
1067
1067
|
}
|
|
1068
1068
|
|
|
1069
|
+
.mobius-link--secondary{
|
|
1070
|
+
color:var(--color-link-secondary);
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
.mobius-link--secondary:hover,.mobius-link--secondary:active{
|
|
1074
|
+
color:var(--color-link-secondary);
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1069
1077
|
.mobius-list{
|
|
1070
1078
|
box-sizing:border-box;
|
|
1071
1079
|
font-family:var(--font-family);
|
|
@@ -3095,6 +3103,8 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3095
3103
|
--switch-transition-duration:150ms;
|
|
3096
3104
|
--table-border-width:1px;
|
|
3097
3105
|
--title-decorator-width:8px;
|
|
3106
|
+
--color-link:var(--color-secondary);
|
|
3107
|
+
--color-link-secondary:var(--color-link);
|
|
3098
3108
|
}
|
|
3099
3109
|
|
|
3100
3110
|
:root{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.8.0",
|
|
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.
|
|
29
|
+
"@simplybusiness/mobius": "^5.29.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"css-loader": "^7.1.2",
|
package/src/variables.css
CHANGED