@sorocraft/ui 1.2.103 → 1.2.104

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.
@@ -1,3 +1,4 @@
1
+ $color-gray-50: #fafafa;
1
2
  $color-gray-100: #f5f8fa;
2
3
  $color-gray-200: #eff2f5;
3
4
  $color-gray-300: #e4e6ef;
@@ -85,7 +86,7 @@ $color-active-message-bg: $color-secondary-extra-light;
85
86
  /* Input */
86
87
  $color-input-plaintext: $color-gray-700;
87
88
  $color-input-bg: $color-white;
88
- $color-input-disabled-bg: $color-gray-200;
89
+ $color-input-disabled-bg: $color-gray-50;
89
90
  $color-input-disabled-border: $color-gray-300;
90
91
  $color-input: $color-gray-700;
91
92
  $color-input-border: $color-gray-300;
@@ -300,4 +300,10 @@ $xxl: 1440px;
300
300
  transition: color 0.2s ease;
301
301
  outline: 0;
302
302
  }
303
+
304
+ &:disabled {
305
+ background-color: $color-input-disabled-bg;
306
+ border-color: $color-input-disabled-border;
307
+ cursor: not-allowed;
308
+ }
303
309
  }