mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-23 09:54:16 +08:00
759b0bb821
* seperate reset styles
* not reset ul/ol/p/heading
* revert reset.less idea
* move label style into ant-form-item, #5851
* revert reset.less idea
* update base.less
* Better typography from bootstrap@4
use reboot replace normalize
ref:
b4d84b9cdf/scss/_reboot.scss
close #6162
90 lines
2.1 KiB
Plaintext
90 lines
2.1 KiB
Plaintext
.@{calendar-prefix-cls}-picker-container {
|
|
.reset-component;
|
|
position: absolute;
|
|
z-index: @zindex-picker;
|
|
|
|
&.slide-up-enter.slide-up-enter-active&-placement-topLeft,
|
|
&.slide-up-enter.slide-up-enter-active&-placement-topRight,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-topLeft,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-topRight {
|
|
animation-name: antSlideDownIn;
|
|
}
|
|
|
|
&.slide-up-enter.slide-up-enter-active&-placement-bottomLeft,
|
|
&.slide-up-enter.slide-up-enter-active&-placement-bottomRight,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-bottomLeft,
|
|
&.slide-up-appear.slide-up-appear-active&-placement-bottomRight {
|
|
animation-name: antSlideUpIn;
|
|
}
|
|
|
|
&.slide-up-leave.slide-up-leave-active&-placement-topLeft,
|
|
&.slide-up-leave.slide-up-leave-active&-placement-topRight {
|
|
animation-name: antSlideDownOut;
|
|
}
|
|
|
|
&.slide-up-leave.slide-up-leave-active&-placement-bottomLeft,
|
|
&.slide-up-leave.slide-up-leave-active&-placement-bottomRight {
|
|
animation-name: antSlideUpOut;
|
|
}
|
|
}
|
|
|
|
.@{calendar-prefix-cls}-picker {
|
|
.reset-component;
|
|
position: relative;
|
|
display: inline-block;
|
|
outline: none;
|
|
transition: opacity 0.3s;
|
|
|
|
&-input {
|
|
outline: none;
|
|
display: block;
|
|
}
|
|
|
|
&:hover &-input:not(.@{ant-prefix}-input-disabled) {
|
|
border-color: @primary-color;
|
|
}
|
|
|
|
&-clear,
|
|
&-icon {
|
|
position: absolute;
|
|
width: 14px;
|
|
height: 14px;
|
|
right: 8px;
|
|
top: 50%;
|
|
margin-top: -7px;
|
|
line-height: 14px;
|
|
font-size: @font-size-base;
|
|
transition: all .3s;
|
|
user-select: none;
|
|
}
|
|
|
|
&-clear {
|
|
opacity: 0;
|
|
z-index: 1;
|
|
color: @disabled-color;
|
|
background: @input-bg;
|
|
pointer-events: none;
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: @text-color-secondary;
|
|
}
|
|
}
|
|
|
|
&:hover &-clear {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
}
|
|
|
|
&-icon {
|
|
color: @text-color-secondary;
|
|
&:after {
|
|
content: "\e6bb";
|
|
font-family: "anticon";
|
|
font-size: @font-size-base;
|
|
color: @text-color-secondary;
|
|
display: inline-block;
|
|
line-height: 1;
|
|
}
|
|
}
|
|
}
|