diff --git a/src/main/resources/static/css/style.css b/src/main/resources/static/css/style.css index 0639173..6d50896 100644 --- a/src/main/resources/static/css/style.css +++ b/src/main/resources/static/css/style.css @@ -42,6 +42,18 @@ tr { border-spacing: 0; } +@keyframes changed-row { + from {background-color: #00800055; color: green;} + 80% {background-color: #00800055; color: green;} + to {background-color: inherit; color: inherit;} +} + +tr.changed * { + animation-duration: 2s; + animation-name: changed-row; + animation-timing-function: ease; +} + tr th { background-color: #ccc; } diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 770f519..4dc21e9 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -65,16 +65,26 @@