@kdcloudjs/kdesign 1.7.8 → 1.7.9

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.
@@ -5707,10 +5707,13 @@ textarea {
5707
5707
  }
5708
5708
 
5709
5709
  &-disabled {
5710
- background-color: @input-background-color-disabled-inner;
5711
5710
  border-color: @input-border-color-disabled-inner;
5712
5711
  cursor: not-allowed;
5713
5712
 
5713
+ &:not(.@{input-prefix-cls}-wrapper-underline) {
5714
+ background-color: @input-background-color-disabled-inner;
5715
+ }
5716
+
5714
5717
  .@{input-prefix-cls}-suffix,
5715
5718
  .@{input-prefix-cls}-prefix {
5716
5719
  color: @input-color-disabled-inner;
@@ -5742,6 +5745,7 @@ textarea {
5742
5745
 
5743
5746
  &-clear-icon-hidden {
5744
5747
  visibility: hidden;
5748
+ display: none;
5745
5749
  }
5746
5750
 
5747
5751
  &-clear-icon-rightSpace {
@@ -5917,6 +5921,9 @@ textarea {
5917
5921
  .input-clear-icon() {
5918
5922
  cursor: pointer;
5919
5923
  color: @input-clear-color;
5924
+ display: inline-flex;
5925
+ align-items: center;
5926
+ justify-content: center;
5920
5927
 
5921
5928
  &:hover {
5922
5929
  color: @input-clear-color-hover;
package/dist/kdesign.css CHANGED
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  *
3
- * @kdcloudjs/kdesign v1.7.7
3
+ * @kdcloudjs/kdesign v1.7.8
4
4
  *
5
5
  * Copyright 2020-present, Kingdee, Inc.
6
6
  * All rights reserved.
@@ -9935,10 +9935,12 @@ textarea {
9935
9935
  border-color: var(--kd-c-input-color-border-focused, var(--kd-g-color-theme, #5582f3));
9936
9936
  }
9937
9937
  .kd-input-wrapper-disabled {
9938
- background-color: var(--kd-c-input-color-background-disabled, var(--kd-g-color-background-contain-disabled, #f5f5f5));
9939
9938
  border-color: var(--kd-c-input-color-border-disabled, var(--kd-g-color-border-strong, #d9d9d9));
9940
9939
  cursor: not-allowed;
9941
9940
  }
9941
+ .kd-input-wrapper-disabled:not(.kd-input-wrapper-underline) {
9942
+ background-color: var(--kd-c-input-color-background-disabled, var(--kd-g-color-background-contain-disabled, #f5f5f5));
9943
+ }
9942
9944
  .kd-input-wrapper-disabled .kd-input-suffix,
9943
9945
  .kd-input-wrapper-disabled .kd-input-prefix {
9944
9946
  color: var(--kd-c-input-color-disabled, var(--kd-g-color-disabled, #b2b2b2));
@@ -9993,6 +9995,15 @@ textarea {
9993
9995
  .kd-input-textarea-clear-icon {
9994
9996
  cursor: pointer;
9995
9997
  color: var(--kd-c-input-clear-color, #d9d9d9);
9998
+ display: -webkit-inline-box;
9999
+ display: -ms-inline-flexbox;
10000
+ display: inline-flex;
10001
+ -webkit-box-align: center;
10002
+ -ms-flex-align: center;
10003
+ align-items: center;
10004
+ -webkit-box-pack: center;
10005
+ -ms-flex-pack: center;
10006
+ justify-content: center;
9996
10007
  }
9997
10008
  .kd-input-clear-icon:hover,
9998
10009
  .kd-input-textarea-clear-icon:hover {
@@ -10005,6 +10016,7 @@ textarea {
10005
10016
  }
10006
10017
  .kd-input-clear-icon-hidden {
10007
10018
  visibility: hidden;
10019
+ display: none;
10008
10020
  }
10009
10021
  .kd-input-clear-icon-rightSpace {
10010
10022
  margin-right: 4px;