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

346 lines
7.9 KiB
Plaintext
Raw Normal View History

2016-06-16 22:04:17 +08:00
@import "../../style/themes/default";
@import "../../style/mixins/index";
@input-affix-width: 17px;
2015-07-07 11:32:08 +08:00
// size mixins for input
2015-06-15 11:43:18 +08:00
.input-lg() {
2015-08-04 14:41:30 +08:00
padding: @input-padding-vertical-lg @input-padding-horizontal;
2015-07-07 11:32:08 +08:00
height: @input-height-lg;
2015-06-15 11:43:18 +08:00
}
.input-sm() {
padding: @input-padding-vertical-sm @input-padding-horizontal;
2015-07-07 11:32:08 +08:00
height: @input-height-sm;
2015-06-15 11:43:18 +08:00
}
2015-07-09 17:19:01 +08:00
// input status
// == when focus or actived
2016-08-31 17:04:24 +08:00
.active(@color: @outline-color) {
border-color: ~`colorPalette("@{color}", 5)`;
2015-07-09 17:19:01 +08:00
outline: 0;
2016-08-31 17:04:24 +08:00
box-shadow: 0 0 @outline-blur-size @outline-width fade(@color, 20%);
2015-07-09 17:19:01 +08:00
}
// == when hoverd
2015-11-26 19:32:55 +08:00
.hover(@color: @input-hover-border-color) {
border-color: ~`colorPalette("@{color}", 5)`;
2015-07-09 17:19:01 +08:00
}
2015-07-09 20:06:03 +08:00
.disabled() {
background-color: @input-disabled-bg;
opacity: 1;
cursor: not-allowed;
color: @disabled-color;
2015-07-09 20:06:03 +08:00
&:hover {
.hover(@input-border-color);
}
}
2015-06-11 09:57:37 +08:00
// Basic style for input
2015-06-09 19:45:18 +08:00
.input() {
position: relative;
2015-07-07 16:18:14 +08:00
display: inline-block;
2015-06-09 19:45:18 +08:00
padding: @input-padding-vertical-base @input-padding-horizontal;
width: 100%;
2015-07-07 11:32:08 +08:00
height: @input-height-base;
2015-08-04 14:41:30 +08:00
font-size: @font-size-base;
line-height: @line-height-base;
2015-06-09 19:45:18 +08:00
color: @input-color;
background-color: @input-bg;
background-image: none;
border: @border-width-base @border-style-base @input-border-color;
2015-07-07 11:32:08 +08:00
border-radius: @border-radius-base;
.placeholder(); // Reset placeholder
2016-12-05 00:27:03 +08:00
transition: all .3s;
2015-06-09 19:45:18 +08:00
2015-06-15 20:24:01 +08:00
&:hover {
2015-07-09 17:19:01 +08:00
.hover();
2015-06-09 19:45:18 +08:00
}
&:focus {
2015-07-09 17:19:01 +08:00
.active();
2015-06-09 19:45:18 +08:00
}
2017-07-12 14:23:47 +08:00
&-disabled {
.disabled();
2015-06-09 19:45:18 +08:00
}
// Reset height for `textarea`s
textarea& {
2015-07-27 08:52:47 +08:00
max-width: 100%; // prevent textearea resize from coming out of its container
2015-06-09 19:45:18 +08:00
height: auto;
2015-07-20 16:44:39 +08:00
vertical-align: bottom;
2017-09-17 13:47:35 +08:00
transition: all .3s, height 0s;
2015-06-09 19:45:18 +08:00
}
// Size
&-lg {
2015-06-15 11:43:18 +08:00
.input-lg();
2015-06-09 19:45:18 +08:00
}
&-sm {
2015-06-15 11:43:18 +08:00
.input-sm();
}
}
2015-07-08 20:12:49 +08:00
// label input
2015-07-21 14:54:49 +08:00
.input-group(@inputClass) {
2015-06-15 11:43:18 +08:00
position: relative;
display: table;
border-collapse: separate;
border-spacing: 0;
2016-05-19 14:43:01 +08:00
width: 100%;
2015-06-15 11:43:18 +08:00
// Undo padding and float of grid classes
&[class*="col-"] {
float: none;
padding-left: 0;
padding-right: 0;
}
2015-07-09 13:48:24 +08:00
> [class*="col-"] {
padding-right: 8px;
2017-06-26 21:37:46 +08:00
&:last-child {
padding-right: 0;
}
2015-07-09 13:48:24 +08:00
}
2015-07-20 22:56:43 +08:00
&-addon,
2015-07-21 14:54:49 +08:00
&-wrap,
2015-07-09 13:48:24 +08:00
> .@{inputClass} {
2015-06-15 11:43:18 +08:00
display: table-cell;
&:not(:first-child):not(:last-child) {
border-radius: 0;
}
2015-06-09 19:45:18 +08:00
}
2015-06-15 11:43:18 +08:00
2015-07-20 22:56:43 +08:00
&-addon,
2015-07-21 14:54:49 +08:00
&-wrap {
width: 1px; // To make addon/wrap as small as possible
2015-06-15 11:43:18 +08:00
white-space: nowrap;
vertical-align: middle;
}
2016-01-22 14:56:35 +08:00
&-wrap > * {
2016-05-24 20:08:13 +08:00
display: block !important;
2016-01-22 14:56:35 +08:00
}
2015-06-15 11:43:18 +08:00
.@{inputClass} {
float: left;
width: 100%;
margin-bottom: 0;
&:focus {
z-index: 1; // Fix https://gw.alipayobjects.com/zos/rmsportal/DHNpoqfMXSfrSnlZvhsJ.png
}
2015-06-15 11:43:18 +08:00
}
&-addon {
padding: @input-padding-vertical-base @input-padding-horizontal;
font-size: @font-size-base;
font-weight: normal;
line-height: 1;
color: @input-color;
text-align: center;
background-color: @input-addon-bg;
border: @border-width-base @border-style-base @input-border-color;
2015-07-07 11:32:08 +08:00
border-radius: @border-radius-base;
position: relative;
2016-12-02 14:04:44 +08:00
transition: all .3s;
2016-06-16 21:15:59 +08:00
// Reset Select's style in addon
.@{ant-prefix}-select {
margin: -(@input-padding-vertical-base + 1px) (-@input-padding-horizontal); // lesshint spaceAroundOperator: false
2016-06-16 21:15:59 +08:00
.@{ant-prefix}-select-selection {
2016-06-16 21:15:59 +08:00
background-color: inherit;
2016-06-16 22:04:17 +08:00
margin: -1px;
border: @border-width-base @border-style-base transparent;
box-shadow: none;
2016-06-16 22:04:17 +08:00
}
&-open,
&-focused {
.@{ant-prefix}-select-selection {
color: @primary-color;
2016-06-16 22:04:17 +08:00
}
2016-06-16 21:15:59 +08:00
}
}
// Expand addon icon click area
// https://github.com/ant-design/ant-design/issues/3714
> i:only-child:after {
position: absolute;
content: '';
top: 0;
left: 0;
right: 0;
bottom: 0;
}
2015-06-15 11:43:18 +08:00
}
// Reset rounded corners
2015-07-20 22:56:43 +08:00
> .@{inputClass}:first-child,
2015-07-09 13:48:24 +08:00
&-addon:first-child {
2015-06-15 11:43:18 +08:00
border-bottom-right-radius: 0;
border-top-right-radius: 0;
2016-06-16 21:15:59 +08:00
// Reset Select's style in addon
.@{ant-prefix}-select .@{ant-prefix}-select-selection {
2016-06-16 21:15:59 +08:00
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
2015-06-15 11:43:18 +08:00
}
2015-07-07 16:18:14 +08:00
> .@{inputClass}-affix-wrapper {
&:not(:first-child) .@{inputClass} {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
&:not(:last-child) .@{inputClass} {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
}
}
2015-06-15 11:43:18 +08:00
&-addon:first-child {
border-right: 0;
}
2015-07-08 20:12:49 +08:00
&-addon:last-child {
border-left: 0;
}
2015-07-07 16:18:14 +08:00
2015-07-09 13:48:24 +08:00
> .@{inputClass}:last-child,
2015-07-21 14:54:49 +08:00
&-addon:last-child {
2015-06-15 11:43:18 +08:00
border-bottom-left-radius: 0;
border-top-left-radius: 0;
2016-06-16 21:15:59 +08:00
// Reset Select's style in addon
.@{ant-prefix}-select .@{ant-prefix}-select-selection {
2016-06-16 21:15:59 +08:00
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
2015-06-15 11:43:18 +08:00
}
2015-07-07 16:18:14 +08:00
2015-06-15 11:43:18 +08:00
// Sizing options
2015-07-09 13:48:24 +08:00
&-lg .@{inputClass},
2015-07-21 14:54:49 +08:00
&-lg > &-addon {
2015-06-15 11:43:18 +08:00
.input-lg();
}
2015-07-09 13:48:24 +08:00
&-sm .@{inputClass},
2015-07-21 14:54:49 +08:00
&-sm > &-addon {
2015-06-15 11:43:18 +08:00
.input-sm();
}
// Fix https://github.com/ant-design/ant-design/issues/5754
&-lg .@{ant-prefix}-select-selection--single {
height: @input-height-lg;
}
&-sm .@{ant-prefix}-select-selection--single {
height: @input-height-sm;
}
.@{inputClass}-affix-wrapper {
display: table-cell;
width: 100%;
float: left;
}
&&-compact {
2017-09-22 20:35:30 +08:00
display: block;
.clearfix;
& > * {
border-radius: 0;
border-right-width: 0;
vertical-align: middle;
2017-04-13 10:56:19 +08:00
float: none;
display: inline-block;
}
// Undo float for .ant-input-group .ant-input
.@{inputClass} {
float: none;
z-index: auto;
}
2017-04-26 15:17:35 +08:00
// reset border for Select, DatePicker, AutoComplete, Cascader, Mention, TimePicker
& > .@{ant-prefix}-select > .@{ant-prefix}-select-selection,
& > .@{ant-prefix}-calendar-picker .@{ant-prefix}-input,
2017-04-26 15:17:35 +08:00
& > .@{ant-prefix}-select-auto-complete .@{ant-prefix}-input,
& > .@{ant-prefix}-cascader-picker .@{ant-prefix}-input,
& > .@{ant-prefix}-mention-wrapper .@{ant-prefix}-mention-editor,
& > .@{ant-prefix}-time-picker .@{ant-prefix}-time-picker-input {
border-radius: 0;
border-right-width: 0;
}
& > *:first-child,
& > .@{ant-prefix}-select:first-child > .@{ant-prefix}-select-selection,
& > .@{ant-prefix}-calendar-picker:first-child .@{ant-prefix}-input,
2017-04-26 15:17:35 +08:00
& > .@{ant-prefix}-select-auto-complete:first-child .@{ant-prefix}-input,
& > .@{ant-prefix}-cascader-picker:first-child .@{ant-prefix}-input,
& > .@{ant-prefix}-mention-wrapper:first-child .@{ant-prefix}-mention-editor,
& > .@{ant-prefix}-time-picker:first-child .@{ant-prefix}-time-picker-input {
border-top-left-radius: @border-radius-base;
border-bottom-left-radius: @border-radius-base;
}
& > *:last-child,
& > .@{ant-prefix}-select:last-child > .@{ant-prefix}-select-selection,
& > .@{ant-prefix}-calendar-picker:last-child .@{ant-prefix}-input,
2017-04-26 15:17:35 +08:00
& > .@{ant-prefix}-select-auto-complete:last-child .@{ant-prefix}-input,
& > .@{ant-prefix}-cascader-picker:last-child .@{ant-prefix}-input,
& > .@{ant-prefix}-mention-wrapper:last-child .@{ant-prefix}-mention-editor,
& > .@{ant-prefix}-time-picker:last-child .@{ant-prefix}-time-picker-input {
border-top-right-radius: @border-radius-base;
border-bottom-right-radius: @border-radius-base;
border-right-width: 1px;
}
}
}
.input-affix-wrapper(@inputClass) {
position: relative;
2017-01-10 15:11:43 +08:00
display: inline-block;
width: 100%;
.@{inputClass} {
z-index: 1;
}
2017-07-12 14:23:47 +08:00
&:hover .@{inputClass}:not(.@{inputClass}-disabled) {
.hover();
}
.@{inputClass}-prefix,
.@{inputClass}-suffix {
position: absolute;
2017-01-10 15:11:43 +08:00
top: 50%;
transform: translateY(-50%);
z-index: 2;
line-height: 0;
2017-04-20 02:22:06 +08:00
color: @input-color;
}
.@{inputClass}-prefix {
left: @input-padding-horizontal;
}
.@{inputClass}-suffix {
right: @input-padding-horizontal;
}
.@{inputClass}:not(:first-child) {
padding-left: @input-padding-horizontal + @input-affix-width;
}
.@{inputClass}:not(:last-child) {
padding-right: @input-padding-horizontal + @input-affix-width;
}
2015-06-12 18:37:03 +08:00
}