@progressive-development/pd-forms 0.1.29 → 0.1.30

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/PdRange.js +2 -2
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Webcomponent pd-forms following open-wc recommendations",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.1.29",
6
+ "version": "0.1.30",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
package/src/PdRange.js CHANGED
@@ -215,11 +215,11 @@ export class PdRange extends PdBaseUIInput {
215
215
  font-weight: bolder;
216
216
  }
217
217
 
218
- .tick disabled {
218
+ .tick .disabled {
219
219
  color: grey;
220
220
  }
221
221
 
222
- .tick enabled {
222
+ .tick .enabled {
223
223
  color: var(--pd-default-col);
224
224
  }
225
225