|
|
|
@import "../../style/themes/default";
|
|
|
|
|
|
|
|
@badge-prefix-cls: ~"@{ant-prefix}-badge";
|
|
|
|
@number-prefix-cls: ~"@{ant-prefix}-scroll-number";
|
|
|
|
|
|
|
|
.@{badge-prefix-cls} {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
line-height: 1;
|
|
|
|
vertical-align: middle;
|
|
|
|
|
|
|
|
&-count {
|
|
|
|
position: absolute;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
top: -@badge-height / 2;
|
|
|
|
height: @badge-height;
|
|
|
|
border-radius: @badge-height / 2;
|
|
|
|
min-width: @badge-height;
|
|
|
|
background: @highlight-color;
|
|
|
|
color: #fff;
|
|
|
|
line-height: @badge-height;
|
|
|
|
text-align: center;
|
|
|
|
padding: 0 6px;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
white-space: nowrap;
|
|
|
|
transform-origin: -10% center;
|
|
|
|
font-family: tahoma;
|
|
|
|
box-shadow: 0 0 0 1px #fff;
|
|
|
|
a,
|
|
|
|
a:hover {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-dot {
|
|
|
|
position: absolute;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
transform-origin: 0 center;
|
|
|
|
top: -@badge-dot-size / 2;
|
|
|
|
height: @badge-dot-size;
|
|
|
|
width: @badge-dot-size;
|
|
|
|
border-radius: 100%;
|
|
|
|
background: @highlight-color;
|
|
|
|
z-index: 10;
|
|
|
|
box-shadow: 0 0 0 1px #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-status {
|
|
|
|
line-height: inherit;
|
|
|
|
vertical-align: baseline;
|
|
|
|
|
|
|
|
&-dot {
|
|
|
|
width: 8px;
|
|
|
|
height: 8px;
|
|
|
|
display: inline-block;
|
|
|
|
border-radius: 50%;
|
|
|
|
}
|
|
|
|
&-success {
|
|
|
|
background-color: @success-color;
|
|
|
|
}
|
|
|
|
&-processing {
|
|
|
|
background-color: @primary-color;
|
|
|
|
position: relative;
|
|
|
|
&:after {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 1px solid @primary-color;
|
|
|
|
content: '';
|
|
|
|
animation: antStatusProcessing 1.2s infinite ease-in-out;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&-default {
|
|
|
|
background-color: @normal-color;
|
|
|
|
}
|
|
|
|
&-error {
|
|
|
|
background-color: @error-color;
|
|
|
|
}
|
|
|
|
&-warning {
|
|
|
|
background-color: @warning-color;
|
|
|
|
}
|
|
|
|
&-text {
|
|
|
|
color: @text-color;
|
|
|
|
font-size: @font-size-base;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&-zoom-appear,
|
|
|
|
&-zoom-enter {
|
|
|
|
animation: antZoomBadgeIn .3s @ease-out-back;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-zoom-leave {
|
|
|
|
animation: antZoomBadgeOut .3s @ease-in-back;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
|
|
|
|
|
|
|
&-not-a-wrapper &-count {
|
|
|
|
top: auto;
|
|
|
|
display: block;
|
|
|
|
position: relative;
|
|
|
|
transform: none!important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes antStatusProcessing {
|
|
|
|
0% {
|
|
|
|
transform: scale(0.8);
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(2.4);
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.@{number-prefix-cls} {
|
|
|
|
overflow: hidden;
|
|
|
|
&-only {
|
|
|
|
display: inline-block;
|
|
|
|
transition: transform .3s @ease-in-out;
|
|
|
|
height: @badge-height;
|
|
|
|
> p {
|
|
|
|
height: @badge-height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// for IE8/9 display
|
|
|
|
&.not-support-css-animation &-only {
|
|
|
|
> p {
|
|
|
|
display: none;
|
|
|
|
&.current {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes antZoomBadgeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0) translateX(-50%);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: scale(1) translateX(-50%);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes antZoomBadgeOut {
|
|
|
|
0% {
|
|
|
|
transform: scale(1) translateX(-50%);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0) translateX(-50%);
|
|
|
|
}
|
|
|
|
}
|