mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-29 13:47:02 +08:00
37e042358d
* feat: remove form status style && input support status * test: update snapshot * feat: update status prop in config provider * fix: form item validateStatus support * chore: code clean * feat: status classname change * test: update snapshot * refactor: move formItemStatusContext to form folder * refactor: merge utils * refactor: rename statusUtils * chore: code clean * test: fix coverage * chore: remove status prop of Form.Item * chore: code clean * docs: update demo * test: fix lint * feat: status only success and warning * test: fix lint * docs: update deamo
75 lines
1.1 KiB
Plaintext
75 lines
1.1 KiB
Plaintext
@import './mixin';
|
|
@import (reference) '../../style/themes/index';
|
|
@input-prefix-cls: ~'@{ant-prefix}-input';
|
|
|
|
@input-affix-margin: 4px;
|
|
|
|
.@{ant-prefix}-input {
|
|
&-affix-wrapper {
|
|
.input();
|
|
display: inline-flex;
|
|
|
|
&:not(&-disabled):hover {
|
|
.hover();
|
|
z-index: 1;
|
|
.@{ant-prefix}-input-search-with-button & {
|
|
z-index: 0;
|
|
}
|
|
}
|
|
|
|
&-focused,
|
|
&:focus {
|
|
z-index: 1;
|
|
}
|
|
|
|
&-disabled {
|
|
.@{ant-prefix}-input[disabled] {
|
|
background: transparent;
|
|
}
|
|
}
|
|
|
|
> input.@{ant-prefix}-input {
|
|
padding: 0;
|
|
border: none;
|
|
outline: none;
|
|
|
|
&:focus {
|
|
box-shadow: none !important;
|
|
}
|
|
}
|
|
|
|
&::before {
|
|
width: 0;
|
|
visibility: hidden;
|
|
content: '\a0';
|
|
}
|
|
}
|
|
|
|
&-prefix,
|
|
&-suffix {
|
|
display: flex;
|
|
flex: none;
|
|
align-items: center;
|
|
|
|
> *:not(:last-child) {
|
|
margin-right: 8px;
|
|
}
|
|
}
|
|
|
|
&-show-count-suffix {
|
|
color: @text-color-secondary;
|
|
}
|
|
|
|
&-show-count-has-suffix {
|
|
margin-right: 2px;
|
|
}
|
|
|
|
&-prefix {
|
|
margin-right: @input-affix-margin;
|
|
}
|
|
|
|
&-suffix {
|
|
margin-left: @input-affix-margin;
|
|
}
|
|
}
|