Is it possible to make vaadin table cell blinking? I tried to create style:
@-webkit-keyframes blinking {
from { background-color: red; }
to { background-color: inherit; }
}
@-moz-keyframes blinking {
from { background-color: red; }
to { background-color: inherit; }
}
@-o-keyframes blinking {
from { background-color: red; }
to { background-color: inherit; }
}
@keyframes blinking {
from { background-color: red; }
to { background-color: inherit; }
}
.v-table-cell-content-blinking {
-webkit-animation: blinking 1s infinite; /* Safari 4+ */
-moz-animation: blinking 1s infinite; /* Fx 5+ */
-o-animation: blinking 1s infinite; /* Opera 12+ */
animation: blinking 1s infinite; /* IE 10+ */
}
but it has no effect.