@simplybusiness/theme-core 7.13.0 → 7.13.2
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 +14 -0
- package/dist/index.css +3 -3
- package/package.json +2 -2
- package/src/variables.css +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 7.13.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c63a9af: Fix checkbox background colour for disabled state
|
|
8
|
+
|
|
9
|
+
## 7.13.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- bc1bf40: Fix questionnaire styles for CTM
|
|
14
|
+
- Updated dependencies [bc1bf40]
|
|
15
|
+
- @simplybusiness/mobius@6.3.1
|
|
16
|
+
|
|
3
17
|
## 7.13.0
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/dist/index.css
CHANGED
|
@@ -513,7 +513,7 @@ a.mobius-button:focus-visible,
|
|
|
513
513
|
align-items:center;
|
|
514
514
|
box-sizing:border-box;
|
|
515
515
|
width:100%;
|
|
516
|
-
|
|
516
|
+
padding-top:var(--checkbox-visible-label-padding-top);
|
|
517
517
|
font-family:var(--font-family);
|
|
518
518
|
line-height:var(--line-height-normal);
|
|
519
519
|
font-size:var(--checkbox-visible-label-font-size);
|
|
@@ -3069,7 +3069,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3069
3069
|
--checkbox-label-color:var(--color-text);
|
|
3070
3070
|
--checkbox-border-color:var(--color-background-input);
|
|
3071
3071
|
--checkbox-background-color:var(--color-background-input);
|
|
3072
|
-
--checkbox-background-color-disabled:var(--color-
|
|
3072
|
+
--checkbox-background-color-disabled:var(--color-background-input);
|
|
3073
3073
|
--checkbox-background-color-invalid:var(--color-error);
|
|
3074
3074
|
--checkbox-color-disabled:var(--color-text-light);
|
|
3075
3075
|
--checkbox-label-color-disabled:var(--color-text-light);
|
|
@@ -3080,7 +3080,7 @@ svg:not(:host).svg-inline--mobius-icon{
|
|
|
3080
3080
|
--checkbox-label-background-color-invalid:var(--color-error-background);
|
|
3081
3081
|
--checkbox-border-color-invalid:var(--color-error);
|
|
3082
3082
|
--checkbox-visible-label-font-size:var(--font-size-regular);
|
|
3083
|
-
--checkbox-visible-label-
|
|
3083
|
+
--checkbox-visible-label-padding-top:0;
|
|
3084
3084
|
--checkbox-multiline-content-font-size:var(--font-size-regular);
|
|
3085
3085
|
--checkbox-group-wrapper-margin-bottom:var(--size-sm);
|
|
3086
3086
|
--checkbox-group-wrapper-gap-horizontal:var(--size-sm);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplybusiness/theme-core",
|
|
3
|
-
"version": "7.13.
|
|
3
|
+
"version": "7.13.2",
|
|
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.3.
|
|
29
|
+
"@simplybusiness/mobius": "^6.3.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"build-scripts": "^1.0.1"
|
package/src/variables.css
CHANGED
|
@@ -192,7 +192,7 @@
|
|
|
192
192
|
--checkbox-label-color: var(--color-text);
|
|
193
193
|
--checkbox-border-color: var(--color-background-input);
|
|
194
194
|
--checkbox-background-color: var(--color-background-input);
|
|
195
|
-
--checkbox-background-color-disabled: var(--color-
|
|
195
|
+
--checkbox-background-color-disabled: var(--color-background-input);
|
|
196
196
|
--checkbox-background-color-invalid: var(--color-error);
|
|
197
197
|
/* Disabled */
|
|
198
198
|
--checkbox-color-disabled: var(--color-text-light);
|
|
@@ -206,7 +206,7 @@
|
|
|
206
206
|
--checkbox-border-color-invalid: var(--color-error);
|
|
207
207
|
/* Typography */
|
|
208
208
|
--checkbox-visible-label-font-size: var(--font-size-regular);
|
|
209
|
-
--checkbox-visible-label-
|
|
209
|
+
--checkbox-visible-label-padding-top: 0;
|
|
210
210
|
--checkbox-multiline-content-font-size: var(--font-size-regular);
|
|
211
211
|
/* CheckboxGroup */
|
|
212
212
|
--checkbox-group-wrapper-margin-bottom: var(--size-sm);
|