Added new buttons for forms to be inline and visual highlight

This commit is contained in:
Beverly Nguyen
2025-10-30 14:14:17 -07:00
parent 949f09bb70
commit 6e20ebb7fa
4 changed files with 152 additions and 50 deletions

View File

@@ -1171,3 +1171,22 @@ nav.nav {
}
}
}
.is-highlighted {
td {
background-color: color('blue-cool-5v');
animation: fadeHighlight 3s ease-out forwards;
}
}
@keyframes fadeHighlight {
0% {
background-color: color('blue-cool-10v');
}
50% {
background-color: color('blue-cool-5v');
}
100% {
background-color: transparent;
}
}