2018-12-07 16:17:45 +08:00
|
|
|
@import '../../input/style/mixin';
|
2019-07-03 20:14:39 +08:00
|
|
|
|
2021-09-01 10:56:50 +08:00
|
|
|
.form-control-validation(
|
|
|
|
@text-color: @input-color;
|
|
|
|
@border-color: @input-border-color;
|
|
|
|
@background-color: @input-bg;
|
|
|
|
@hoverBorderColor: @primary-color-hover;
|
|
|
|
@outlineColor: @primary-color-outline;
|
|
|
|
) {
|
2019-07-03 20:14:39 +08:00
|
|
|
.@{ant-prefix}-form-item-split {
|
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
// 输入框的不同校验状态
|
2021-08-11 11:48:53 +08:00
|
|
|
:not(.@{ant-prefix}-input-disabled):not(.@{ant-prefix}-input-borderless).@{ant-prefix}-input,
|
2021-10-30 22:25:12 +08:00
|
|
|
:not(.@{ant-prefix}-input-affix-wrapper-disabled):not(.@{ant-prefix}-input-affix-wrapper-borderless).@{ant-prefix}-input-affix-wrapper,
|
|
|
|
:not(.@{ant-prefix}-input-number-affix-wrapper-disabled):not(.@{ant-prefix}-input-number-affix-wrapper-borderless).@{ant-prefix}-input-number-affix-wrapper {
|
2019-07-03 20:14:39 +08:00
|
|
|
&,
|
|
|
|
&:hover {
|
2020-10-16 22:25:36 +08:00
|
|
|
background-color: @background-color;
|
2019-07-03 20:14:39 +08:00
|
|
|
border-color: @border-color;
|
|
|
|
}
|
|
|
|
|
2020-01-28 12:38:30 +08:00
|
|
|
&:focus,
|
|
|
|
&-focused {
|
2021-09-01 10:56:50 +08:00
|
|
|
.active(@border-color, @hoverBorderColor, @outlineColor);
|
2019-07-03 20:14:39 +08:00
|
|
|
}
|
2020-07-02 22:16:15 +08:00
|
|
|
}
|
2019-07-03 20:14:39 +08:00
|
|
|
|
2020-01-28 12:38:30 +08:00
|
|
|
.@{ant-prefix}-calendar-picker-open .@{ant-prefix}-calendar-picker-input {
|
2021-09-01 10:56:50 +08:00
|
|
|
.active(@border-color, @hoverBorderColor, @outlineColor);
|
2019-07-03 20:14:39 +08:00
|
|
|
}
|
|
|
|
|
2021-10-30 22:25:12 +08:00
|
|
|
.@{ant-prefix}-input-prefix,
|
|
|
|
.@{ant-prefix}-input-number-prefix {
|
2019-07-03 20:14:39 +08:00
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
|
2021-08-31 13:09:03 +08:00
|
|
|
.@{ant-prefix}-input-group-addon,
|
|
|
|
.@{ant-prefix}-input-number-group-addon {
|
2019-07-03 20:14:39 +08:00
|
|
|
color: @text-color;
|
|
|
|
border-color: @border-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-feedback {
|
|
|
|
color: @text-color;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset form styles
|
|
|
|
// -----------------------------
|
|
|
|
// Based on Bootstrap framework
|
|
|
|
.reset-form() {
|
|
|
|
legend {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
padding: 0;
|
|
|
|
color: @text-color-secondary;
|
|
|
|
font-size: @font-size-lg;
|
|
|
|
line-height: inherit;
|
|
|
|
border: 0;
|
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
label {
|
|
|
|
font-size: @font-size-base;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='search'] {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Position radios and checkboxes better
|
|
|
|
input[type='radio'],
|
|
|
|
input[type='checkbox'] {
|
|
|
|
line-height: normal;
|
|
|
|
}
|
|
|
|
|
|
|
|
input[type='file'] {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make range inputs behave like textual form controls
|
|
|
|
input[type='range'] {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make multiple select elements height not fixed
|
|
|
|
select[multiple],
|
|
|
|
select[size] {
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Focus for file, radio, and checkbox
|
|
|
|
input[type='file']:focus,
|
|
|
|
input[type='radio']:focus,
|
|
|
|
input[type='checkbox']:focus {
|
|
|
|
outline: thin dotted;
|
|
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
|
|
outline-offset: -2px;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adjust output element
|
|
|
|
output {
|
|
|
|
display: block;
|
|
|
|
padding-top: 15px;
|
|
|
|
color: @input-color;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
line-height: @line-height-base;
|
|
|
|
}
|
|
|
|
}
|