Refactor #6691 - For Skeleton

pull/6711/head
tugcekucukoglu 2024-11-01 13:59:50 +03:00
parent bb69f2f40b
commit ce983cda14
1 changed files with 14 additions and 1 deletions

View File

@ -20,6 +20,10 @@ const theme = ({ dt }) => `
background: linear-gradient(90deg, rgba(255, 255, 255, 0), ${dt('skeleton.animation.background')}, rgba(255, 255, 255, 0));
}
[dir='rtl'] .p-skeleton::after {
animation-name: p-skeleton-animation-rtl;
}
.p-skeleton-circle {
border-radius: 50%;
}
@ -36,6 +40,15 @@ const theme = ({ dt }) => `
transform: translateX(100%);
}
}
@keyframes p-skeleton-animation-rtl {
from {
transform: translateX(100%);
}
to {
transform: translateX(-100%);
}
}
`;
const inlineStyles = {