@citizenplane/pimp 18.13.4 → 18.13.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@citizenplane/pimp",
3
- "version": "18.13.4",
3
+ "version": "18.13.5",
4
4
  "scripts": {
5
5
  "dev": "storybook dev -p 8081",
6
6
  "build-storybook": "storybook build --output-dir ./docs",
@@ -148,13 +148,13 @@ const onChange = () => {
148
148
  background-color: $color;
149
149
  }
150
150
 
151
- &--is#{$className}:hover input {
151
+ &--is#{$className}:hover input:not(:disabled) {
152
152
  border-color: var(--cp-border-soft-hover);
153
153
  background-color: var(--cp-background-primary-hover);
154
154
  }
155
155
 
156
- &--is#{$className}:hover input:checked,
157
- &--is#{$className}:hover input:indeterminate {
156
+ &--is#{$className}:hover input:checked:not(:disabled),
157
+ &--is#{$className}:hover input:indeterminate:not(:disabled) {
158
158
  border-color: $bgHoverColor;
159
159
  background-color: $bgHoverColor;
160
160
  }