2019-04-16 21:59:25 +08:00
|
|
|
@import '../../style/themes/index';
|
2018-12-07 16:17:45 +08:00
|
|
|
@import '../../style/mixins/index';
|
|
|
|
@import '../../checkbox/style/mixin';
|
2020-03-23 10:57:37 +08:00
|
|
|
@import './customize';
|
2016-04-27 20:44:36 +08:00
|
|
|
|
2018-12-07 16:17:45 +08:00
|
|
|
@transfer-prefix-cls: ~'@{ant-prefix}-transfer';
|
2015-11-25 23:17:06 +08:00
|
|
|
|
2019-05-07 17:10:42 +08:00
|
|
|
@transfer-header-vertical-padding: (
|
|
|
|
@transfer-header-height - 1px - @font-size-base * @line-height-base
|
|
|
|
) / 2;
|
|
|
|
|
2016-04-27 20:44:36 +08:00
|
|
|
.@{transfer-prefix-cls} {
|
2017-09-22 18:33:29 +08:00
|
|
|
.reset-component;
|
2019-04-15 10:52:00 +08:00
|
|
|
|
2015-12-23 22:59:42 +08:00
|
|
|
position: relative;
|
|
|
|
|
2018-09-15 15:18:59 +08:00
|
|
|
&-disabled {
|
|
|
|
.@{transfer-prefix-cls}-list {
|
|
|
|
background: @transfer-disabled-bg;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:17:06 +08:00
|
|
|
&-list {
|
2015-12-24 17:44:54 +08:00
|
|
|
position: relative;
|
2019-02-15 10:48:07 +08:00
|
|
|
display: inline-block;
|
2016-10-18 09:45:37 +08:00
|
|
|
width: 180px;
|
2019-05-07 17:10:42 +08:00
|
|
|
height: @transfer-list-height;
|
|
|
|
padding-top: @transfer-header-height;
|
2019-02-15 10:48:07 +08:00
|
|
|
vertical-align: middle;
|
|
|
|
border: @border-width-base @border-style-base @border-color-base;
|
|
|
|
border-radius: @border-radius-base;
|
2015-12-24 17:44:54 +08:00
|
|
|
|
|
|
|
&-with-footer {
|
2017-10-16 19:53:46 +08:00
|
|
|
padding-bottom: 34px;
|
2015-12-24 17:44:54 +08:00
|
|
|
}
|
2015-11-25 23:17:06 +08:00
|
|
|
|
2015-12-17 16:08:16 +08:00
|
|
|
&-search {
|
2020-02-05 19:11:41 +08:00
|
|
|
padding-right: 24px;
|
|
|
|
padding-left: @control-padding-horizontal-sm;
|
2015-12-17 16:08:16 +08:00
|
|
|
&-action {
|
|
|
|
position: absolute;
|
2019-05-07 17:10:42 +08:00
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
bottom: 12px;
|
2016-12-04 17:08:29 +08:00
|
|
|
width: 28px;
|
2019-02-15 10:48:07 +08:00
|
|
|
color: @disabled-color;
|
2017-09-27 22:32:49 +08:00
|
|
|
line-height: @input-height-base;
|
2015-12-17 16:08:16 +08:00
|
|
|
text-align: center;
|
2020-01-02 19:10:16 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
2017-01-01 22:20:06 +08:00
|
|
|
color: @disabled-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
transition: all 0.3s;
|
2016-07-07 18:45:14 +08:00
|
|
|
&:hover {
|
2016-11-08 20:45:56 +08:00
|
|
|
color: @text-color-secondary;
|
2016-07-07 18:45:14 +08:00
|
|
|
}
|
|
|
|
}
|
2016-12-04 17:08:29 +08:00
|
|
|
span& {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2015-12-17 16:08:16 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-25 23:17:06 +08:00
|
|
|
&-header {
|
2015-12-24 17:44:54 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2019-05-07 17:10:42 +08:00
|
|
|
// border-top is on the transfer dom. We should minus 1px for this
|
|
|
|
padding: (@transfer-header-vertical-padding - 1px) @control-padding-horizontal
|
|
|
|
@transfer-header-vertical-padding;
|
2019-02-15 10:48:07 +08:00
|
|
|
overflow: hidden;
|
|
|
|
color: @text-color;
|
|
|
|
background: @component-background;
|
|
|
|
border-bottom: @border-width-base @border-style-base @border-color-split;
|
|
|
|
border-radius: @border-radius-base @border-radius-base 0 0;
|
2015-12-16 23:02:49 +08:00
|
|
|
|
|
|
|
&-title {
|
2016-11-03 15:33:58 +08:00
|
|
|
position: absolute;
|
2017-09-27 22:32:49 +08:00
|
|
|
right: 12px;
|
2015-12-16 23:02:49 +08:00
|
|
|
}
|
2019-07-20 22:20:02 +08:00
|
|
|
|
|
|
|
.@{ant-prefix}-checkbox-wrapper + span {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-body {
|
2015-12-16 23:02:49 +08:00
|
|
|
position: relative;
|
2015-12-24 17:44:54 +08:00
|
|
|
height: 100%;
|
2019-02-15 10:48:07 +08:00
|
|
|
font-size: @font-size-base;
|
2015-12-16 23:02:49 +08:00
|
|
|
|
|
|
|
&-search-wrapper {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2019-05-07 17:10:42 +08:00
|
|
|
padding: 12px;
|
2015-12-21 15:29:02 +08:00
|
|
|
}
|
2015-12-29 15:48:22 +08:00
|
|
|
}
|
|
|
|
|
2015-12-21 15:29:02 +08:00
|
|
|
&-body-with-search {
|
2019-05-07 17:10:42 +08:00
|
|
|
padding-top: @input-height-base + 24px;
|
2015-12-21 15:29:02 +08:00
|
|
|
}
|
|
|
|
|
2016-09-19 17:52:20 +08:00
|
|
|
&-content {
|
|
|
|
height: 100%;
|
2019-02-15 10:48:07 +08:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2016-09-19 17:52:20 +08:00
|
|
|
overflow: auto;
|
2017-09-27 22:32:49 +08:00
|
|
|
list-style: none;
|
2016-09-19 17:52:20 +08:00
|
|
|
&-item {
|
2019-02-15 10:48:07 +08:00
|
|
|
min-height: 32px;
|
|
|
|
padding: 6px @control-padding-horizontal;
|
2016-09-19 17:52:20 +08:00
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
2018-12-07 16:17:45 +08:00
|
|
|
transition: all 0.3s;
|
2017-09-27 22:32:49 +08:00
|
|
|
> span {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
2019-07-20 22:20:02 +08:00
|
|
|
&-text {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
2016-09-19 17:52:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-item:not(&-item-disabled):hover {
|
2019-12-04 20:45:12 +08:00
|
|
|
background-color: @transfer-item-hover-bg;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: pointer;
|
2016-09-19 17:52:20 +08:00
|
|
|
}
|
|
|
|
|
2019-11-19 11:45:32 +08:00
|
|
|
&-item-checked {
|
|
|
|
background-color: @item-active-bg;
|
|
|
|
}
|
|
|
|
|
2016-09-19 17:52:20 +08:00
|
|
|
&-item-disabled {
|
|
|
|
color: @btn-disable-color;
|
2019-02-15 10:48:07 +08:00
|
|
|
cursor: not-allowed;
|
2016-09-19 17:52:20 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 17:21:49 +08:00
|
|
|
&-body-not-found {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
width: 100%;
|
2019-02-15 10:48:07 +08:00
|
|
|
padding-top: 0;
|
|
|
|
color: @disabled-color;
|
|
|
|
text-align: center;
|
2018-12-26 16:01:00 +08:00
|
|
|
transform: translateY(-50%);
|
2019-01-17 11:46:07 +08:00
|
|
|
|
|
|
|
// with filter should offset the search box height
|
|
|
|
.@{transfer-prefix-cls}-list-body-with-search & {
|
|
|
|
margin-top: @input-height-base / 2;
|
|
|
|
}
|
2016-11-24 17:21:49 +08:00
|
|
|
}
|
|
|
|
|
2015-11-25 23:17:06 +08:00
|
|
|
&-footer {
|
2015-12-24 17:44:54 +08:00
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
2019-02-15 10:48:07 +08:00
|
|
|
border-top: @border-width-base @border-style-base @border-color-split;
|
|
|
|
border-radius: 0 0 @border-radius-base @border-radius-base;
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
|
|
|
}
|
2015-12-16 23:02:49 +08:00
|
|
|
|
|
|
|
&-operation {
|
|
|
|
display: inline-block;
|
2015-12-23 22:59:42 +08:00
|
|
|
margin: 0 8px;
|
2019-02-15 10:48:07 +08:00
|
|
|
overflow: hidden;
|
2015-12-24 15:52:49 +08:00
|
|
|
vertical-align: middle;
|
2015-12-16 23:02:49 +08:00
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{ant-prefix}-btn {
|
2016-10-06 19:10:01 +08:00
|
|
|
display: block;
|
2015-12-23 22:59:42 +08:00
|
|
|
|
2015-12-24 15:52:49 +08:00
|
|
|
&:first-child {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
2016-09-14 16:18:33 +08:00
|
|
|
.@{iconfont-css-prefix} {
|
2017-11-06 21:28:51 +08:00
|
|
|
font-size: 12px;
|
2015-12-23 22:59:42 +08:00
|
|
|
}
|
2015-12-16 23:02:49 +08:00
|
|
|
}
|
|
|
|
}
|
2015-11-25 23:17:06 +08:00
|
|
|
}
|
2020-03-19 12:13:24 +08:00
|
|
|
|
|
|
|
@import './rtl';
|