ant-design/components/form/style/mixin.less

125 lines
2.4 KiB
Plaintext
Raw Normal View History

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