[ADD] BASE: General animated loading div skelton keyframe

This commit is contained in:
Horilla
2024-05-04 00:10:53 +05:30
parent 20b0c0d513
commit 7d96eade1a

View File

@@ -467,4 +467,36 @@ form label {
.oh-card-dashboard:hover .chart_close_button {
display: block;
}
.animated-background {
animation-duration: 2s;
animation-fill-mode: forwards;
animation-iteration-count: infinite;
animation-name: placeHolderShimmer;
animation-timing-function: linear;
background-color: #f6f7f8;
background: linear-gradient(to right, #eeeeee9c -58%, #e4e4e496 18%, #eeeeee61 33%);
background-size: 800px 64px;
height: 300px;
position: relative;
}
@keyframes placeHolderShimmer {
0% {
background-position: -800px 0
}
100% {
background-position: 800px 0
}
}
.d-inline{
display: inline !important;
}
.d-none{
display: none !important;
}