@avakhula/ui 0.0.107 → 0.0.108

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": "@avakhula/ui",
3
- "version": "0.0.107",
3
+ "version": "0.0.108",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -2,7 +2,8 @@
2
2
  @import "../../../assets/scss/typography.scss";
3
3
  @import "../../../assets/scss/mixins.scss";
4
4
 
5
- $checkbox-bg-disabled: $neutral-500;
5
+ $checkbox-bg-disabled: $gray-100;
6
+ $checkbox-filed-bg-disabled: $neutral-500;
6
7
  $checkbox-border-disabled: $neutral-500;
7
8
  $checkbox-border: $gray-500;
8
9
  $checkbox-bg: transparent;
@@ -198,6 +199,25 @@ $checkbox-bg-indeterminate: $blue-800;
198
199
  .ib-checkbox-label {
199
200
  color: $checkbox-text-color-disabled;
200
201
  }
202
+
203
+ &.ib-checkbox-filled,
204
+ &.ib-checkbox-indeterminate{
205
+ .ib-checkbox-input {
206
+ background-color: $checkbox-filed-bg-disabled;
207
+ }
208
+
209
+ &:hover {
210
+ .ib-checkbox-input {
211
+ background-color: $checkbox-filed-bg-disabled;
212
+ }
213
+ }
214
+
215
+ &:active {
216
+ .ib-checkbox-input {
217
+ background-color: $checkbox-filed-bg-disabled;
218
+ }
219
+ }
220
+ }
201
221
  }
202
222
 
203
223
  &.ib-has-error {