Merge remote-tracking branch 'origin/main' into feature/0915_素材中心新增手动上传

This commit is contained in:
rd
2025-09-18 14:57:19 +08:00
4 changed files with 57 additions and 22 deletions

View File

@ -70,6 +70,22 @@ textarea.ant-input {
padding-top: 0;
padding-bottom: 0;
@include box;
.ant-input-suffix {
.ant-input-show-count-suffix {
color: var(--Text-4, #939499);
font-family: font-family-manrope-regular;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}
.ant-input-clear-icon {
visibility: hidden;
}
}
&.ant-input-affix-wrapper-disabled {
background-color: var(--BG-200, #f2f3f5) !important;
}
@ -81,15 +97,27 @@ textarea.ant-input {
&:hover {
border-color: $color-primary !important;
.ant-input-clear-icon {
&:not(.ant-input-clear-icon-hidden) {
visibility: visible;
}
}
}
}
&:focus,
&-focused {
box-shadow: none !important;
border-color: $color-primary !important;
.ant-input-clear-icon {
&:not(.ant-input-clear-icon-hidden) {
visibility: visible;
}
}
}
.ant-input {
height: 30px;
&.ant-input-lg {
@ -99,14 +127,4 @@ textarea.ant-input {
height: 26px;
}
}
.ant-input-suffix {
.ant-input-show-count-suffix {
color: var(--Text-4, #939499);
font-family: font-family-manrope-regular;
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 20px;
}
}
}