ant-design/components/select/style/index.less

602 lines
13 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 20:02:01 +08:00
@import '../../style/mixins/index';
@import '../../input/style/mixin';
2015-12-02 14:59:48 +08:00
2018-12-07 20:02:01 +08:00
@select-prefix-cls: ~'@{ant-prefix}-select';
2015-08-10 15:39:50 +08:00
.selection__clear() {
position: absolute;
top: 50%;
right: @control-padding-horizontal - 1px;
z-index: 1;
display: inline-block;
width: 12px;
height: 12px;
margin-top: -6px;
color: @disabled-color;
font-size: @font-size-sm;
font-style: normal;
line-height: 12px;
text-align: center;
text-transform: none;
background: @component-background;
cursor: pointer;
opacity: 0;
transition: color 0.3s ease, opacity 0.15s ease;
text-rendering: auto;
&::before {
display: block;
}
&:hover {
color: @text-color-secondary;
}
}
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls} {
.reset-component;
2019-04-15 10:52:00 +08:00
2015-06-09 21:16:59 +08:00
position: relative;
display: inline-block;
outline: 0;
ul,
ol {
margin: 0;
padding: 0;
list-style: none;
}
2015-06-09 21:16:59 +08:00
> ul > li > a {
padding: 0;
background-color: @component-background;
2015-06-09 21:16:59 +08:00
}
// arrow
&-arrow {
2015-07-09 17:47:21 +08:00
.iconfont-mixin();
2019-04-15 10:52:00 +08:00
2015-06-09 21:16:59 +08:00
position: absolute;
top: 50%;
right: @control-padding-horizontal - 1px;
2018-02-07 20:29:40 +08:00
margin-top: -@font-size-sm / 2;
2017-10-26 19:39:04 +08:00
color: @disabled-color;
2018-02-07 20:29:40 +08:00
font-size: @font-size-sm;
line-height: 1;
transform-origin: 50% 50%;
2015-07-09 17:47:21 +08:00
2018-08-25 15:51:07 +08:00
& &-icon svg {
2018-12-07 20:02:01 +08:00
transition: transform 0.3s;
2015-06-09 21:16:59 +08:00
}
}
2015-06-11 19:23:35 +08:00
&-selection {
display: block;
2015-06-11 19:23:35 +08:00
box-sizing: border-box;
background-color: @component-background;
border: @border-width-base @border-style-base @select-border-color;
2017-12-22 18:11:29 +08:00
// strange align fix for chrome but works
// https://gw.alipayobjects.com/zos/rmsportal/VFTfKXJuogBAXcvfAUWJ.gif
border-top-width: @border-width-base + 0.02px;
border-radius: @border-radius-base;
outline: none;
2018-12-07 20:02:01 +08:00
transition: all 0.3s @ease-in-out;
user-select: none;
2015-06-15 11:01:15 +08:00
2015-06-11 19:23:35 +08:00
&:hover {
2015-08-31 12:20:04 +08:00
.hover;
2015-06-11 19:23:35 +08:00
}
2016-04-28 16:28:08 +08:00
.@{select-prefix-cls}-focused &,
&:focus,
2015-06-11 19:23:35 +08:00
&:active {
2015-08-31 12:20:04 +08:00
.active;
2015-06-11 19:23:35 +08:00
}
2016-02-19 16:16:49 +08:00
&__clear {
.selection__clear();
2016-02-19 16:16:49 +08:00
}
&:hover &__clear {
opacity: 1;
}
&-selected-value {
2016-10-20 11:59:38 +08:00
float: left;
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
2015-06-11 19:23:35 +08:00
}
2019-08-02 00:28:43 +08:00
&-no-arrow &-selection-selected-value {
padding-right: 0;
}
2015-06-11 19:23:35 +08:00
2015-06-15 19:29:32 +08:00
&-disabled {
color: @disabled-color;
2015-06-15 19:29:32 +08:00
}
&-disabled &-selection {
background: @input-disabled-bg;
cursor: not-allowed;
2015-11-26 19:32:55 +08:00
&:hover,
&:focus,
2015-11-26 19:32:55 +08:00
&:active {
border-color: @select-border-color;
box-shadow: none;
2015-06-15 19:29:32 +08:00
}
&__clear {
display: none;
2016-05-26 16:00:55 +08:00
visibility: hidden;
pointer-events: none;
}
2015-06-15 19:29:32 +08:00
}
&-disabled &-selection--multiple &-selection__choice {
padding-right: 10px;
color: fade(@black, 33%);
background: @background-color-base;
&__remove {
display: none;
}
2016-01-05 11:45:13 +08:00
}
2015-06-11 19:23:35 +08:00
&-selection--single {
2016-04-27 17:57:35 +08:00
position: relative;
height: @input-height-base;
2015-06-11 19:23:35 +08:00
cursor: pointer;
2019-07-23 14:47:35 +08:00
.@{select-prefix-cls}-selection__rendered {
margin-right: 24px;
2019-07-23 14:47:35 +08:00
}
}
2015-06-09 21:16:59 +08:00
2019-08-01 23:08:03 +08:00
&-no-arrow {
.@{select-prefix-cls}-selection__rendered {
2019-08-02 11:54:15 +08:00
margin-right: @control-padding-horizontal - 1px;
2019-08-01 23:08:03 +08:00
}
}
&-selection__rendered {
position: relative;
display: block;
margin-right: @control-padding-horizontal - 1px;
margin-left: @control-padding-horizontal - 1px;
line-height: @input-height-base - 2px;
// https://github.com/ant-design/ant-design/issues/3481#issuecomment-254721026
&::after {
display: inline-block;
2017-12-22 18:30:11 +08:00
width: 0;
visibility: hidden;
content: '.';
2019-04-15 22:44:51 +08:00
pointer-events: none;
2015-06-09 21:16:59 +08:00
}
}
2015-06-09 21:16:59 +08:00
2015-08-10 15:39:50 +08:00
&-lg {
font-size: @font-size-lg;
2016-08-17 13:47:23 +08:00
.@{select-prefix-cls}-selection--single {
height: @input-height-lg;
2015-08-08 19:11:10 +08:00
}
.@{select-prefix-cls}-selection__rendered {
line-height: @input-height-lg - 2px;
}
2016-08-17 13:47:23 +08:00
.@{select-prefix-cls}-selection--multiple {
min-height: @input-height-lg;
2016-08-17 13:47:23 +08:00
.@{select-prefix-cls}-selection__rendered {
2015-08-10 15:39:50 +08:00
li {
height: @input-height-lg - 8px;
line-height: @input-height-lg - 8px;
2015-08-08 19:11:10 +08:00
}
}
.@{select-prefix-cls}-selection__clear,
.@{select-prefix-cls}-arrow {
top: @input-height-lg / 2;
}
2015-08-08 19:11:10 +08:00
}
}
2015-08-10 15:39:50 +08:00
&-sm {
2016-08-17 13:47:23 +08:00
.@{select-prefix-cls}-selection--single {
height: @input-height-sm;
}
.@{select-prefix-cls}-selection__rendered {
margin-left: @control-padding-horizontal-sm - 1px;
line-height: @input-height-sm - 2px;
2015-08-08 19:11:10 +08:00
}
2016-08-17 13:47:23 +08:00
.@{select-prefix-cls}-selection--multiple {
min-height: @input-height-sm;
2016-08-17 13:47:23 +08:00
.@{select-prefix-cls}-selection__rendered {
2015-08-10 15:39:50 +08:00
li {
height: @input-height-sm - 8px;
line-height: @input-height-sm - 10px;
2015-08-08 19:11:10 +08:00
}
}
.@{select-prefix-cls}-selection__clear,
.@{select-prefix-cls}-arrow {
top: @input-height-sm / 2;
}
2015-08-08 19:11:10 +08:00
}
.@{select-prefix-cls}-selection__clear,
.@{select-prefix-cls}-arrow {
right: @control-padding-horizontal-sm;
}
2015-08-08 19:11:10 +08:00
}
2015-07-14 20:16:05 +08:00
&-disabled &-selection__choice__remove {
color: @disabled-color;
2015-07-14 20:16:05 +08:00
cursor: default;
&:hover {
color: @disabled-color;
2015-07-14 20:16:05 +08:00
}
}
2015-09-17 19:31:52 +08:00
&-search__field__wrap {
position: relative;
display: inline-block;
}
&-selection__placeholder,
2018-12-07 20:02:01 +08:00
&-search__field__placeholder {
// for TreeSelect compatibility
position: absolute;
2016-02-25 11:49:40 +08:00
top: 50%;
right: 9px;
left: 0;
max-width: 100%;
height: 20px;
2016-02-25 11:49:40 +08:00
margin-top: -10px;
overflow: hidden;
color: @input-placeholder-color;
line-height: 20px;
white-space: nowrap;
2017-05-24 16:48:45 +08:00
text-align: left;
text-overflow: ellipsis;
}
&-search__field__placeholder {
left: @control-padding-horizontal;
}
&-search__field__mirror {
position: absolute;
top: 0;
left: 0;
white-space: pre;
opacity: 0;
pointer-events: none;
}
2015-07-14 20:16:05 +08:00
&-search--inline {
position: absolute;
width: 100%;
height: 100%;
2015-07-14 20:16:05 +08:00
2015-09-17 19:31:52 +08:00
.@{select-prefix-cls}-search__field__wrap {
width: 100%;
height: 100%;
2015-09-17 19:31:52 +08:00
}
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-search__field {
width: 100%;
height: 100%;
font-size: 100%;
line-height: 1;
2015-07-14 20:16:05 +08:00
background: transparent;
border-width: 0;
2016-02-02 12:27:22 +08:00
border-radius: @border-radius-base;
outline: 0;
2015-07-14 20:16:05 +08:00
}
2016-05-27 15:00:22 +08:00
2015-07-14 20:16:05 +08:00
> i {
float: right;
}
}
2015-06-09 21:16:59 +08:00
&-selection--multiple {
min-height: @input-height-base;
padding-bottom: 3px;
cursor: text;
.clearfix;
2015-06-09 21:16:59 +08:00
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-search--inline {
position: static;
float: left;
2015-07-15 19:59:54 +08:00
width: auto;
2017-06-27 11:01:11 +08:00
max-width: 100%;
padding: 0;
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-search__field {
2015-07-15 19:59:54 +08:00
width: 0.75em;
max-width: 100%;
2015-07-15 19:59:54 +08:00
}
}
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-selection__rendered {
height: auto;
margin-bottom: -3px;
margin-left: 5px;
}
.@{select-prefix-cls}-selection__placeholder {
margin-left: 6px;
}
> ul > li,
2018-12-07 20:02:01 +08:00
.@{select-prefix-cls}-selection__rendered > ul > li {
height: @input-height-base - 8px;
2018-12-07 20:02:01 +08:00
// for tree-select
margin-top: 3px;
line-height: @input-height-base - 8px - 2px;
2015-06-15 19:29:32 +08:00
}
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-selection__choice {
position: relative;
float: left;
max-width: 99%;
margin-right: 4px;
padding: 0 20px 0 10px;
overflow: hidden;
color: @tag-default-color;
background-color: @tag-default-bg;
border: 1px solid @border-color-split;
border-radius: @border-radius-sm;
2015-06-09 21:16:59 +08:00
cursor: default;
2018-12-07 20:02:01 +08:00
transition: padding 0.3s @ease-in-out;
&__disabled {
padding: 0 10px;
}
}
.@{select-prefix-cls}-selection__choice__content {
display: inline-block;
max-width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2018-12-07 20:02:01 +08:00
transition: margin 0.3s @ease-in-out;
2015-06-09 21:16:59 +08:00
}
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-selection__choice__remove {
2015-07-08 22:07:15 +08:00
.iconfont-mixin();
2019-04-15 10:52:00 +08:00
position: absolute;
right: 4px;
display: inline-block;
color: @text-color-secondary;
font-weight: bold;
font-size: @font-size-sm;
2016-02-25 11:49:40 +08:00
line-height: inherit;
2015-06-09 21:16:59 +08:00
cursor: pointer;
2018-12-07 20:02:01 +08:00
transition: all 0.3s;
.iconfont-size-under-12px(10px);
2015-06-09 21:16:59 +08:00
&:hover {
color: @icon-color-hover;
2015-06-09 21:16:59 +08:00
}
}
.@{select-prefix-cls}-selection__clear,
.@{select-prefix-cls}-arrow {
top: @input-height-base / 2;
}
}
&-allow-clear &-selection--single &-selection-selected-value {
padding-right: 16px;
}
&-allow-clear &-selection--multiple &-selection__rendered,
&-show-arrow &-selection--multiple &-selection__rendered {
margin-right: 20px; // In case that clear button will overlap content
2015-06-09 21:16:59 +08:00
}
2015-08-23 15:42:38 +08:00
&-open {
2018-08-09 12:07:27 +08:00
.@{select-prefix-cls}-arrow {
2018-08-25 15:51:07 +08:00
&-icon svg {
2018-08-09 12:07:27 +08:00
transform: rotate(180deg);
}
}
2015-08-23 15:42:38 +08:00
.@{select-prefix-cls}-selection {
.active();
2015-07-20 21:32:31 +08:00
}
}
2015-08-23 15:42:38 +08:00
&-combobox {
.@{select-prefix-cls}-arrow {
2015-08-20 17:27:40 +08:00
display: none;
}
2015-08-23 15:42:38 +08:00
.@{select-prefix-cls}-search--inline {
float: none;
width: 100%;
height: 100%;
2015-08-23 15:42:38 +08:00
}
.@{select-prefix-cls}-search__field__wrap {
width: 100%;
height: 100%;
}
.@{select-prefix-cls}-search__field {
position: relative;
z-index: 1;
width: 100%;
height: 100%;
2016-05-13 23:16:59 +08:00
box-shadow: none;
transition: all 0.3s @ease-in-out, height 0s;
2015-08-23 15:42:38 +08:00
}
}
&-combobox&-allow-clear &-selection:hover &-selection__rendered,
&-combobox&-show-arrow &-selection:hover &-selection__rendered {
margin-right: 20px; // In case that clear button will overlap content
}
2015-08-23 15:42:38 +08:00
}
.@{select-prefix-cls}-dropdown {
.reset-component;
2019-04-15 10:52:00 +08:00
position: absolute;
top: -9999px;
left: -9999px;
z-index: @zindex-dropdown;
box-sizing: border-box;
font-size: @font-size-base;
// Fix select render lag of long text in chrome
// https://github.com/ant-design/ant-design/issues/11456
// https://github.com/ant-design/ant-design/issues/11843
font-variant: initial;
background-color: @select-dropdown-bg;
border-radius: @border-radius-base;
outline: none;
box-shadow: @box-shadow-base;
2015-11-11 12:00:54 +08:00
&.slide-up-enter.slide-up-enter-active&-placement-bottomLeft,
&.slide-up-appear.slide-up-appear-active&-placement-bottomLeft {
2015-10-22 18:27:17 +08:00
animation-name: antSlideUpIn;
}
2015-11-11 12:00:54 +08:00
&.slide-up-enter.slide-up-enter-active&-placement-topLeft,
&.slide-up-appear.slide-up-appear-active&-placement-topLeft {
2015-10-22 18:27:17 +08:00
animation-name: antSlideDownIn;
}
2015-11-11 12:00:54 +08:00
&.slide-up-leave.slide-up-leave-active&-placement-bottomLeft {
2015-10-22 18:27:17 +08:00
animation-name: antSlideUpOut;
}
2015-11-11 12:00:54 +08:00
&.slide-up-leave.slide-up-leave-active&-placement-topLeft {
2015-10-22 18:27:17 +08:00
animation-name: antSlideDownOut;
}
2015-08-23 15:42:38 +08:00
&-hidden {
display: none;
}
&-menu {
max-height: 250px;
2015-08-23 15:42:38 +08:00
margin-bottom: 0;
padding-left: 0; // Override default ul/ol
2018-02-07 11:43:21 +08:00
overflow: auto;
list-style: none;
outline: none;
2015-07-14 20:16:05 +08:00
2015-08-23 15:42:38 +08:00
&-item-group-list {
margin: 0;
padding: 0;
> .@{select-prefix-cls}-dropdown-menu-item {
2017-10-29 14:21:00 +08:00
padding-left: 20px;
2015-07-14 20:16:05 +08:00
}
2015-08-23 15:42:38 +08:00
}
2015-07-14 20:16:05 +08:00
2015-08-23 15:42:38 +08:00
&-item-group-title {
2017-10-29 14:21:00 +08:00
height: 32px;
padding: 0 @control-padding-horizontal;
color: @text-color-secondary;
2017-10-29 14:21:00 +08:00
font-size: @font-size-sm;
line-height: 32px;
2015-08-23 15:42:38 +08:00
}
2015-08-01 17:51:55 +08:00
2018-07-23 18:50:07 +08:00
&-item-group-list &-item:first-child:not(:last-child),
&-item-group:not(:last-child) &-item-group-list &-item:last-child {
border-radius: 0;
}
2015-08-23 15:42:38 +08:00
&-item {
position: relative;
display: block;
2017-10-11 16:56:52 +08:00
padding: 5px @control-padding-horizontal;
overflow: hidden;
2016-11-08 20:50:59 +08:00
color: @text-color;
font-weight: normal;
line-height: 22px;
2015-08-23 15:42:38 +08:00
white-space: nowrap;
2017-10-08 15:22:24 +08:00
text-overflow: ellipsis;
cursor: pointer;
transition: background 0.3s ease;
2015-08-01 17:51:55 +08:00
&:hover:not(&-disabled) {
background-color: @item-hover-bg;
}
&:first-child {
border-radius: @border-radius-base @border-radius-base 0 0;
}
&:last-child {
border-radius: 0 0 @border-radius-base @border-radius-base;
2018-02-27 17:21:33 +08:00
}
&-selected {
color: @text-color;
font-weight: @select-item-selected-font-weight;
background-color: @select-item-selected-bg;
}
2015-08-23 15:42:38 +08:00
&-disabled {
color: @disabled-color;
2015-08-23 15:42:38 +08:00
cursor: not-allowed;
2015-07-14 20:16:05 +08:00
2015-08-23 15:42:38 +08:00
&:hover {
color: @disabled-color;
2015-07-14 20:16:05 +08:00
cursor: not-allowed;
}
2015-08-23 15:42:38 +08:00
}
2015-07-14 20:16:05 +08:00
&-active:not(&-disabled) {
background-color: @select-item-active-bg;
}
2015-08-23 15:42:38 +08:00
&-divider {
height: 1px;
margin: 1px 0;
overflow: hidden;
line-height: 0;
background-color: @border-color-split;
2015-07-14 20:16:05 +08:00
}
}
}
&&--multiple {
.@{select-prefix-cls}-dropdown-menu-item {
2018-10-25 00:06:59 +08:00
padding-right: @control-padding-horizontal + 20;
2018-09-06 21:26:17 +08:00
& .@{select-prefix-cls}-selected-icon {
position: absolute;
2016-10-21 20:21:40 +08:00
top: 50%;
2017-10-11 16:56:52 +08:00
right: @control-padding-horizontal;
color: transparent;
font-weight: bold;
2019-02-23 16:35:04 +08:00
font-size: 12px;
text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
transform: translateY(-50%);
2019-02-27 19:57:48 +08:00
transition: all 0.2s;
}
2018-09-06 21:26:17 +08:00
&:hover .@{select-prefix-cls}-selected-icon {
color: fade(@black, 87%);
}
2018-09-06 21:26:17 +08:00
&-disabled .@{select-prefix-cls}-selected-icon {
display: none;
}
2018-09-06 21:26:17 +08:00
&-selected .@{select-prefix-cls}-selected-icon,
&-selected:hover .@{select-prefix-cls}-selected-icon {
display: inline-block;
color: @primary-color;
}
}
}
// Patch for popup adjust
// https://github.com/ant-design/ant-design/issues/14422
&--empty&--multiple &-menu-item {
padding-right: @control-padding-horizontal;
}
2015-11-26 19:32:55 +08:00
&-container-open,
&-open {
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls}-dropdown {
2015-07-14 20:16:05 +08:00
display: block;
2015-06-09 21:16:59 +08:00
}
}
2015-06-14 15:52:47 +08:00
}