added ability to void invoices.

This commit is contained in:
Bryce Covert
2018-07-25 16:28:24 -07:00
parent 2cb540c1fa
commit 581e5e8798
6 changed files with 69 additions and 5 deletions

View File

@@ -53,6 +53,16 @@
translateY(-100%); }
}
@keyframes flashWarning {
from {
}
to {
background-color: #00d1b2;
}
}
@keyframes flashPrimary {
from {
transform: translateY(100%);
@@ -65,6 +75,9 @@
}
}
tbody tr.live-removed {
animation: flashWarning 1.0s ease both;
}
tbody tr.live-added {
animation: flashPrimary 1.0s ease both;
}