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

192 lines
4.1 KiB
Plaintext
Raw Normal View History

@import '../../style/themes/index';
2018-12-07 16:17:45 +08:00
@import '../../style/mixins/index';
@import '../../checkbox/style/mixin';
@import './customize.less';
2018-12-07 16:17:45 +08:00
@transfer-prefix-cls: ~'@{ant-prefix}-transfer';
2015-11-25 23:17:06 +08:00
@transfer-header-vertical-padding: (
@transfer-header-height - 1px - @font-size-base * @line-height-base
) / 2;
.@{transfer-prefix-cls} {
.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;
display: inline-block;
width: 180px;
height: @transfer-list-height;
padding-top: @transfer-header-height;
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 {
2019-11-13 08:02:19 +08:00
padding: 0 24px 0 @control-padding-horizontal-sm;
2015-12-17 16:08:16 +08:00
&-action {
position: absolute;
top: 12px;
right: 12px;
bottom: 12px;
2016-12-04 17:08:29 +08:00
width: 28px;
color: @disabled-color;
line-height: @input-height-base;
2015-12-17 16:08:16 +08:00
text-align: center;
.@{iconfont-css-prefix} {
color: @disabled-color;
transition: all 0.3s;
2016-07-07 18:45:14 +08:00
&:hover {
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%;
// 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;
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;
right: 12px;
2015-12-16 23:02:49 +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%;
font-size: @font-size-base;
2015-12-16 23:02:49 +08:00
&-search-wrapper {
position: absolute;
top: 0;
left: 0;
width: 100%;
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 {
padding-top: @input-height-base + 24px;
2015-12-21 15:29:02 +08:00
}
&-content {
height: 100%;
margin: 0;
padding: 0;
overflow: auto;
list-style: none;
2017-04-15 14:37:32 +08:00
> .LazyLoad {
animation: transferHighlightIn 1s;
}
&-item {
min-height: 32px;
padding: 6px @control-padding-horizontal;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2018-12-07 16:17:45 +08:00
transition: all 0.3s;
> span {
padding-right: 0;
}
&-text {
padding-left: 8px;
}
}
&-item:not(&-item-disabled):hover {
background-color: @item-hover-bg;
cursor: pointer;
}
&-item-disabled {
color: @btn-disable-color;
cursor: not-allowed;
}
}
2016-11-24 17:21:49 +08:00
&-body-not-found {
position: absolute;
top: 50%;
width: 100%;
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%;
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;
overflow: hidden;
2015-12-24 15:52:49 +08:00
vertical-align: middle;
2015-12-16 23:02:49 +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;
}
.@{iconfont-css-prefix} {
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
}
2015-12-29 15:48:22 +08:00
@keyframes transferHighlightIn {
0% {
background: @primary-2;
2015-12-29 15:48:22 +08:00
}
100% {
background: transparent;
}
}