All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.primefaces.skeleton.skeleton.css Maven / Gradle / Ivy

There is a newer version: 14.0.0
Show newest version
.ui-skeleton {
    position: relative;
    overflow: hidden;
}

.ui-skeleton:after {
    content: "";
    animation: ui-skeleton-animation 1.2s infinite;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.ui-skeleton.ui-skeleton-circle {
    border-radius: 50%;
}

.ui-skeleton-none:after {
    animation: none;
}

@keyframes ui-skeleton-animation {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy