You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
1.8 KiB
76 lines
1.8 KiB
@import './index';
|
|
|
|
// ================================================================
|
|
// = Children Component =
|
|
// ================================================================
|
|
.@{form-item-prefix-cls} {
|
|
.@{ant-prefix}-mentions,
|
|
textarea.@{ant-prefix}-input {
|
|
height: auto;
|
|
margin-bottom: 4px;
|
|
}
|
|
|
|
// input[type=file]
|
|
.@{ant-prefix}-upload {
|
|
background: transparent;
|
|
}
|
|
|
|
input[type='radio'],
|
|
input[type='checkbox'] {
|
|
width: 14px;
|
|
height: 14px;
|
|
}
|
|
|
|
// Radios and checkboxes on same line
|
|
.@{ant-prefix}-radio-inline,
|
|
.@{ant-prefix}-checkbox-inline {
|
|
display: inline-block;
|
|
margin-left: 8px;
|
|
font-weight: normal;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.@{ant-prefix}-checkbox-vertical,
|
|
.@{ant-prefix}-radio-vertical {
|
|
display: block;
|
|
}
|
|
|
|
.@{ant-prefix}-checkbox-vertical + .@{ant-prefix}-checkbox-vertical,
|
|
.@{ant-prefix}-radio-vertical + .@{ant-prefix}-radio-vertical {
|
|
margin-left: 0;
|
|
}
|
|
|
|
.@{ant-prefix}-input-number {
|
|
+ .@{form-prefix-cls}-text {
|
|
margin-left: 8px;
|
|
}
|
|
&-handler-wrap {
|
|
z-index: 2; // https://github.com/ant-design/ant-design/issues/6289
|
|
}
|
|
}
|
|
|
|
.@{ant-prefix}-select,
|
|
.@{ant-prefix}-cascader-picker {
|
|
width: 100%;
|
|
}
|
|
|
|
// Don't impact select inside input group
|
|
.@{ant-prefix}-input-group .@{ant-prefix}-select,
|
|
.@{ant-prefix}-input-group .@{ant-prefix}-cascader-picker {
|
|
width: auto;
|
|
}
|
|
|
|
// fix input with addon position. https://github.com/ant-design/ant-design/issues/8243
|
|
:not(.@{ant-prefix}-input-group-wrapper) > .@{ant-prefix}-input-group,
|
|
.@{ant-prefix}-input-group-wrapper {
|
|
position: relative;
|
|
top: -1px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
|