src.app.shared.components.execution-badge.execution-badge.component.scss Maven / Gradle / Ivy
@keyframes running-animation {
0% {background-color: Chartreuse ;}
75% {background-color: Cyan;}
100% {background-color: Chartreuse ;}
}
.badge-running {
font-style: italic;
animation-duration: 1s;
animation-name: running-animation;
animation-iteration-count: infinite;
}
.badge-stopped {
font-style: italic;
background-color: grey;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy