@simplybusiness/theme-core 7.10.2 → 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 +15 -0
- package/dist/index.css +14 -2
- package/package.json +2 -2
- package/src/variables.css +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.10.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5b28c9f: Add Westhill Global Theme
|
|
8
|
+
- Updated dependencies [5b28c9f]
|
|
9
|
+
- @simplybusiness/mobius@5.32.3
|
|
10
|
+
|
|
11
|
+
## 7.10.3
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [07312b5]
|
|
16
|
+
- @simplybusiness/mobius@5.32.2
|
|
17
|
+
|
|
3
18
|
## 7.10.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
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{
|
|
@@ -1281,6 +1281,16 @@ a.mobius-button:focus-visible,
|
|
|
1281
1281
|
content:" (optional)";
|
|
1282
1282
|
}
|
|
1283
1283
|
|
|
1284
|
+
.mobius-number-field.--hide-spin-buttons::-webkit-outer-spin-button,.mobius-number-field.--hide-spin-buttons::-webkit-inner-spin-button{
|
|
1285
|
+
-webkit-appearance:none;
|
|
1286
|
+
margin:0;
|
|
1287
|
+
}
|
|
1288
|
+
|
|
1289
|
+
.mobius-number-field.--hide-spin-buttons{
|
|
1290
|
+
appearance:textfield;
|
|
1291
|
+
-moz-appearance:textfield;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1284
1294
|
.mobius-number-field__input-wrapper{
|
|
1285
1295
|
width:100%;
|
|
1286
1296
|
}
|
|
@@ -3039,7 +3049,9 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3039
3049
|
--table-border-width:1px;
|
|
3040
3050
|
--title-decorator-width:8px;
|
|
3041
3051
|
--color-link:var(--color-secondary);
|
|
3052
|
+
--color-link-hover:var(--color-secondary-hover);
|
|
3042
3053
|
--color-link-secondary:var(--color-link);
|
|
3054
|
+
--color-link-secondary-hover:var(--color-link-hover);
|
|
3043
3055
|
}
|
|
3044
3056
|
|
|
3045
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