iview/src/styles/components/select-dropdown.less

29 lines
761 B
Text
Raw Normal View History

@select-dropdown-prefix-cls: ~"@{css-prefix}select-dropdown";
2017-08-18 16:49:42 +08:00
@transfer-no-max-height: ~"@{css-prefix}transfer-no-max-height";
.@{select-dropdown-prefix-cls} {
2016-11-01 12:42:57 +08:00
width: inherit;
max-height: 200px;
overflow: auto;
margin: 5px 0;
padding: 5px 0;
background-color: #fff;
box-sizing: border-box;
//border: 1px solid @border-color-split;
border-radius: @btn-border-radius;
//box-shadow: 0 1px 3px rgba(0,0,0,.2);
box-shadow: @shadow-base;
position: absolute;
z-index: @zindex-select;
&-transfer{
z-index: @zindex-transfer;
}
2017-08-18 16:49:42 +08:00
&.@{transfer-no-max-height} {
max-height: none;
}
2017-07-19 18:18:43 +08:00
}
.@{modal-prefix-cls} {
.@{select-dropdown-prefix-cls} {
position: absolute !important;
}
}