ant-design/style/components/transfer.less

106 lines
2.0 KiB
Plaintext
Raw Normal View History

2015-11-25 23:17:06 +08:00
@transfer-prefix-cls: ~"@{css-prefix}transfer";
2015-12-23 22:59:42 +08:00
.antCheckboxFn(@checkbox-prefix-cls: ant-transfer-checkbox);
2015-11-25 23:17:06 +08:00
.@{transfer-prefix-cls} {
2015-12-23 22:59:42 +08:00
position: relative;
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-16 23:02:49 +08:00
width: 160px;
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;
}
}
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-16 23:02:49 +08:00
&-title {
float: right;
}
2015-11-25 23:17:06 +08:00
}
&-body {
font-size: 12px;
line-height: 1.5;
2015-12-16 23:02:49 +08:00
position: relative;
height: 150px;
&-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 {
margin-top: 24px;
color: #ccc;
text-align: center;
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-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-11-25 23:17:06 +08:00
border-radius: 0 0 5px 5px;
}
}
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-16 23:02:49 +08:00
vertical-align: top;
2015-12-23 22:59:42 +08:00
.ant-btn {
2015-12-16 23:02:49 +08:00
float: left;
clear: both;
2015-12-23 22:59:42 +08:00
padding: 1px 5px;
i {
font-size: 10px;
}
2015-12-16 23:02:49 +08:00
}
}
2015-11-25 23:17:06 +08:00
}