Visual feedback on button click

When there are too many tasks and the top of the list is not visible, there is no visual feedback that a task has been successfully added to the queue.

Adding a subtle visual feedback on buttons upon click to reflect that the mouse event was taken into account.
This commit is contained in:
patriceac 2022-11-27 16:26:01 -08:00
parent 347fa0fda1
commit d48951fe00

View File

@ -997,6 +997,9 @@ button:hover {
button:active {
transition-duration: 0.1s;
background-color: hsl(var(--accent-hue), 100%, calc(var(--accent-lightness) + 24%));
position: relative;
top: 1px;
left: 1px;
}
button#save-system-settings-btn {