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.

48 lines
928 B

.@{calendar-prefix-cls}-picker .@{calendar-prefix-cls},
.@{calendar-prefix-cls}-picker-container .@{calendar-prefix-cls} {
position: absolute;
display: none;
left: -9999px;
top: -9999px;
z-index: 9;
}
.@{calendar-prefix-cls}-picker {
position: relative;
display: inline-block;
&-input {
outline: none;
}
&-icon {
position: absolute;
-webkit-user-select: none;
user-select: none;
.transition(all .3s @ease-in-out);
10 years ago
width: 12px;
height: 12px;
line-height: 12px;
right: 8px;
color: #999;
top: 50%;
10 years ago
margin-top: -6px;
&:after {
content: "\e60c";
font-family: "anticon";
10 years ago
font-size: 12px;
color: #999;
10 years ago
display: inline-block;
line-height: 1;
vertical-align: bottom;
}
}
&-open .@{calendar-prefix-cls},
&-container-open .@{calendar-prefix-cls} {
display: block;
}
&-open &-input {
.active();
}
}