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.
100 lines
2.1 KiB
100 lines
2.1 KiB
.@{badge-prefix-cls} {
|
|
&-rtl {
|
|
direction: rtl;
|
|
}
|
|
|
|
&:not(&-not-a-wrapper) &-count,
|
|
&:not(&-not-a-wrapper) &-dot,
|
|
&:not(&-not-a-wrapper) .@{number-prefix-cls}-custom-component {
|
|
.@{badge-prefix-cls}-rtl& {
|
|
right: auto;
|
|
left: 0;
|
|
direction: ltr;
|
|
transform: translate(-50%, -50%);
|
|
transform-origin: 0% 0%;
|
|
}
|
|
}
|
|
|
|
&-rtl&:not(&-not-a-wrapper) .@{number-prefix-cls}-custom-component {
|
|
right: auto;
|
|
left: 0;
|
|
transform: translate(-50%, -50%);
|
|
transform-origin: 0% 0%;
|
|
}
|
|
|
|
&-status {
|
|
&-text {
|
|
.@{badge-prefix-cls}-rtl & {
|
|
margin-right: 8px;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:not(&-not-a-wrapper).@{badge-prefix-cls}-rtl {
|
|
.@{badge-prefix-cls}-zoom-appear,
|
|
.@{badge-prefix-cls}-zoom-enter {
|
|
animation-name: antZoomBadgeInRtl;
|
|
}
|
|
|
|
.@{badge-prefix-cls}-zoom-leave {
|
|
animation-name: antZoomBadgeOutRtl;
|
|
}
|
|
}
|
|
}
|
|
|
|
.@{ribbon-prefix-cls}-rtl {
|
|
direction: rtl;
|
|
&.@{ribbon-prefix-cls}-placement-end {
|
|
right: unset;
|
|
left: -8px;
|
|
border-bottom-right-radius: @border-radius-sm;
|
|
border-bottom-left-radius: 0;
|
|
.@{ribbon-prefix-cls}-corner {
|
|
right: unset;
|
|
left: 0;
|
|
border-color: currentcolor currentcolor transparent transparent;
|
|
|
|
&::after {
|
|
border-color: currentcolor currentcolor transparent transparent;
|
|
}
|
|
}
|
|
}
|
|
&.@{ribbon-prefix-cls}-placement-start {
|
|
right: -8px;
|
|
left: unset;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: @border-radius-sm;
|
|
.@{ribbon-prefix-cls}-corner {
|
|
right: 0;
|
|
left: unset;
|
|
border-color: currentcolor transparent transparent currentcolor;
|
|
|
|
&::after {
|
|
border-color: currentcolor transparent transparent currentcolor;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@keyframes antZoomBadgeInRtl {
|
|
0% {
|
|
transform: scale(0) translate(-50%, -50%);
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
transform: scale(1) translate(-50%, -50%);
|
|
}
|
|
}
|
|
|
|
@keyframes antZoomBadgeOutRtl {
|
|
0% {
|
|
transform: scale(1) translate(-50%, -50%);
|
|
}
|
|
|
|
100% {
|
|
transform: scale(0) translate(-50%, -50%);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|