b24-snippets/bx-custom-include/kanban-color/style.css
2024-09-19 18:52:09 +03:00

46 lines
706 B
CSS

.kanban-color-bg-animate .crm-kanban-item-line {
-webkit-animation: pulse 2s infinite;
-moz-animation: pulse 2s infinite;
-o-animation: pulse 2s infinite;
animation: pulse 2s infinite;
}
@-webkit-keyframes pulse {
0% {
background-color: #fff;
}
100% {
background-color: #f54819;
}
}
@-moz-keyframes pulse {
0% {
background-color: #fff;
}
100% {
background-color: #f54819;
}
}
@-o-keyframes pulse {
0% {
background-color: #fff;
}
100% {
background-color: #f54819;
}
}
@keyframes pulse {
0% {
background-color: #fff;
}
100% {
background-color: #f54819;
}
}