mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 04:00:13 +08:00
e13c4d4131
* chore: create additional entry * fix: rm recv call * chore: Add default.less as index.less * chore: update entry * fix: row should also translate * chore: rename index-default to index and add index-pure instead * fix: missing transfer customize styl
39 lines
753 B
Plaintext
39 lines
753 B
Plaintext
@import (reference) '../../style/themes/index';
|
|
|
|
@form-prefix-cls: ~'@{ant-prefix}-form';
|
|
@form-item-prefix-cls: ~'@{form-prefix-cls}-item';
|
|
|
|
.@{form-prefix-cls}-inline {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
|
|
.@{form-prefix-cls}-item {
|
|
flex: none;
|
|
flex-wrap: nowrap;
|
|
margin-right: 16px;
|
|
margin-bottom: 0;
|
|
|
|
&-with-help {
|
|
margin-bottom: @form-item-margin-bottom;
|
|
}
|
|
|
|
> .@{form-item-prefix-cls}-label,
|
|
> .@{form-item-prefix-cls}-control {
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
> .@{form-item-prefix-cls}-label {
|
|
flex: none;
|
|
}
|
|
|
|
.@{form-prefix-cls}-text {
|
|
display: inline-block;
|
|
}
|
|
|
|
.@{form-item-prefix-cls}-has-feedback {
|
|
display: inline-block;
|
|
}
|
|
}
|
|
}
|