You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

176 lines
3.7 KiB

@import "../../style/themes/default";
@import "../../style/mixins/index";
9 years ago
@cascader-prefix-cls: ant-cascader;
.@{cascader-prefix-cls} {
9 years ago
font-size: @font-size-base;
&-input.ant-input {
9 years ago
display: block;
9 years ago
cursor: pointer;
width: 100%;
z-index: 1;
9 years ago
}
9 years ago
&-picker {
position: relative;
display: inline-block;
9 years ago
cursor: pointer;
vertical-align: middle;
font-size: @font-size-base;
background-color: #fff;
border-radius: @border-radius-base;
9 years ago
&-disabled {
cursor: not-allowed;
}
&-label {
position: absolute;
left: 0;
height: 20px;
line-height: 20px;
top: 50%;
margin-top: -10px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
width: 100%;
padding: 0 12px 0 8px;
z-index: 1;
}
9 years ago
&-clear {
opacity: 0;
position: absolute;
right: 8px;
z-index: 2;
9 years ago
background: #fff;
9 years ago
top: 50%;
font-size: 12px;
color: #ccc;
width: 12px;
height: 12px;
margin-top: -6px;
line-height: 12px;
cursor: pointer;
transition: color 0.3s ease, opacity 0.15s ease;
&:hover {
color: #999;
}
}
9 years ago
9 years ago
&:hover &-clear {
opacity: 1;
9 years ago
}
// arrow
&-arrow {
position: absolute;
z-index: 1;
9 years ago
top: 50%;
right: 8px;
width: 12px;
height: 12px;
margin-top: -6px;
line-height: 12px;
color: #999;
9 years ago
.iconfont-size-under-12px(8px);
&:before {
transition: transform 0.2s ease;
}
&&-expand {
.ie-rotate(2);
&:before {
transform: rotate(180deg);
9 years ago
}
}
9 years ago
}
}
9 years ago
&-menus {
font-size: 12px;
background: #fff;
position: absolute;
z-index: @zindex-dropdown;
9 years ago
border: 1px solid @border-color-base;
border-radius: @border-radius-base;
box-shadow: @box-shadow-base;
white-space: nowrap;
&-empty,
9 years ago
&-hidden {
display: none;
}
&.slide-up-enter.slide-up-enter-active&-placement-bottomLeft,
&.slide-up-appear.slide-up-appear-active&-placement-bottomLeft {
animation-name: antSlideUpIn;
}
&.slide-up-enter.slide-up-enter-active&-placement-topLeft,
&.slide-up-appear.slide-up-appear-active&-placement-topLeft {
animation-name: antSlideDownIn;
}
&.slide-up-leave.slide-up-leave-active&-placement-bottomLeft {
animation-name: antSlideUpOut;
}
&.slide-up-leave.slide-up-leave-active&-placement-topLeft {
animation-name: antSlideDownOut;
}
}
&-menu {
display: inline-block;
vertical-align: top;
min-width: 111px;
9 years ago
height: 180px;
list-style: none;
margin: 0;
padding: 0;
border-right: 1px solid @border-color-split;
overflow: auto;
&:first-child {
border-radius: @border-radius-base 0 0 @border-radius-base;
}
9 years ago
&:last-child {
border-right-color: transparent;
margin-right: -1px;
border-radius: 0 @border-radius-base @border-radius-base 0;
}
&:only-child {
border-radius: @border-radius-base;
9 years ago
}
}
&-menu-item {
padding: 7px 26px 7px 16px;
9 years ago
cursor: pointer;
white-space: nowrap;
transition: all 0.3s ease;
&:hover {
background: tint(@primary-color, 90%);
}
&-disabled {
cursor: not-allowed;
color: #ccc;
&:hover {
background: transparent;
}
}
&-active:not(&-disabled) {
&,
9 years ago
&:hover {
background-color: #f7f7f7;
font-weight: bold;
9 years ago
}
}
&-expand {
position: relative;
&:after {
.iconfont-font("\e600");
9 years ago
.iconfont-size-under-12px(8px);
color: #999;
position: absolute;
right: 15px;
}
}
}
}