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

152 lines
2.9 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 {
2015-12-23 22:59:42 +08:00
font-size: 12px;
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: 160px;
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;
font-size: 14px;
.@{iconfont-css-prefix} {
2016-07-07 18:45:14 +08:00
transition: all .3s;
font-size: 12px;
color: #ccc;
&:hover {
color: #999;
}
}
2015-12-17 16:08:16 +08:00
}
}
2015-11-25 23:17:06 +08:00
&-header {
2015-12-23 22:59:42 +08:00
padding: 7px 16px;
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;
color: #666;
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 {
float: right;
}
2015-11-25 23:17:06 +08:00
}
&-body {
font-size: 12px;
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-16 23:02:49 +08:00
2015-12-21 15:29:02 +08:00
&-not-found {
padding-top: 24px;
2015-12-21 15:29:02 +08:00
color: #ccc;
text-align: center;
height: 100%;
2015-12-16 23:02:49 +08:00
}
2015-11-25 23:17:06 +08:00
ul {
2015-12-16 23:02:49 +08:00
height: 100%;
overflow: auto;
2015-11-25 23:17:06 +08:00
li {
2015-12-23 22:59:42 +08:00
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
2015-11-25 23:17:06 +08:00
padding: 7px 16px;
2015-12-24 14:56:48 +08:00
transition: all 0.3s ease;
2015-11-25 23:17:06 +08:00
&:hover {
cursor: pointer;
2015-12-24 14:56:48 +08:00
background-color: tint(@primary-color, 90%);
2015-11-25 23:17:06 +08:00
}
}
}
}
2015-12-29 15:48:22 +08:00
ul li&-highlight-enter {
animation: transferHighlightIn 1s ease;
transition: none;
}
2015-12-21 15:29:02 +08:00
&-body-with-search {
padding-top: 34px;
}
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 {
2015-12-16 23:02:49 +08:00
float: left;
clear: both;
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-03-30 12:11:55 +08:00
.iconfont-size-under-12px(8px);
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;
}
}