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

421 lines
10 KiB
Plaintext
Raw Normal View History

meger feature to master (#16421) * use ul in list * update snapshot * update comment * feat: TreeSelect support `showSearch` in multiple mode (#15933) * update rc-tree-select * typo * update desc & snapshot * update desc & snapshot * check default showSearch * feat: table customizing variable (#15971) * feat: added table selected row color variable * fix: @table-selected-row-color default is inherit * feat: Upload support customize previewFile (#15984) * support preview file * use promise * dealy load * use canvas of render * use domHook of test * update demo * add snapshot * update types * update testcase * feat: form customizing variables (#15954) * fix: added styling form input background-color * feat: added '@form-warning-input-bg' variable * feat: added '@form-error-input-bg' variable * use li wrap with comment * feat: Support append theme less file with less-variable (#16118) * add override * add override support * update doc * feat: dropdown support set right icon * docs: update doc of dropdown component * style: format dropdown-button.md * test: update updateSnapshot * style: format dropdown-button.md * test: update updateSnapshot * test: update updateSnapshot * style: change style of dropdown-button demo * fix: fix document table order * feat: Support SkeletonAvatarProps.size accept number (#16078) (#16128) * chore:update style of demo * feat: Notification functions accept top, bottom and getContainer as arguments * drawer: add afterVisibleChange * rm onVisibleChange * update * feat: 🇭🇷 hr_HR locale (#16258) * Added Croatian locale * fixed lint error * :white_check_mark: Add test cases for hr_HR * :memo: update i18n documentation * feat: add `htmlFor` in Form.Item (#16278) * add htmlFor in Form.Item * update doc * feat: Button support `link` type (#16289) close #15892 * feat: Add Timeline.Item.position (#16148) (#16193) * fix: Timeline.pendingDot interface documentation there is a small problem (#16177) * feat: Add Timeline.Item.position (#16148) * doc: add version infomation for Timeline.Item.position * refactor: Update Tree & TreeSelect deps (#16330) * use CSSMotion * update snapshot * feat: Collapse support `expandIconPosition` (#16365) * update doc * support expandIconPosition * update snapshot * feat: Breadcrumb support DropDown (#16315) * breadcrumbs support drop down menu * update doc * add require less * fix test * fix md doc * less code * fix style warning * update snap * add children render test * feat: TreeNode support checkable * feat: add optional to support top and left slick dots (#16186) (#16225) * add optional to support top and left slick dots * update carousel snapshot * Update doc, add placement demo * update carousel placement demo snapshots * rename dots placement to position * update vertical as deprecated * rename dotsPosition to dotPosition * refine code * add warning testcase for vertical * remove unused warning * update expression * Additional test case for dotPosition * refactor: Upgrade `rc-tree-select` to support pure React motion (#16402) * upgrade `rc-tree-select` * update snapshot * 3.17.0 changelog * fix warning * fix review warning
2019-05-06 12:04:39 +08:00
@import '../../style/themes/index';
2018-12-07 16:17:45 +08:00
@import '../../style/mixins/index';
@input-affix-width: 19px;
@input-affix-with-clear-btn-width: 38px;
2015-07-07 11:32:08 +08:00
// size mixins for input
2015-06-15 11:43:18 +08:00
.input-lg() {
2015-07-07 11:32:08 +08:00
height: @input-height-lg;
padding: @input-padding-vertical-lg @input-padding-horizontal-lg;
font-size: @font-size-lg;
line-height: @input-height-lg;
2019-08-02 18:21:24 +08:00
line-height:~'@{line-height-base} \9'; // https://github.com/ant-design/ant-design/issues/17753
2015-06-15 11:43:18 +08:00
}
.input-sm() {
2015-07-07 11:32:08 +08:00
height: @input-height-sm;
padding: @input-padding-vertical-sm @input-padding-horizontal-sm;
line-height: @input-height-sm;
2019-08-02 18:21:24 +08:00
line-height:~'@{line-height-base} \9'; // https://github.com/ant-design/ant-design/issues/17753
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) {
2019-08-02 18:21:24 +08:00
border-color:~`colorPalette('@{color}', 5) `;
border-right-width: @border-width-base !important;
2015-07-09 17:19:01 +08:00
outline: 0;
box-shadow: @input-outline-offset @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: @color;
border-right-width: @border-width-base !important;
2015-07-09 17:19:01 +08:00
}
2015-07-09 20:06:03 +08:00
.disabled() {
color: @disabled-color;
2015-07-09 20:06:03 +08:00
background-color: @input-disabled-bg;
cursor: not-allowed;
opacity: 1;
2019-08-02 18:21:24 +08:00
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
width: 100%;
2015-07-07 11:32:08 +08:00
height: @input-height-base;
padding: @input-padding-vertical-base @input-padding-horizontal-base;
color: @input-color;
2015-08-04 14:41:30 +08:00
font-size: @font-size-base;
line-height: @input-height-base;
2019-08-02 18:21:24 +08:00
line-height:~'@{line-height-base} \9'; // https://github.com/ant-design/ant-design/issues/17753
2015-06-09 19:45:18 +08:00
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;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
.placeholder(); // Reset placeholder
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
}
&[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;
min-height: @input-height-base;
2019-06-19 19:09:08 +08:00
line-height: @line-height-base;
2015-07-20 16:44:39 +08:00
vertical-align: bottom;
2018-12-07 16:17:45 +08:00
transition: all 0.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;
width: 100%;
2015-06-15 11:43:18 +08:00
border-collapse: separate;
border-spacing: 0;
2015-06-15 11:43:18 +08:00
// Undo padding and float of grid classes
2018-12-07 16:17:45 +08:00
&[class*='col-'] {
2015-06-15 11:43:18 +08:00
float: none;
padding-right: 0;
padding-left: 0;
2015-06-15 11:43:18 +08:00
}
2019-08-02 18:21:24 +08:00
>[class*='col-'] {
2015-07-09 13:48:24 +08:00
padding-right: 8px;
2019-08-02 18:21:24 +08:00
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,
2019-08-02 18:21: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;
}
2019-08-02 18:21:24 +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;
2019-02-19 11:21:55 +08:00
text-align: inherit;
2019-08-02 18:21:24 +08:00
&:focus {
z-index: 1; // Fix https://gw.alipayobjects.com/zos/rmsportal/DHNpoqfMXSfrSnlZvhsJ.png
border-right-width: 1px;
}
2019-08-02 18:21:24 +08:00
&:hover {
z-index: 1;
border-right-width: 1px;
}
2015-06-15 11:43:18 +08:00
}
&-addon {
position: relative;
2017-12-20 22:40:36 +08:00
padding: 0 @input-padding-horizontal-base;
color: @input-color;
2015-06-15 11:43:18 +08:00
font-weight: normal;
font-size: @font-size-base;
2015-06-15 11:43:18 +08:00
line-height: 1;
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;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
2016-06-16 21:15:59 +08:00
// Reset Select's style in addon
.@{ant-prefix}-select {
2018-11-12 12:02:30 +08:00
margin: -(@input-padding-vertical-base + 1px) (-@input-padding-horizontal-base);
2016-06-16 21:15:59 +08:00
.@{ant-prefix}-select-selection {
2016-06-16 22:04:17 +08:00
margin: -1px;
background-color: inherit;
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
2019-08-02 18:21:24 +08:00
>i:only-child::after {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
content: '';
}
2015-06-15 11:43:18 +08:00
}
// Reset rounded corners
2019-08-02 18:21:24 +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-top-right-radius: 0;
border-bottom-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-top-right-radius: 0;
border-bottom-right-radius: 0;
2016-06-16 21:15:59 +08:00
}
2015-06-15 11:43:18 +08:00
}
2015-07-07 16:18:14 +08:00
2019-08-02 18:21:24 +08:00
>.@{inputClass}-affix-wrapper {
&:not(:first-child) .@{inputClass} {
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
&:not(:last-child) .@{inputClass} {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
}
}
2015-06-15 11:43:18 +08:00
&-addon:first-child {
border-right: 0;
}
2019-08-02 18:21:24 +08:00
2015-07-08 20:12:49 +08:00
&-addon:last-child {
border-left: 0;
}
2015-07-07 16:18:14 +08:00
2019-08-02 18:21: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-top-left-radius: 0;
border-bottom-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-top-left-radius: 0;
border-bottom-left-radius: 0;
2016-06-16 21:15:59 +08:00
}
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},
2019-08-02 18:21:24 +08:00
&-lg>&-addon {
2015-06-15 11:43:18 +08:00
.input-lg();
}
2015-07-09 13:48:24 +08:00
&-sm .@{inputClass},
2019-08-02 18:21:24 +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;
float: left;
width: 100%;
}
&&-compact {
2017-09-22 20:35:30 +08:00
display: block;
.clearfix;
&-addon,
&-wrap,
2019-08-02 18:21:24 +08:00
>.@{inputClass} {
&:not(:first-child):not(:last-child) {
border-right-width: @border-width-base;
2019-08-02 18:21:24 +08:00
&:hover {
z-index: 1;
}
2019-08-02 18:21:24 +08:00
&:focus {
z-index: 1;
}
}
}
2019-08-02 18:21:24 +08:00
&>* {
2017-04-13 10:56:19 +08:00
display: inline-block;
float: none;
vertical-align: top; // https://github.com/ant-design/ant-design-pro/issues/139
border-radius: 0;
}
2019-08-02 18:21:24 +08:00
&>*:not(:last-child) {
margin-right: -@border-width-base;
border-right-width: @border-width-base;
}
// Undo float for .ant-input-group .ant-input
.@{inputClass} {
float: none;
}
2017-04-26 15:17:35 +08:00
// reset border for Select, DatePicker, AutoComplete, Cascader, Mention, TimePicker
2019-08-02 18:21:24 +08:00
&>.@{ant-prefix}-select>.@{ant-prefix}-select-selection,
&>.@{ant-prefix}-calendar-picker .@{ant-prefix}-input,
&>.@{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-right-width: @border-width-base;
border-radius: 0;
2019-08-02 18:21:24 +08:00
&:hover {
z-index: 1;
}
2019-08-02 18:21:24 +08:00
&:focus {
z-index: 1;
}
}
2019-08-02 18:21:24 +08:00
&>*:first-child,
&>.@{ant-prefix}-select:first-child>.@{ant-prefix}-select-selection,
&>.@{ant-prefix}-calendar-picker:first-child .@{ant-prefix}-input,
&>.@{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;
}
2019-08-02 18:21:24 +08:00
&>*:last-child,
&>.@{ant-prefix}-select:last-child>.@{ant-prefix}-select-selection,
&>.@{ant-prefix}-calendar-picker:last-child .@{ant-prefix}-input,
&>.@{ant-prefix}-select-auto-complete:last-child .@{ant-prefix}-input,
&>.@{ant-prefix}-cascader-picker:last-child .@{ant-prefix}-input,
&>.@{ant-prefix}-cascader-picker-focused: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-right-width: @border-width-base;
border-top-right-radius: @border-radius-base;
border-bottom-right-radius: @border-radius-base;
}
// https://github.com/ant-design/ant-design/issues/12493
2019-08-02 18:21:24 +08:00
&>.@{ant-prefix}-select-auto-complete .@{ant-prefix}-input {
vertical-align: top;
}
}
}
.input-affix-wrapper(@inputClass) {
position: relative;
2017-01-10 15:11:43 +08:00
display: inline-block;
width: 100%;
2019-02-19 10:54:03 +08:00
text-align: start;
2017-07-12 14:23:47 +08:00
&:hover .@{inputClass}:not(.@{inputClass}-disabled) {
.hover();
}
.@{inputClass} {
position: relative;
2019-02-19 11:21:55 +08:00
text-align: inherit;
}
// Should not break align of icon & text
// https://github.com/ant-design/ant-design/issues/18087
// https://github.com/ant-design/ant-design/issues/17414
// https://github.com/ant-design/ant-design/pull/17684
// https://codesandbox.io/embed/pensive-paper-di2wk
// https://codesandbox.io/embed/nifty-benz-gb7ml
.@{inputClass}-prefix,
.@{inputClass}-suffix {
position: absolute;
top: 50%;
z-index: 2;
2017-04-20 02:22:06 +08:00
color: @input-color;
line-height: 0;
transform: translateY(-50%);
2019-08-02 18:21:24 +08:00
:not(.anticon) {
line-height: @line-height-base;
}
}
.@{inputClass}-prefix {
2017-10-20 15:47:42 +08:00
left: @input-padding-horizontal-base + 1px;
}
.@{inputClass}-suffix {
2017-10-20 15:47:42 +08:00
right: @input-padding-horizontal-base + 1px;
}
.@{inputClass}:not(:first-child) {
padding-left: @input-padding-horizontal-base + @input-affix-width;
}
.@{inputClass}:not(:last-child) {
padding-right: @input-padding-horizontal-base + @input-affix-width;
}
2019-08-02 18:21:24 +08:00
&.@{inputClass}-affix-wrapper-with-clear-btn .@{inputClass}:not(:last-child) {
padding-right: @input-padding-horizontal-base + @input-affix-with-clear-btn-width;
}
2015-06-12 18:37:03 +08:00
}