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

119 lines
2.3 KiB
Plaintext
Raw Normal View History

2019-01-02 13:01:56 +00:00
@import '../../input/style/mixin';
2018-05-05 09:00:51 +00: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 {
color: @text-color;
}
// 输入框的不同校验状态
2020-11-01 03:23:58 +00:00
.@{ant-prefix}-input,
.@{ant-prefix}-input-affix-wrapper {
2018-05-05 09:00:51 +00:00
&,
&:hover {
border-color: @border-color;
}
2020-11-02 14:37:24 +00:00
&:focus,
&-focused {
2018-05-05 09:00:51 +00:00
.active(@border-color);
}
}
2020-11-02 14:37:24 +00:00
.@{ant-prefix}-input {
&:not(&-disabled) {
background-color: @background-color;
}
2018-05-05 09:00:51 +00:00
}
2019-01-02 13:01:56 +00:00
.@{ant-prefix}-input-affix-wrapper {
2020-11-02 14:37:24 +00:00
&:not(&-disabled) {
background-color: @background-color;
2019-01-02 13:01:56 +00:00
}
2020-11-02 14:37:24 +00:00
input:focus {
box-shadow: none !important;
2019-01-02 13:01:56 +00:00
}
}
2020-11-02 14:37:24 +00:00
.@{ant-prefix}-calendar-picker-open .@{ant-prefix}-calendar-picker-input {
.active(@border-color);
}
2018-05-05 09:00:51 +00:00
.@{ant-prefix}-input-prefix {
color: @text-color;
}
.@{ant-prefix}-input-group-addon {
color: @text-color;
2019-03-30 08:06:06 +00:00
border-color: @border-color;
2018-05-05 09:00:51 +00:00
}
.has-feedback {
color: @text-color;
}
}
// Reset form styles
// -----------------------------
// Based on Bootstrap framework
.reset-form() {
legend {
display: block;
width: 100%;
margin-bottom: 20px;
2019-03-30 08:06:06 +00:00
padding: 0;
color: @text-color-secondary;
2018-05-05 09:00:51 +00:00
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;
}
2019-01-02 13:01:56 +00:00
input[type='search'] {
2018-05-05 09:00:51 +00:00
box-sizing: border-box;
}
// Position radios and checkboxes better
2019-01-02 13:01:56 +00:00
input[type='radio'],
input[type='checkbox'] {
2018-05-05 09:00:51 +00:00
line-height: normal;
}
2019-01-02 13:01:56 +00:00
input[type='file'] {
2018-05-05 09:00:51 +00:00
display: block;
}
// Make range inputs behave like textual form controls
2019-01-02 13:01:56 +00:00
input[type='range'] {
2018-05-05 09:00:51 +00:00
display: block;
width: 100%;
}
// Make multiple select elements height not fixed
select[multiple],
select[size] {
height: auto;
}
// Focus for file, radio, and checkbox
2019-01-02 13:01:56 +00:00
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus {
2018-05-05 09:00:51 +00:00
outline: thin dotted;
2018-12-09 11:30:35 +00:00
outline: 5px auto -webkit-focus-ring-color;
2018-05-05 09:00:51 +00:00
outline-offset: -2px;
}
// Adjust output element
output {
display: block;
padding-top: 15px;
2019-03-30 08:06:06 +00:00
color: @input-color;
2018-05-05 09:00:51 +00:00
font-size: @font-size-base;
line-height: @line-height-base;
}
}