2016-04-27 20:44:36 +08:00
|
|
|
@import "../../style/themes/default";
|
|
|
|
@import "../../style/mixins/index";
|
|
|
|
@import "../../input/style/mixin";
|
2015-12-02 14:59:48 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
@select-prefix-cls: ~"@{ant-prefix}-select";
|
2015-08-10 15:39:50 +08:00
|
|
|
|
2016-02-26 17:12:56 +08:00
|
|
|
.selection__clear() {
|
|
|
|
display: inline-block;
|
|
|
|
font-style: normal;
|
|
|
|
vertical-align: baseline;
|
|
|
|
text-align: center;
|
|
|
|
text-transform: none;
|
|
|
|
text-rendering: auto;
|
|
|
|
opacity: 0;
|
|
|
|
position: absolute;
|
2017-09-27 22:32:49 +08:00
|
|
|
right: @control-padding-horizontal - 1px;
|
2016-02-26 17:12:56 +08:00
|
|
|
z-index: 1;
|
2016-11-29 11:56:10 +08:00
|
|
|
background: @component-background;
|
2016-02-26 17:12:56 +08:00
|
|
|
top: 50%;
|
2017-09-27 22:32:49 +08:00
|
|
|
font-size: @font-size-sm;
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2016-02-26 17:12:56 +08:00
|
|
|
width: 12px;
|
|
|
|
height: 12px;
|
|
|
|
margin-top: -6px;
|
|
|
|
line-height: 12px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color 0.3s ease, opacity 0.15s ease;
|
|
|
|
&:before {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
&:hover {
|
2016-11-08 20:45:56 +08:00
|
|
|
color: @text-color-secondary;
|
2016-02-26 17:12:56 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{select-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2015-06-09 21:16:59 +08:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
2018-07-20 11:03:02 +08:00
|
|
|
outline: 0;
|
2017-09-22 18:33:29 +08:00
|
|
|
|
|
|
|
ul,
|
|
|
|
ol {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
list-style: none;
|
|
|
|
}
|
2015-06-09 21:16:59 +08:00
|
|
|
|
|
|
|
> ul > li > a {
|
|
|
|
padding: 0;
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2015-06-09 21:16:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// arrow
|
|
|
|
&-arrow {
|
2015-07-09 17:47:21 +08:00
|
|
|
.iconfont-mixin();
|
2015-06-09 21:16:59 +08:00
|
|
|
position: absolute;
|
2015-07-23 17:18:09 +08:00
|
|
|
top: 50%;
|
2017-09-27 22:32:49 +08:00
|
|
|
right: @control-padding-horizontal - 1px;
|
2015-07-23 17:18:09 +08:00
|
|
|
line-height: 1;
|
2018-02-07 20:29:40 +08:00
|
|
|
margin-top: -@font-size-sm / 2;
|
2017-10-26 19:39:04 +08:00
|
|
|
transform-origin: 50% 50%;
|
|
|
|
color: @disabled-color;
|
2018-02-07 20:29:40 +08:00
|
|
|
font-size: @font-size-sm;
|
2015-07-09 17:47:21 +08:00
|
|
|
|
2018-08-25 15:51:07 +08:00
|
|
|
& &-icon svg {
|
2018-02-07 20:29:40 +08:00
|
|
|
transition: transform .3s;
|
2015-06-09 21:16:59 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-11 19:23:35 +08:00
|
|
|
&-selection {
|
|
|
|
outline: none;
|
2015-06-09 21:16:59 +08:00
|
|
|
user-select: none;
|
|
|
|
|
2015-06-11 19:23:35 +08:00
|
|
|
box-sizing: border-box;
|
|
|
|
display: block;
|
|
|
|
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
2015-11-05 21:25:43 +08:00
|
|
|
border-radius: @border-radius-base;
|
2017-01-31 16:05:10 +08:00
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
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;
|
2016-04-19 15:15:54 +08:00
|
|
|
transition: all .3s @ease-in-out;
|
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-02-26 17:12:56 +08:00
|
|
|
|
2016-04-28 16:28:08 +08:00
|
|
|
.@{select-prefix-cls}-focused &,
|
2016-04-08 15:30:49 +08:00
|
|
|
&: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 {
|
2016-02-26 17:12:56 +08:00
|
|
|
.selection__clear();
|
2016-02-19 16:16:49 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&:hover &__clear {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2016-10-19 14:27:38 +08:00
|
|
|
|
|
|
|
&-selected-value {
|
2016-10-20 11:59:38 +08:00
|
|
|
float: left;
|
2016-10-19 14:27:38 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
max-width: 100%;
|
2018-05-06 14:54:27 +08:00
|
|
|
padding-right: 20px;
|
2016-10-19 14:27:38 +08:00
|
|
|
}
|
2015-06-11 19:23:35 +08:00
|
|
|
}
|
2018-05-06 14:54:27 +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 {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2015-06-15 19:29:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-disabled &-selection {
|
2017-04-29 04:04:41 +08:00
|
|
|
background: @input-disabled-bg;
|
2016-02-05 13:55:14 +08:00
|
|
|
cursor: not-allowed;
|
2015-11-26 19:32:55 +08:00
|
|
|
&:hover,
|
2016-04-08 15:30:49 +08:00
|
|
|
&:focus,
|
2015-11-26 19:32:55 +08:00
|
|
|
&:active {
|
2016-01-30 15:13:25 +08:00
|
|
|
border-color: @border-color-base;
|
2016-04-08 15:30:49 +08:00
|
|
|
box-shadow: none;
|
2015-06-15 19:29:32 +08:00
|
|
|
}
|
2016-04-22 15:41:52 +08:00
|
|
|
|
|
|
|
&__clear {
|
|
|
|
display: none;
|
2016-05-26 16:00:55 +08:00
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: none;
|
2016-04-22 15:41:52 +08:00
|
|
|
}
|
2015-06-15 19:29:32 +08:00
|
|
|
}
|
|
|
|
|
2016-02-05 13:55:14 +08:00
|
|
|
&-disabled &-selection--multiple &-selection__choice {
|
2017-09-27 22:32:49 +08:00
|
|
|
background: @background-color-base;
|
2016-02-05 13:55:14 +08:00
|
|
|
color: #aaa;
|
|
|
|
padding-right: 10px;
|
|
|
|
&__remove {
|
|
|
|
display: none;
|
|
|
|
}
|
2016-01-05 11:45:13 +08:00
|
|
|
}
|
|
|
|
|
2015-06-11 19:23:35 +08:00
|
|
|
&-selection--single {
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-base;
|
2016-04-27 17:57:35 +08:00
|
|
|
position: relative;
|
2015-06-11 19:23:35 +08:00
|
|
|
cursor: pointer;
|
2016-10-19 20:32:14 +08:00
|
|
|
}
|
2015-06-09 21:16:59 +08:00
|
|
|
|
2016-10-19 20:32:14 +08:00
|
|
|
&-selection__rendered {
|
|
|
|
display: block;
|
2017-09-27 22:32:49 +08:00
|
|
|
margin-left: @control-padding-horizontal - 1px;
|
|
|
|
margin-right: @control-padding-horizontal - 1px;
|
2016-10-19 20:32:14 +08:00
|
|
|
position: relative;
|
2017-01-24 15:20:06 +08:00
|
|
|
line-height: @input-height-base - 2px;
|
2016-10-19 20:32:14 +08:00
|
|
|
// https://github.com/ant-design/ant-design/issues/3481#issuecomment-254721026
|
|
|
|
&:after {
|
|
|
|
content: '.';
|
|
|
|
visibility: hidden;
|
|
|
|
pointer-events: none;
|
2016-10-20 14:18:07 +08:00
|
|
|
display: inline-block;
|
2017-12-22 18:30:11 +08:00
|
|
|
width: 0;
|
2015-06-09 21:16:59 +08:00
|
|
|
}
|
2016-04-27 20:44:36 +08:00
|
|
|
}
|
2015-06-09 21:16:59 +08:00
|
|
|
|
2015-08-10 15:39:50 +08:00
|
|
|
&-lg {
|
2017-12-28 15:41:10 +08:00
|
|
|
font-size: @font-size-lg;
|
2016-08-17 13:47:23 +08:00
|
|
|
.@{select-prefix-cls}-selection--single {
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-lg;
|
2015-08-08 19:11:10 +08:00
|
|
|
}
|
2016-10-19 20:32:14 +08:00
|
|
|
.@{select-prefix-cls}-selection__rendered {
|
2017-01-24 15:20:06 +08:00
|
|
|
line-height: @input-height-lg - 2px;
|
2016-10-19 20:32:14 +08:00
|
|
|
}
|
2016-08-17 13:47:23 +08:00
|
|
|
.@{select-prefix-cls}-selection--multiple {
|
2016-12-15 11:17:09 +08:00
|
|
|
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 {
|
2017-01-24 15:20:06 +08:00
|
|
|
height: @input-height-lg - 8px;
|
|
|
|
line-height: @input-height-lg - 8px;
|
2015-08-08 19:11:10 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-27 17:37:39 +08:00
|
|
|
.@{select-prefix-cls}-selection__clear {
|
|
|
|
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 {
|
2016-12-15 11:17:09 +08:00
|
|
|
height: @input-height-sm;
|
2016-10-19 20:32:14 +08:00
|
|
|
}
|
|
|
|
.@{select-prefix-cls}-selection__rendered {
|
2017-01-24 15:20:06 +08:00
|
|
|
line-height: @input-height-sm - 2px;
|
2017-09-27 22:32:49 +08:00
|
|
|
margin: 0 @control-padding-horizontal-sm - 1px;
|
2015-08-08 19:11:10 +08:00
|
|
|
}
|
2016-08-17 13:47:23 +08:00
|
|
|
.@{select-prefix-cls}-selection--multiple {
|
2016-12-15 11:17:09 +08:00
|
|
|
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 {
|
2017-01-24 15:20:06 +08:00
|
|
|
height: @input-height-sm - 8px;
|
2017-09-27 22:32:49 +08:00
|
|
|
line-height: @input-height-sm - 10px;
|
2015-08-08 19:11:10 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-27 17:37:39 +08:00
|
|
|
.@{select-prefix-cls}-selection__clear {
|
|
|
|
top: @input-height-sm / 2;
|
|
|
|
}
|
2015-08-08 19:11:10 +08:00
|
|
|
}
|
2017-09-27 22:32:49 +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 {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2015-07-14 20:16:05 +08:00
|
|
|
cursor: default;
|
|
|
|
&:hover {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2015-07-14 20:16:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-17 19:31:52 +08:00
|
|
|
&-search__field__wrap {
|
2015-08-18 00:41:55 +08:00
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2016-05-12 12:10:26 +08:00
|
|
|
&-selection__placeholder,
|
|
|
|
&-search__field__placeholder { // for TreeSelect compatibility
|
2015-08-18 00:41:55 +08:00
|
|
|
position: absolute;
|
2016-02-25 11:49:40 +08:00
|
|
|
top: 50%;
|
2016-10-19 14:27:38 +08:00
|
|
|
left: 0;
|
2016-07-24 15:15:13 +08:00
|
|
|
right: 9px;
|
2016-11-16 11:34:25 +08:00
|
|
|
color: @input-placeholder-color;
|
2016-02-25 11:49:40 +08:00
|
|
|
line-height: 20px;
|
|
|
|
height: 20px;
|
2016-07-24 15:15:13 +08:00
|
|
|
max-width: 100%;
|
2016-02-25 11:49:40 +08:00
|
|
|
margin-top: -10px;
|
2016-07-24 15:15:13 +08:00
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
2017-05-24 16:48:45 +08:00
|
|
|
text-align: left;
|
2015-08-18 00:41:55 +08:00
|
|
|
}
|
|
|
|
|
2016-11-14 20:15:51 +08:00
|
|
|
&-search__field__placeholder {
|
2017-09-27 22:32:49 +08:00
|
|
|
left: @control-padding-horizontal;
|
2016-11-14 20:15:51 +08:00
|
|
|
}
|
|
|
|
|
2017-09-23 12:11:17 +08:00
|
|
|
&-search__field__mirror {
|
|
|
|
position: absolute;
|
2018-06-26 14:52:48 +08:00
|
|
|
top: -9999px;
|
2017-09-23 12:11:17 +08:00
|
|
|
left: -9999px;
|
|
|
|
white-space: pre;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2015-07-14 20:16:05 +08:00
|
|
|
&-search--inline {
|
2016-10-13 15:54:25 +08:00
|
|
|
position: absolute;
|
2016-08-17 13:57:42 +08:00
|
|
|
height: 100%;
|
2017-06-06 20:35:51 +08:00
|
|
|
width: 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%;
|
2016-08-17 13:57:42 +08:00
|
|
|
height: 100%;
|
2015-09-17 19:31:52 +08:00
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{select-prefix-cls}-search__field {
|
2017-05-05 18:06:43 +08:00
|
|
|
border-width: 0;
|
2015-07-14 20:16:05 +08:00
|
|
|
font-size: 100%;
|
2016-08-17 13:57:42 +08:00
|
|
|
height: 100%;
|
2016-10-19 14:27:38 +08:00
|
|
|
width: 100%;
|
2015-07-14 20:16:05 +08:00
|
|
|
background: transparent;
|
|
|
|
outline: 0;
|
2016-02-02 12:27:22 +08:00
|
|
|
border-radius: @border-radius-base;
|
2017-09-22 20:16:36 +08:00
|
|
|
line-height: 1;
|
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 {
|
2016-12-15 11:17:09 +08:00
|
|
|
min-height: @input-height-base;
|
2015-06-09 21:16:59 +08:00
|
|
|
cursor: text;
|
2016-10-19 20:32:14 +08:00
|
|
|
padding-bottom: 3px;
|
|
|
|
.clearfix;
|
2015-06-09 21:16:59 +08:00
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{select-prefix-cls}-search--inline {
|
2017-11-29 21:00:16 +08:00
|
|
|
float: left;
|
|
|
|
position: static;
|
2015-07-15 19:59:54 +08:00
|
|
|
width: auto;
|
2016-10-19 14:27:38 +08:00
|
|
|
padding: 0;
|
2017-06-27 11:01:11 +08:00
|
|
|
max-width: 100%;
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{select-prefix-cls}-search__field {
|
2017-06-27 11:01:11 +08:00
|
|
|
max-width: 100%;
|
2015-07-15 19:59:54 +08:00
|
|
|
width: 0.75em;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-20 16:55:42 +08:00
|
|
|
.@{select-prefix-cls}-selection__rendered {
|
2016-10-19 20:32:14 +08:00
|
|
|
margin-left: 5px;
|
|
|
|
margin-bottom: -3px;
|
|
|
|
height: auto;
|
2016-04-27 20:44:36 +08:00
|
|
|
}
|
|
|
|
|
2017-09-27 22:32:49 +08:00
|
|
|
.@{select-prefix-cls}-selection__placeholder {
|
|
|
|
margin-left: 6px;
|
|
|
|
}
|
|
|
|
|
2016-04-27 20:44:36 +08:00
|
|
|
> ul > li,
|
|
|
|
.@{select-prefix-cls}-selection__rendered > ul > li { // for tree-select
|
2016-10-19 20:32:14 +08:00
|
|
|
margin-top: 3px;
|
2017-01-24 15:20:06 +08:00
|
|
|
height: @input-height-base - 8px;
|
2017-09-27 22:32:49 +08:00
|
|
|
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 {
|
2017-05-03 22:33:28 +08:00
|
|
|
color: @tag-default-color;
|
|
|
|
background-color: @tag-default-bg;
|
2017-09-27 22:32:49 +08:00
|
|
|
border: 1px solid @border-color-split;
|
|
|
|
border-radius: @border-radius-sm;
|
2015-06-09 21:16:59 +08:00
|
|
|
cursor: default;
|
|
|
|
float: left;
|
|
|
|
margin-right: 4px;
|
2015-09-10 12:07:58 +08:00
|
|
|
max-width: 99%;
|
|
|
|
position: relative;
|
2015-12-02 14:59:48 +08:00
|
|
|
overflow: hidden;
|
2016-04-27 20:44:36 +08:00
|
|
|
transition: padding .3s @ease-in-out;
|
2015-12-16 22:34:03 +08:00
|
|
|
padding: 0 20px 0 10px;
|
2016-06-14 23:09:35 +08:00
|
|
|
&__disabled {
|
|
|
|
padding: 0 10px;
|
|
|
|
}
|
2015-09-10 12:07:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.@{select-prefix-cls}-selection__choice__content {
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
max-width: 100%;
|
2016-04-27 20:44:36 +08:00
|
|
|
transition: margin .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();
|
2016-11-08 20:45:56 +08:00
|
|
|
color: @text-color-secondary;
|
2016-02-25 11:49:40 +08:00
|
|
|
line-height: inherit;
|
2015-06-09 21:16:59 +08:00
|
|
|
cursor: pointer;
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
2017-09-27 22:32:49 +08:00
|
|
|
transition: all .3s;
|
|
|
|
font-size: @font-size-sm;
|
|
|
|
.iconfont-size-under-12px(10px);
|
2015-09-10 12:07:58 +08:00
|
|
|
position: absolute;
|
|
|
|
right: 4px;
|
2015-06-09 21:16:59 +08:00
|
|
|
&:hover {
|
2015-12-16 22:24:24 +08:00
|
|
|
color: #404040;
|
2015-06-09 21:16:59 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-27 17:37:39 +08:00
|
|
|
|
|
|
|
.@{select-prefix-cls}-selection__clear {
|
|
|
|
top: @input-height-base / 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-28 23:38:05 +08:00
|
|
|
&-allow-clear &-selection--single &-selection-selected-value {
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
|
2017-03-27 17:37:39 +08:00
|
|
|
&-allow-clear &-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-07-21 10:59:47 +08:00
|
|
|
}
|
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 {
|
|
|
|
height: 100%;
|
2016-10-19 14:27:38 +08:00
|
|
|
width: 100%;
|
2015-08-23 15:42:38 +08:00
|
|
|
float: none;
|
|
|
|
}
|
|
|
|
.@{select-prefix-cls}-search__field__wrap {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.@{select-prefix-cls}-search__field {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2016-02-02 12:27:22 +08:00
|
|
|
transition: all .3s @ease-in-out;
|
2016-05-13 23:16:59 +08:00
|
|
|
box-shadow: none;
|
2015-08-23 15:42:38 +08:00
|
|
|
}
|
|
|
|
}
|
2017-03-27 17:37:39 +08:00
|
|
|
&-combobox&-allow-clear &-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 {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2016-12-09 10:35:13 +08:00
|
|
|
background-color: @component-background;
|
2015-12-02 11:53:37 +08:00
|
|
|
box-shadow: @box-shadow-base;
|
2015-11-06 16:06:18 +08:00
|
|
|
border-radius: @border-radius-base;
|
2015-08-23 15:42:38 +08:00
|
|
|
box-sizing: border-box;
|
2016-03-28 16:01:37 +08:00
|
|
|
z-index: @zindex-dropdown;
|
2015-08-23 15:42:38 +08:00
|
|
|
left: -9999px;
|
|
|
|
top: -9999px;
|
|
|
|
position: absolute;
|
|
|
|
outline: none;
|
2015-08-24 16:07:44 +08:00
|
|
|
font-size: @font-size-base;
|
2015-08-23 15:42:38 +08:00
|
|
|
|
|
|
|
&-menu {
|
2015-06-09 21:16:59 +08:00
|
|
|
outline: none;
|
2015-08-23 15:42:38 +08:00
|
|
|
margin-bottom: 0;
|
|
|
|
padding-left: 0; // Override default ul/ol
|
|
|
|
list-style: none;
|
|
|
|
max-height: 250px;
|
2018-02-07 11:43:21 +08:00
|
|
|
overflow: auto;
|
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 {
|
2016-11-08 20:45:56 +08:00
|
|
|
color: @text-color-secondary;
|
2017-10-29 14:21:00 +08:00
|
|
|
padding: 0 @control-padding-horizontal;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: @font-size-sm;
|
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;
|
2017-09-27 22:32:49 +08:00
|
|
|
line-height: 22px;
|
2015-08-23 15:42:38 +08:00
|
|
|
font-weight: normal;
|
2016-11-08 20:50:59 +08:00
|
|
|
color: @text-color;
|
2015-08-23 15:42:38 +08:00
|
|
|
white-space: nowrap;
|
|
|
|
cursor: pointer;
|
2015-09-24 22:16:28 +08:00
|
|
|
overflow: hidden;
|
2017-10-08 15:22:24 +08:00
|
|
|
text-overflow: ellipsis;
|
2015-12-08 22:08:21 +08:00
|
|
|
transition: background 0.3s ease;
|
2015-08-01 17:51:55 +08:00
|
|
|
|
2017-05-03 22:57:14 +08:00
|
|
|
&:hover {
|
|
|
|
background-color: @item-hover-bg;
|
|
|
|
}
|
|
|
|
|
2018-02-27 18:27:31 +08:00
|
|
|
&: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
|
|
|
}
|
|
|
|
|
2015-08-23 15:42:38 +08:00
|
|
|
&-disabled {
|
2017-01-01 22:20:06 +08:00
|
|
|
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 {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2016-11-29 11:56:10 +08:00
|
|
|
background-color: @component-background;
|
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
|
|
|
|
2016-06-14 23:09:35 +08:00
|
|
|
&-selected {
|
|
|
|
&,
|
|
|
|
&:hover {
|
2017-09-27 22:32:49 +08:00
|
|
|
background-color: @background-color-light;
|
2017-08-17 22:10:40 +08:00
|
|
|
font-weight: 600;
|
2016-11-08 20:50:59 +08:00
|
|
|
color: @text-color;
|
2016-06-14 23:09:35 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-23 18:16:52 +08:00
|
|
|
&-active {
|
|
|
|
background-color: @item-active-bg;
|
|
|
|
}
|
|
|
|
|
2015-08-23 15:42:38 +08:00
|
|
|
&-divider {
|
|
|
|
height: 1px;
|
|
|
|
margin: 1px 0;
|
|
|
|
overflow: hidden;
|
2017-09-27 22:32:49 +08:00
|
|
|
background-color: @border-color-split;
|
2015-08-23 15:42:38 +08:00
|
|
|
line-height: 0;
|
2015-07-14 20:16:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-13 17:00:29 +08:00
|
|
|
&&--multiple {
|
|
|
|
.@{select-prefix-cls}-dropdown-menu-item {
|
|
|
|
&:after {
|
|
|
|
color: transparent;
|
|
|
|
.iconfont-size-under-12px(10px);
|
|
|
|
transition: all 0.2s ease;
|
|
|
|
position: absolute;
|
2016-10-21 20:21:40 +08:00
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
2017-10-11 16:56:52 +08:00
|
|
|
right: @control-padding-horizontal;
|
2016-04-13 17:00:29 +08:00
|
|
|
font-weight: bold;
|
|
|
|
text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover:after {
|
|
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
|
2016-06-14 23:09:35 +08:00
|
|
|
&-disabled:after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2016-04-13 17:00:29 +08:00
|
|
|
&-selected:after,
|
|
|
|
&-selected:hover:after {
|
|
|
|
color: @primary-color;
|
2016-06-14 23:09:35 +08:00
|
|
|
display: inline-block;
|
2016-04-13 17:00:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|