You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

166 lines
3.3 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../checkbox/style/mixin";
@transfer-prefix-cls: ~"@{ant-prefix}-transfer";
9 years ago
.@{transfer-prefix-cls} {
.reset-component;
position: relative;
9 years ago
&-list {
border: @border-width-base @border-style-base @border-color-base;
9 years ago
display: inline-block;
border-radius: @border-radius-base;
vertical-align: middle;
9 years ago
position: relative;
width: 180px;
9 years ago
height: 200px;
padding-top: 33px;
&-with-footer {
padding-bottom: 33px;
}
9 years ago
9 years ago
&-search {
&-action {
color: @disabled-color;
9 years ago
position: absolute;
top: 4px;
right: 4px;
bottom: 4px;
width: 28px;
line-height: 26px;
9 years ago
text-align: center;
font-size: @font-size-lg;
.@{iconfont-css-prefix} {
transition: all .3s;
font-size: @font-size-base;
color: @disabled-color;
&:hover {
color: @text-color-secondary;
}
}
span& {
pointer-events: none;
}
9 years ago
}
}
9 years ago
&-header {
padding: 7px 15px;
border-radius: @border-radius-base @border-radius-base 0 0;
background: @component-background;
8 years ago
color: @text-color;
border-bottom: @border-width-base @border-style-base @border-color-split;
overflow: hidden;
9 years ago
position: absolute;
top: 0;
left: 0;
width: 100%;
9 years ago
&-title {
position: absolute;
right: 15px;
9 years ago
}
9 years ago
}
&-body {
font-size: @font-size-base;
9 years ago
position: relative;
9 years ago
height: 100%;
9 years ago
&-search-wrapper {
position: absolute;
top: 0;
left: 0;
padding: 4px;
width: 100%;
9 years ago
}
}
9 years ago
&-body-with-search {
padding-top: 34px;
}
&-content {
height: 100%;
overflow: auto;
> .LazyLoad {
animation: transferHighlightIn 1s;
}
&-item {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 7px 15px;
min-height: 32px;
transition: all .3s;
}
&-item:not(&-item-disabled):hover {
cursor: pointer;
background-color: @item-hover-bg;
}
&-item-disabled {
cursor: not-allowed;
color: @btn-disable-color;
}
}
&-body-not-found {
padding-top: 0;
color: @disabled-color;
text-align: center;
display: none;
position: absolute;
top: 50%;
width: 100%;
margin-top: -10px;
}
&-content:empty + &-body-not-found {
display: block;
}
9 years ago
&-footer {
border-top: @border-width-base @border-style-base @border-color-split;
9 years ago
border-radius: 0 0 @border-radius-base @border-radius-base;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
9 years ago
}
}
9 years ago
&-operation {
display: inline-block;
overflow: hidden;
margin: 0 8px;
vertical-align: middle;
9 years ago
.@{ant-prefix}-btn {
display: block;
&:first-child {
margin-bottom: 4px;
}
.@{iconfont-css-prefix} {
.iconfont-size-under-12px(10px);
}
9 years ago
}
}
9 years ago
}
@keyframes transferHighlightIn {
0% {
background: @primary-2;
}
100% {
background: transparent;
}
}