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

167 lines
3.3 KiB
Plaintext
Raw Normal View History

@import "../../style/themes/default";
@import "../../style/mixins/index";
@import "../../checkbox/style/mixin";
@transfer-prefix-cls: ~"@{ant-prefix}-transfer";
.antCheckboxFn(@checkbox-prefix-cls: ~"@{ant-prefix}-transfer-checkbox");
2015-11-25 23:17:06 +08:00
.@{transfer-prefix-cls} {
2015-12-23 22:59:42 +08:00
position: relative;
line-height: @line-height-base;
2015-12-23 22:59:42 +08:00
2015-11-25 23:17:06 +08:00
&-list {
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
2015-12-24 14:56:48 +08:00
border: 1px solid @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;
padding-top: 33px;
&-with-footer {
padding-bottom: 33px;
}
2015-11-25 23:17:06 +08:00
2015-12-17 16:08:16 +08:00
&-search {
&-action {
color: #ccc;
position: absolute;
top: 2px;
right: 2px;
width: 32px;
height: 32px;
line-height: 32px;
text-align: center;
2016-11-08 21:07:01 +08:00
font-size: @font-size-lg;
.@{iconfont-css-prefix} {
2016-07-07 18:45:14 +08:00
transition: all .3s;
2016-11-08 20:57:07 +08:00
font-size: @font-size-base;
2016-07-07 18:45:14 +08:00
color: #ccc;
&:hover {
color: @text-color-secondary;
2016-07-07 18:45:14 +08:00
}
}
2015-12-17 16:08:16 +08:00
}
}
2015-11-25 23:17:06 +08:00
&-header {
2016-11-03 15:33:58 +08:00
padding: 7px 15px;
2015-12-24 14:56:48 +08:00
border-radius: @border-radius-base @border-radius-base 0 0;
2015-11-25 23:17:06 +08:00
background: #fff;
2016-11-08 20:50:59 +08:00
color: @text-color;
2015-12-24 14:56:48 +08:00
border-bottom: 1px solid @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: 15px;
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;
height: 28px;
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 {
padding-top: 34px;
}
&-content {
height: 100%;
overflow: auto;
&-item {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2016-11-03 15:33:58 +08:00
padding: 7px 15px;
min-height: 32px;
transition: all 0.3s ease;
}
&-item:not(&-item-disabled):hover {
cursor: pointer;
background-color: tint(@primary-color, 90%);
}
&-item-disabled {
cursor: not-allowed;
color: @btn-disable-color;
}
&-item-highlight-enter {
animation: transferHighlightIn 1s ease;
transition: none;
}
}
2016-11-24 17:21:49 +08:00
&-body-not-found {
padding-top: 0;
color: #ccc;
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 {
2015-12-24 14:56:48 +08:00
border-top: 1px solid @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} {
2016-10-06 19:10:01 +08:00
.iconfont-size-under-12px(10px);
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: tint(@primary-color, 80%);
}
100% {
background: transparent;
}
}