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.
102 lines
2.0 KiB
102 lines
2.0 KiB
10 years ago
|
.form-control-validation(@text-color: @input-color; @border-color: @input-border-color; @background-color: @input-bg) {
|
||
9 years ago
|
.ant-form-explain,
|
||
|
.ant-form-split {
|
||
10 years ago
|
color: @text-color;
|
||
|
}
|
||
10 years ago
|
// 输入框的不同校验状态
|
||
9 years ago
|
.ant-input {
|
||
10 years ago
|
border-color: @border-color;
|
||
9 years ago
|
box-shadow: 0 0 0 2px fade(@border-color, 20%);
|
||
9 years ago
|
|
||
10 years ago
|
&:not([disabled]):hover {
|
||
|
border-color: @border-color;
|
||
|
}
|
||
|
}
|
||
10 years ago
|
|
||
9 years ago
|
.ant-calendar-picker-open .ant-calendar-picker-input {
|
||
9 years ago
|
box-shadow: 0 0 0 2px fade(@border-color, 20%);
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
.ant-input-group-addon {
|
||
10 years ago
|
color: @text-color;
|
||
|
border-color: @border-color;
|
||
|
background-color: @background-color;
|
||
|
}
|
||
10 years ago
|
|
||
10 years ago
|
.has-feedback {
|
||
|
color: @text-color;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// Reset form styles
|
||
|
// -----------------------------
|
||
10 years ago
|
// Based on Bootstrap framework
|
||
10 years ago
|
.reset-form() {
|
||
|
fieldset {
|
||
|
padding: 0;
|
||
|
margin: 0;
|
||
|
border: 0;
|
||
|
min-width: 0;
|
||
|
}
|
||
|
|
||
|
legend {
|
||
|
display: block;
|
||
|
width: 100%;
|
||
|
padding: 0;
|
||
|
margin-bottom: 20px;
|
||
10 years ago
|
font-size: 14px;
|
||
10 years ago
|
line-height: inherit;
|
||
|
color: @legend-color;
|
||
|
border: 0;
|
||
|
border-bottom: 1px solid @legend-border-color;
|
||
|
}
|
||
|
|
||
|
label {
|
||
10 years ago
|
font-size: @font-size-base;
|
||
10 years ago
|
}
|
||
|
|
||
|
input[type="search"] {
|
||
9 years ago
|
box-sizing: border-box;
|
||
10 years ago
|
}
|
||
|
|
||
|
// 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;
|
||
|
font-size: @font-size-base;
|
||
|
line-height: @line-height-base;
|
||
|
color: @input-color;
|
||
|
}
|
||
|
}
|