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

580 lines
12 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../input/style/mixin";
2015-12-02 14:59:48 +08:00
@select-prefix-cls: ~"@{ant-prefix}-select";
2015-08-10 15:39:50 +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;
right: @control-padding-horizontal - 1px;
z-index: 1;
background: @component-background;
top: 50%;
font-size: @font-size-sm;
color: @disabled-color;
width: 12px;
height: 12px;
margin-top: -6px;
line-height: 12px;
cursor: pointer;
transition: color 0.3s ease, opacity 0.15s ease;
&:before {
display: block;
.iconfont-font("\e62e");
}
&:hover {
color: @text-color-secondary;
}
}
2015-08-20 16:55:42 +08:00
.@{select-prefix-cls} {
.reset-component;
2015-06-09 21:16:59 +08:00
display: inline-block;
position: relative;
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();
2015-06-09 21:16:59 +08:00
position: absolute;
top: 50%;
right: @control-padding-horizontal - 1px;
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
* {
display: none;
}
2015-06-15 19:29:32 +08:00
&:before {
content: '\e61d';
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;
background-color: @component-background;
2015-11-05 21:25:43 +08:00
border-radius: @border-radius-base;
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-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;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 100%;
padding-right: 20px;
}
2015-06-11 19:23:35 +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 {
2016-01-30 15:13:25 +08:00
border-color: @border-color-base;
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 {
background: @background-color-base;
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 {
height: @input-height-base;
2016-04-27 17:57:35 +08:00
position: relative;
2015-06-11 19:23:35 +08:00
cursor: pointer;
}
2015-06-09 21:16:59 +08:00
&-selection__rendered {
display: block;
margin-left: @control-padding-horizontal - 1px;
margin-right: @control-padding-horizontal - 1px;
position: relative;
line-height: @input-height-base - 2px;
// https://github.com/ant-design/ant-design/issues/3481#issuecomment-254721026
&:after {
content: '.';
visibility: hidden;
pointer-events: none;
display: inline-block;
2017-12-22 18:30:11 +08:00
width: 0;
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 {
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 {
line-height: @input-height-sm - 2px;
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 {
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 {
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 {
display: inline-block;
position: relative;
}
&-selection__placeholder,
&-search__field__placeholder { // for TreeSelect compatibility
position: absolute;
2016-02-25 11:49:40 +08:00
top: 50%;
left: 0;
right: 9px;
color: @input-placeholder-color;
2016-02-25 11:49:40 +08:00
line-height: 20px;
height: 20px;
max-width: 100%;
2016-02-25 11:49:40 +08:00
margin-top: -10px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
2017-05-24 16:48:45 +08:00
text-align: left;
}
&-search__field__placeholder {
left: @control-padding-horizontal;
}
&-search__field__mirror {
position: absolute;
top: -9999px;
left: -9999px;
white-space: pre;
pointer-events: none;
}
2015-07-14 20:16:05 +08:00
&-search--inline {
position: absolute;
height: 100%;
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%;
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%;
height: 100%;
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 {
min-height: @input-height-base;
2015-06-09 21:16:59 +08:00
cursor: text;
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 {
float: left;
position: static;
2015-07-15 19:59:54 +08:00
width: auto;
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 {
margin-left: 5px;
margin-bottom: -3px;
height: auto;
}
.@{select-prefix-cls}-selection__placeholder {
margin-left: 6px;
}
> ul > li,
.@{select-prefix-cls}-selection__rendered > ul > li { // for tree-select
margin-top: 3px;
height: @input-height-base - 8px;
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 {
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;
float: left;
margin-right: 4px;
max-width: 99%;
position: relative;
2015-12-02 14:59:48 +08:00
overflow: hidden;
transition: padding .3s @ease-in-out;
2015-12-16 22:34:03 +08:00
padding: 0 20px 0 10px;
&__disabled {
padding: 0 10px;
}
}
.@{select-prefix-cls}-selection__choice__content {
display: inline-block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 100%;
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();
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;
transition: all .3s;
font-size: @font-size-sm;
.iconfont-size-under-12px(10px);
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
}
2015-07-08 22:07:15 +08:00
&:before {
content: "\e633";
2015-07-08 22:07:15 +08:00
}
2015-06-09 21:16:59 +08:00
}
.@{select-prefix-cls}-selection__clear {
top: @input-height-base / 2;
}
}
&-allow-clear &-selection--single &-selection-selected-value {
padding-right: 16px;
}
&-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-02-07 20:29:40 +08:00
.@{select-prefix-cls}-arrow:before {
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 {
height: 100%;
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
}
}
&-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 {
.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;
}
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 {
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
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;
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;
transition: background 0.3s ease;
2015-08-01 17:51:55 +08:00
&:hover {
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
}
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;
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
&-selected {
&,
&:hover {
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;
}
}
&-active {
background-color: @item-active-bg;
}
2015-08-23 15:42:38 +08:00
&-divider {
height: 1px;
margin: 1px 0;
overflow: hidden;
background-color: @border-color-split;
2015-08-23 15:42:38 +08:00
line-height: 0;
2015-07-14 20:16:05 +08:00
}
}
}
&&--multiple {
.@{select-prefix-cls}-dropdown-menu-item {
&:after {
.iconfont-font("\e632");
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;
font-weight: bold;
text-shadow: 0 0.1px 0, 0.1px 0 0, 0 -0.1px 0, -0.1px 0;
}
&:hover:after {
color: #ddd;
}
&-disabled:after {
display: none;
}
&-selected:after,
&-selected:hover:after {
color: @primary-color;
display: inline-block;
}
}
}
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
}