mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 12:10:06 +08:00
77b6a86656
close #34903
23 lines
744 B
Plaintext
23 lines
744 B
Plaintext
@import (reference) '../../style/themes/index';
|
|
|
|
@form-prefix-cls: ~'@{ant-prefix}-form';
|
|
@form-item-prefix-cls: ~'@{form-prefix-cls}-item';
|
|
|
|
.@{form-prefix-cls}-horizontal {
|
|
.@{form-item-prefix-cls}-label {
|
|
flex-grow: 0;
|
|
}
|
|
.@{form-item-prefix-cls}-control {
|
|
flex: 1 1 0;
|
|
// https://github.com/ant-design/ant-design/issues/32777
|
|
// https://github.com/ant-design/ant-design/issues/33773
|
|
min-width: 0;
|
|
}
|
|
// https://github.com/ant-design/ant-design/issues/32980
|
|
// https://github.com/ant-design/ant-design/issues/34903
|
|
.@{form-item-prefix-cls}-label[class$='-24'] + .@{form-item-prefix-cls}-control,
|
|
.@{form-item-prefix-cls}-label[class*='-24 '] + .@{form-item-prefix-cls}-control {
|
|
min-width: unset;
|
|
}
|
|
}
|