﻿/* 在全局 CSS 文件中定义 */
@keyframes highlight {
    from {
        background-color: #2ecc71;
    }

    to {
        background-color: transparent;
    }
}

.row-updated {
    animation: highlight 1s ease-out;
}
