@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 CHANGED
@@ -1,5 +1,13 @@
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
+
3
11
  ## 7.10.3
4
12
 
5
13
  ### 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-secondary-hover);
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",
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.2"
29
+ "@simplybusiness/mobius": "^5.32.3"
30
30
  },
31
31
  "devDependencies": {
32
32
  "build-scripts": "^1.0.1"
package/src/variables.css CHANGED
@@ -226,5 +226,7 @@
226
226
 
227
227
  /* Link Colors */
228
228
  --color-link: var(--color-secondary);
229
+ --color-link-hover: var(--color-secondary-hover);
229
230
  --color-link-secondary: var(--color-link);
231
+ --color-link-secondary-hover: var(--color-link-hover);
230
232
  }