ygd
Version:
An enterprise-class UI design language and React-based implementation
194 lines (193 loc) • 4.11 kB
CSS
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.yg-badge {
box-sizing: content-box;
margin: 0;
padding: 0;
color: #333;
font-size: 12px;
list-style: none;
position: relative;
display: inline-block;
color: unset;
line-height: 1;
}
.yg-badge-count {
z-index: 10;
min-width: 20px;
height: 20px;
padding: 0 6px;
color: #fff;
font-weight: normal;
font-size: 12px;
line-height: 20px;
white-space: nowrap;
text-align: center;
background: #e2062c;
border-radius: 10px;
box-shadow: 0 0 0 1px #fff;
}
.yg-badge-count a,
.yg-badge-count a:hover {
color: #fff;
}
.yg-badge-multiple-words {
padding: 0 8px;
}
.yg-badge-dot {
z-index: 10;
width: 6px;
height: 6px;
background: #e2062c;
border-radius: 100%;
box-shadow: 0 0 0 1px #fff;
}
.yg-badge-count,
.yg-badge-dot,
.yg-badge .yg-scroll-number-custom-component {
position: absolute;
top: 0;
right: 0;
transform: translate(50%, -50%);
transform-origin: 100% 0%;
}
.yg-badge-status {
line-height: inherit;
vertical-align: baseline;
}
.yg-badge-status-dot {
position: relative;
top: -1px;
display: inline-block;
width: 6px;
height: 6px;
vertical-align: middle;
border-radius: 50%;
}
.yg-badge-status-success {
background-color: #228b22;
}
.yg-badge-status-processing {
position: relative;
background-color: #00a1ff;
}
.yg-badge-status-processing::after {
position: absolute;
top: -1px;
left: -1px;
width: 100%;
height: 100%;
border: 1px solid #00a1ff;
border-radius: 50%;
-webkit-animation: antStatusProcessing 1.2s infinite ease-in-out;
animation: antStatusProcessing 1.2s infinite ease-in-out;
content: '';
}
.yg-badge-status-default {
background-color: #333;
}
.yg-badge-status-error {
background-color: #e2062c;
}
.yg-badge-status-warning {
background-color: #ffa812;
}
.yg-badge-status-text {
margin-left: 8px;
color: #333;
font-size: 12px;
}
.yg-badge-zoom-appear,
.yg-badge-zoom-enter {
-webkit-animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
animation: antZoomBadgeIn 0.3s cubic-bezier(0.12, 0.4, 0.29, 1.46);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.yg-badge-zoom-leave {
-webkit-animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
animation: antZoomBadgeOut 0.3s cubic-bezier(0.71, -0.46, 0.88, 0.6);
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.yg-badge-not-a-wrapper:not(.yg-badge-status) {
vertical-align: middle;
}
.yg-badge-not-a-wrapper .yg-scroll-number {
position: relative;
top: auto;
display: block;
}
.yg-badge-not-a-wrapper .yg-badge-count {
transform: none;
}
@-webkit-keyframes antStatusProcessing {
0% {
transform: scale(0.8);
opacity: 0.5;
}
100% {
transform: scale(2.4);
opacity: 0;
}
}
@keyframes antStatusProcessing {
0% {
transform: scale(0.8);
opacity: 0.5;
}
100% {
transform: scale(2.4);
opacity: 0;
}
}
.yg-scroll-number {
overflow: hidden;
}
.yg-scroll-number-only {
display: inline-block;
height: 20px;
transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.yg-scroll-number-only > p {
height: 20px;
margin: 0;
}
@-webkit-keyframes antZoomBadgeIn {
0% {
transform: scale(0) translate(50%, -50%);
opacity: 0;
}
100% {
transform: scale(1) translate(50%, -50%);
}
}
@keyframes antZoomBadgeIn {
0% {
transform: scale(0) translate(50%, -50%);
opacity: 0;
}
100% {
transform: scale(1) translate(50%, -50%);
}
}
@-webkit-keyframes antZoomBadgeOut {
0% {
transform: scale(1) translate(50%, -50%);
}
100% {
transform: scale(0) translate(50%, -50%);
opacity: 0;
}
}
@keyframes antZoomBadgeOut {
0% {
transform: scale(1) translate(50%, -50%);
}
100% {
transform: scale(0) translate(50%, -50%);
opacity: 0;
}
}