@simplybusiness/theme-core 7.13.7 → 7.13.9

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,20 @@
1
1
  # Changelog
2
2
 
3
+ ## 7.13.9
4
+
5
+ ### Patch Changes
6
+
7
+ - 50471d9: Lighten border on unselected Radio inputs and labels
8
+ - Updated dependencies [50471d9]
9
+ - @simplybusiness/mobius@6.4.2
10
+
11
+ ## 7.13.8
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [db2acef]
16
+ - @simplybusiness/mobius@6.4.1
17
+
3
18
  ## 7.13.7
4
19
 
5
20
  ### Patch Changes
package/dist/index.css CHANGED
@@ -85,7 +85,8 @@ h6.mobius-accordion__link-text,
85
85
  display:flex;
86
86
  flex-grow:1;
87
87
  align-items:center;
88
- font-size:var(--font-size-2);
88
+ font-size:var(--font-size-regular);
89
+ line-height:var(--line-height-normal);
89
90
  color:var(--color-text);
90
91
  border:2px solid;
91
92
  border-color:inherit;
@@ -1488,7 +1489,7 @@ a.mobius-button:focus-visible,
1488
1489
  padding:var(--size-xs);
1489
1490
  width:var(--radio-size);
1490
1491
  height:var(--radio-size);
1491
- border:var(--radio-border-width) solid var(--color-primary);
1492
+ border:var(--radio-border-width) solid var(--color-primary-light);
1492
1493
  border-radius:50%;
1493
1494
  -webkit-appearance:none;
1494
1495
  appearance:none;
@@ -3091,7 +3092,7 @@ svg:not(:host).svg-inline--mobius-icon{
3091
3092
  --radio-inner-size:10px;
3092
3093
  --radio-gap:var(--size-xs);
3093
3094
  --radio-label-gap:calc(var(--size-xs) + 2px);
3094
- --radio-label-border:var(--radio-border-width) solid var(--color-primary);
3095
+ --radio-label-border:var(--radio-border-width) solid var(--color-primary-light);
3095
3096
  --radio-label-align-items:center;
3096
3097
  --radio-label-background:var(--color-background-input);
3097
3098
  --radio-label-background-disabled:var(--color-background-light);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplybusiness/theme-core",
3
- "version": "7.13.7",
3
+ "version": "7.13.9",
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": "^6.4.0"
29
+ "@simplybusiness/mobius": "^6.4.2"
30
30
  },
31
31
  "devDependencies": {
32
32
  "build-scripts": "^1.0.1"
package/src/variables.css CHANGED
@@ -221,7 +221,7 @@
221
221
  --radio-inner-size: 10px;
222
222
  --radio-gap: var(--size-xs);
223
223
  --radio-label-gap: calc(var(--size-xs) + 2px);
224
- --radio-label-border: var(--radio-border-width) solid var(--color-primary);
224
+ --radio-label-border: var(--radio-border-width) solid var(--color-primary-light);
225
225
  --radio-label-align-items: center;
226
226
  --radio-label-background: var(--color-background-input);
227
227
  --radio-label-background-disabled: var(--color-background-light);