ant-design/style/components/select.less

324 lines
6.0 KiB
Plaintext
Raw Normal View History

2015-06-15 17:17:23 +08:00
@selectPrefixCls: ant-select;
2015-06-09 21:16:59 +08:00
2015-07-08 22:07:15 +08:00
@import "../mixins/iconfont";
2015-06-11 19:23:35 +08:00
//mixin
2015-07-08 22:07:15 +08:00
.selection__clear() {
2015-06-11 19:23:35 +08:00
cursor: pointer;
float: right;
font-weight: bold;
}
2015-07-20 21:32:31 +08:00
.selected_icon() {
position: relative;
&:after {
.iconfont-size-under-12px(9px);
display: inline-block;
content: '\e613';
font-family: 'anticon';
font-weight: bold;
position: absolute;
top: 6px;
right: 0;
background: tint(@primary-color, 90%);
padding-right: 16px;
color: @primary-color;
}
}
2015-06-11 19:23:35 +08:00
2015-06-09 21:16:59 +08:00
.@{selectPrefixCls} {
box-sizing: border-box;
display: inline-block;
margin: 0;
position: relative;
vertical-align: middle;
color: #666;
2015-06-14 15:52:47 +08:00
font-size: @font-size-base;
2015-06-09 21:16:59 +08:00
ul, li {
margin: 0;
padding: 0;
list-style: none;
}
> ul > li > a {
padding: 0;
background-color: #fff;
}
// arrow
&-arrow {
2015-07-09 17:47:21 +08:00
.iconfont-mixin();
2015-06-09 21:16:59 +08:00
height: 26px;
position: absolute;
top: 1px;
right: 1px;
.iconfont-size-under-12px(10px);
2015-07-09 17:47:21 +08:00
width: 26px;
line-height: 26px;
* {
display: none;
}
2015-06-15 19:29:32 +08:00
&:before {
content: '\e611';
2015-07-15 15:19:04 +08:00
.ie-rotate(1);
.rotate(90deg);
transition: transform 0.2s ease;
2015-06-09 21:16:59 +08:00
}
}
2015-06-11 19:23:35 +08:00
&-selection {
outline: none;
2015-06-09 21:16:59 +08:00
user-select: none;
-webkit-user-select: none;
2015-06-11 19:23:35 +08:00
box-sizing: border-box;
display: block;
2015-06-09 21:16:59 +08:00
background-color: #fff;
2015-06-11 19:23:35 +08:00
border-radius: 6px;
2015-06-09 21:16:59 +08:00
border: 1px solid #d9d9d9;
2015-06-15 11:01:15 +08:00
.transition(all .3s @ease-in-out);
2015-06-11 19:23:35 +08:00
&:hover {
2015-07-09 20:13:48 +08:00
border-color: @primary-color;
2015-06-11 19:23:35 +08:00
}
&:active {
2015-07-09 20:13:48 +08:00
border-color: shade(@primary-color, 5%);
2015-06-11 19:23:35 +08:00
}
}
2015-06-15 19:29:32 +08:00
&-disabled {
color: #ccc;
cursor: not-allowed;
pointer-events: none;
}
&-disabled &-selection {
&:hover, &:active {
border-color: #d9d9d9;
}
}
2015-06-11 19:23:35 +08:00
&-selection--single {
height: 28px;
cursor: pointer;
2015-06-09 21:16:59 +08:00
.@{selectPrefixCls}-selection__rendered {
display: block;
overflow: hidden;
text-overflow: ellipsis;
2015-06-11 19:23:35 +08:00
padding-left: 10px;
padding-right: 20px;
2015-06-16 19:59:07 +08:00
line-height: 26px;
2015-06-09 21:16:59 +08:00
}
.@{selectPrefixCls}-selection__clear {
2015-06-11 19:23:35 +08:00
.selection__clear();
2015-06-09 21:16:59 +08:00
}
}
2015-07-14 20:16:05 +08:00
&-disabled &-selection__choice__remove {
color: #ccc;
cursor: default;
&:hover {
color: #ccc;
}
}
&-search--inline {
float: left;
.@{selectPrefixCls}-search__field {
border: none;
font-size: 100%;
//margin-top: 5px;
background: transparent;
outline: 0;
}
> i {
float: right;
}
}
2015-06-09 21:16:59 +08:00
&-selection--multiple {
2015-06-15 19:29:32 +08:00
min-height: 28px;
2015-06-09 21:16:59 +08:00
cursor: text;
2015-07-15 19:59:54 +08:00
.@{selectPrefixCls}-search--inline {
width: auto;
.@{selectPrefixCls}-search__field {
width: 0.75em;
}
}
2015-06-09 21:16:59 +08:00
.@{selectPrefixCls}-selection__rendered {
2015-06-15 19:29:32 +08:00
//display: inline-block;
2015-06-09 21:16:59 +08:00
overflow: hidden;
text-overflow: ellipsis;
2015-06-19 17:35:32 +08:00
padding-left: 4px;
2015-06-16 14:54:31 +08:00
padding-bottom: 4px;
2015-06-09 21:16:59 +08:00
}
.@{selectPrefixCls}-selection__clear {
2015-06-11 19:23:35 +08:00
.selection__clear();
2015-06-09 21:16:59 +08:00
margin-top: 5px;
margin-right: 10px;
}
2015-06-15 19:29:32 +08:00
> ul > li {
margin-top: 4px;
height: 20px;
line-height: 20px;
}
2015-06-09 21:16:59 +08:00
.@{selectPrefixCls}-selection__choice {
background-color: #f3f3f3;
border-radius: 4px;
cursor: default;
float: left;
2015-06-15 19:29:32 +08:00
padding: 0 8px;
2015-06-09 21:16:59 +08:00
margin-right: 4px;
}
.@{selectPrefixCls}-selection__choice__remove {
2015-07-08 22:07:15 +08:00
.iconfont-mixin();
2015-06-09 21:16:59 +08:00
color: #919191;
cursor: pointer;
display: inline-block;
font-weight: bold;
.iconfont-size-under-12px(8px);
2015-07-09 18:17:15 +08:00
padding: 0 0 0 4px;
position: relative;
top: -1px;
left: 4px;
2015-06-09 21:16:59 +08:00
&:hover {
color: #333;
}
2015-07-08 22:07:15 +08:00
&:before {
content: "\e61e";
}
2015-06-09 21:16:59 +08:00
}
}
2015-07-20 21:32:31 +08:00
.@{selectPrefixCls}-selection--multiple + .@{selectPrefixCls}-dropdown {
.@{selectPrefixCls}-dropdown-menu-item {
padding: 7px 33px 7px 16px;
}
2015-07-20 21:32:31 +08:00
.@{selectPrefixCls}-dropdown-menu-item-selected {
.selected_icon();
}
}
2015-06-09 21:16:59 +08:00
&-dropdown {
display: none;
background-color: white;
border: 1px solid #d9d9d9;
box-shadow: 0 0px 4px #d9d9d9;
border-radius: 4px;
box-sizing: border-box;
z-index: 100;
2015-07-14 20:16:05 +08:00
left: -9999px;
top: -9999px;
2015-06-09 21:16:59 +08:00
position: absolute;
outline: none;
2015-07-14 20:16:05 +08:00
&-menu {
outline: none;
margin-bottom: 0;
padding-left: 0; // Override default ul/ol
list-style: none;
z-index: 9999;
max-height: 250px;
overflow: auto;
> li {
margin: 0;
padding: 0;
}
& > &-item {
position: relative;
display: block;
padding: 7px 16px;
font-weight: normal;
color: #666666;
white-space: nowrap;
cursor: pointer;
&:hover, &-active, &-selected {
background-color: tint(@primary-color, 90%) !important;
}
&-disabled {
color: #ccc;
cursor: not-allowed;
pointer-events: none;
&:hover {
color: #ccc;
background-color: #fff;
cursor: not-allowed;
}
}
&-divider {
height: 1px;
margin: 1px 0;
overflow: hidden;
background-color: #e5e5e5;
line-height: 0;
}
}
}
}
&-dropdown-container-open, &-open {
.@{selectPrefixCls}-dropdown {
display: block;
2015-06-09 21:16:59 +08:00
}
}
&-search--dropdown {
display: block;
padding: 4px;
.@{selectPrefixCls}-search__field {
padding: 4px;
width: 100%;
box-sizing: border-box;
border: 1px solid #d9d9d9;
border-radius: 4px;
outline: none;
}
&.@{selectPrefixCls}-search--hide {
display: none;
}
}
&-open {
2015-07-15 15:19:04 +08:00
.@{selectPrefixCls}-arrow:before {
.ie-rotate(3);
2015-07-09 20:01:49 +08:00
.rotate(270deg);
2015-06-09 21:16:59 +08:00
}
.@{selectPrefixCls}-selection {
2015-07-20 22:56:43 +08:00
.active();
2015-06-09 21:16:59 +08:00
}
}
2015-06-19 17:52:50 +08:00
&-combobox {
.@{selectPrefixCls}-arrow {
display: none;
}
.@{selectPrefixCls}-search--inline {
float: none;
}
.@{selectPrefixCls}-search__field {
padding: 0 10px;
width: 100%;
}
.@{selectPrefixCls}-selection__rendered {
padding: 0;
}
}
2015-06-14 15:52:47 +08:00
}