@pzh-ui/css 0.0.79 → 0.0.80

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": "@pzh-ui/css",
3
- "version": "0.0.79",
3
+ "version": "0.0.80",
4
4
  "description": "Contains default styling for projects whitin Provincie Zuid-Holland.",
5
5
  "license": "ISC",
6
6
  "publishConfig": {
@@ -21,7 +21,7 @@
21
21
  "react-datepicker": "^4.7.0",
22
22
  "react-toastify": "^9.1.2"
23
23
  },
24
- "gitHead": "7a7f7fcef7ce88ccc96619197c50fc5ea1019c3a",
24
+ "gitHead": "64ee56309f3bc321198942a4b795806a25227839",
25
25
  "devDependencies": {
26
26
  "tailwindcss": "^3.3.2"
27
27
  }
package/src/tailwind.css CHANGED
@@ -1335,8 +1335,8 @@ select {
1335
1335
  content: "";
1336
1336
  }
1337
1337
 
1338
- .pzh-form-radio:not(:checked):hover + span:before,
1339
- .pzh-form-checkbox:not(:checked):hover + span:before {
1338
+ .pzh-form-radio:not(:checked):not(:disabled):hover + span:before,
1339
+ .pzh-form-checkbox:not(:checked):not(:disabled):hover + span:before {
1340
1340
  --tw-border-opacity: 1;
1341
1341
  border-color: rgb(0 128 77 / var(--tw-border-opacity));
1342
1342
  --tw-bg-opacity: 1;
@@ -1380,7 +1380,7 @@ select {
1380
1380
  transform: scale(1);
1381
1381
  }
1382
1382
 
1383
- .pzh-form-radio:disabled + span:before,
1383
+ .pzh-form-radio:not(:checked):disabled + span:before,
1384
1384
  .pzh-form-checkbox:disabled + span:before {
1385
1385
  --tw-border-opacity: 1;
1386
1386
  border-color: rgb(131 131 131 / var(--tw-border-opacity));
@@ -2890,11 +2890,6 @@ select {
2890
2890
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
2891
2891
  }
2892
2892
 
2893
- .ring-pzh-blue {
2894
- --tw-ring-opacity: 1;
2895
- --tw-ring-color: rgb(40 31 107 / var(--tw-ring-opacity));
2896
- }
2897
-
2898
2893
  .ring-pzh-focus {
2899
2894
  --tw-ring-opacity: 1;
2900
2895
  --tw-ring-color: rgb(35 96 197 / var(--tw-ring-opacity));
@@ -99,8 +99,8 @@ ol li ol li ol li {
99
99
  @apply border-pzh-gray-600 absolute left-0 top-0.5 h-5 w-5 rounded-full border;
100
100
  content: "";
101
101
  }
102
- .pzh-form-radio:not(:checked):hover + span:before,
103
- .pzh-form-checkbox:not(:checked):hover + span:before {
102
+ .pzh-form-radio:not(:checked):not(:disabled):hover + span:before,
103
+ .pzh-form-checkbox:not(:checked):not(:disabled):hover + span:before {
104
104
  @apply border-pzh-green-500 bg-pzh-green-10;
105
105
  }
106
106
  .pzh-form-radio:checked + span:after,
@@ -121,7 +121,7 @@ ol li ol li ol li {
121
121
  opacity: 1;
122
122
  transform: scale(1);
123
123
  }
124
- .pzh-form-radio:disabled + span:before,
124
+ .pzh-form-radio:not(:checked):disabled + span:before,
125
125
  .pzh-form-checkbox:disabled + span:before {
126
126
  @apply border-pzh-gray-500 bg-pzh-gray-200;
127
127
  }