dtd
Version:
根据数梦工场视觉规范打造的组件库,感谢react-components和ant design
182 lines (167 loc) • 3.99 kB
text/less
@import "../../style/themes/default";
@import "../../style/mixins/index";
@badge-prefix-cls: ~"@{dt-prefix}-badge";
@number-prefix-cls: ~"@{dt-prefix}-scroll-number";
@badge-height-radius: 1em;
.@{badge-prefix-cls} {
.reset-component;
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-radius;
min-width: calc(@badge-height - 1px);
background: #ff625c;
color: #fff;
line-height: @badge-height;
text-align: center;
font-size: @badge-font-size;
font-weight: @badge-font-weight;
white-space: nowrap;
transform-origin: -10% center;
padding: 0 5px;
a,
a:hover {
color: #fff;
}
}
&-multiple-words {
padding: 0 8px;
}
&-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: #ff625c;
z-index: 10;
box-shadow: 0 0 0 1px #fff;
}
&-status {
line-height: inherit;
vertical-align: baseline;
&-dot {
width: @badge-status-size;
height: @badge-status-size;
display: inline-block;
border-radius: 50%;
vertical-align: middle;
position: relative;
top: -1px;
}
&-success {
background-color: @badge-success-bg;
border: 1px solid @badge-success-border-color;
}
&-success + &-text {
color: @badge-success;
}
&-processing {
background-color: @badge-processing-bg;
border: 1px solid @badge-processing-border-color;
position: relative;
&:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border-radius: 50%;
border: 1px solid @badge-processing-border-color;
content: '';
animation: antStatusProcessing 1.2s infinite ease-in-out;
}
}
&-processing + &-text {
color: @badge-processing;
}
&-default {
background-color: @badge-default-bg;
border: 1px solid @badge-default-border-color;
}
&-default + &-text {
color: @badge-default;
}
&-error {
background-color: @badge-error-bg;
border: 1px solid @badge-error-border-color;
}
&-error + &-text {
color: @badge-error;
}
&-warning {
background-color: @badge-warning-bg;
border: 1px solid @badge-warning-border-color;
}
&-warning + &-text {
color: @badge-warning;
}
&-text {
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 .@{dt-prefix}-scroll-number {
top: auto;
display: block;
position: relative;
transform: none ;
}
}
@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: all .3s @ease-in-out;
height: @badge-height;
> p {
height: @badge-height;
margin: 0;
}
}
}
@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%);
}
}