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

171 lines
3.4 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../checkbox/style/mixin";
@transfer-prefix-cls: ~"@{ant-prefix}-transfer";
2015-11-25 23:17:06 +08:00
.@{transfer-prefix-cls} {
.reset-component;
2015-12-23 22:59:42 +08:00
position: relative;
2015-11-25 23:17:06 +08:00
&-list {
border: @border-width-base @border-style-base @border-color-base;
2015-12-16 23:02:49 +08:00
display: inline-block;
2015-12-24 14:56:48 +08:00
border-radius: @border-radius-base;
2015-12-24 15:52:49 +08:00
vertical-align: middle;
2015-12-24 17:44:54 +08:00
position: relative;
width: 180px;
2015-12-24 17:44:54 +08:00
height: 200px;
2017-10-16 19:53:46 +08:00
padding-top: 34px;
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 {
padding: 0 @control-padding-horizontal-sm;
2015-12-17 16:08:16 +08:00
&-action {
color: @disabled-color;
2015-12-17 16:08:16 +08:00
position: absolute;
2016-12-04 17:08:29 +08:00
top: 4px;
right: 4px;
bottom: 4px;
width: 28px;
line-height: @input-height-base;
2015-12-17 16:08:16 +08:00
text-align: center;
.@{iconfont-css-prefix} {
2016-07-07 18:45:14 +08:00
transition: all .3s;
color: @disabled-color;
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 {
padding: 6px @control-padding-horizontal;
2015-12-24 14:56:48 +08:00
border-radius: @border-radius-base @border-radius-base 0 0;
background: @component-background;
2016-11-08 20:50:59 +08:00
color: @text-color;
border-bottom: @border-width-base @border-style-base @border-color-split;
2015-12-23 22:59:42 +08:00
overflow: hidden;
2015-12-24 17:44:54 +08:00
position: absolute;
top: 0;
left: 0;
width: 100%;
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
}
2015-11-25 23:17:06 +08:00
}
&-body {
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
2015-12-16 23:02:49 +08:00
position: relative;
2015-12-24 17:44:54 +08:00
height: 100%;
2015-12-16 23:02:49 +08:00
&-search-wrapper {
position: absolute;
top: 0;
left: 0;
padding: 4px;
width: 100%;
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 {
2017-10-16 19:53:46 +08:00
padding-top: @input-height-base + 8px;
2015-12-21 15:29:02 +08:00
}
&-content {
height: 100%;
overflow: auto;
list-style: none;
padding: 0;
margin: 0;
2017-04-15 14:37:32 +08:00
> .LazyLoad {
animation: transferHighlightIn 1s;
}
&-item {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding: 6px @control-padding-horizontal;
min-height: 32px;
2017-04-15 14:37:32 +08:00
transition: all .3s;
> span {
padding-right: 0;
}
}
&-item:not(&-item-disabled):hover {
cursor: pointer;
background-color: @item-hover-bg;
}
&-item-disabled {
cursor: not-allowed;
color: @btn-disable-color;
}
}
2016-11-24 17:21:49 +08:00
&-body-not-found {
padding-top: 0;
color: @disabled-color;
2016-11-24 17:21:49 +08:00
text-align: center;
display: none;
position: absolute;
top: 50%;
width: 100%;
margin-top: -10px;
}
&-content:empty + &-body-not-found {
display: block;
}
2015-11-25 23:17:06 +08:00
&-footer {
border-top: @border-width-base @border-style-base @border-color-split;
2015-12-24 17:44:54 +08:00
border-radius: 0 0 @border-radius-base @border-radius-base;
position: absolute;
bottom: 0;
left: 0;
width: 100%;
2015-11-25 23:17:06 +08:00
}
}
2015-12-16 23:02:49 +08:00
&-operation {
display: inline-block;
overflow: hidden;
2015-12-23 22:59:42 +08:00
margin: 0 8px;
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;
}
}