ant-design/style/mixins/input.less

186 lines
3.5 KiB
Plaintext
Raw Normal View History

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
.active(@color: @input-hover-border-color) {
border-color: tint(@color, 20%);
2015-07-09 17:19:01 +08:00
outline: 0;
2015-07-15 15:02:18 +08:00
box-shadow: 0 0 0 2px tint(@color, 80%);
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: tint(@color, 20%);
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: @cursor-disabled;
&:hover {
.hover(@input-border-color);
}
}
2015-07-09 17:19:01 +08:00
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-07-08 20:12:49 +08:00
cursor: text;
2015-08-04 14:41:30 +08:00
font-size: @font-size-base;
2015-06-09 19:45:18 +08:00
line-height: @line-height-base;
color: @input-color;
background-color: @input-bg;
background-image: none;
border: 1px solid @input-border-color;
2015-07-07 11:32:08 +08:00
border-radius: @border-radius-base;
.placeholder(); // Reset placeholder
2015-11-05 21:25:43 +08:00
.transition(~"border .2s @{ease-in-out}, background .2s @{ease-in-out}, box-shadow .2s @{ease-in-out}");
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
}
&[disabled],
fieldset[disabled] & {
2015-07-09 20:06:03 +08:00
.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;
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();
}
}
// Input with icons, you can define @height if you wish to change the input size
.input-with-icon(@height: @input-height-base) {
position: relative;
.@{iconfont-css-prefix} {
position: absolute;
bottom: 0;
right: 0;
z-index: 2;
.square(@height);
font-size: 14px;
line-height: @height;
text-align: center;
pointer-events: none;
}
}
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;
// 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;
}
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 {
2015-06-15 11:43:18 +08:00
width: 1%;
white-space: nowrap;
vertical-align: middle;
}
.@{inputClass} {
position: relative;
z-index: 2;
float: left;
width: 100%;
margin-bottom: 0;
}
&-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: #eee;
border: 1px solid @input-border-color;
2015-07-07 11:32:08 +08:00
border-radius: @border-radius-base;
2015-06-15 11:43:18 +08:00
}
// Reset rounded corners
2015-12-02 15:55:02 +08:00
> span > .@{inputClass}:first-child,
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;
}
2015-07-07 16:18:14 +08:00
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;
}
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();
}
2015-06-12 18:37:03 +08:00
}