-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[UI] Identify loading status on the save button #291
Comments
Do you mean the batch download? If there is no loading error, the progress bar will fade out when completed: image-picka/src/static/css/progress.css Lines 22 to 25 in d4807ae
If failed to load some image, the progress bar will be red and remain. Maybe we can make it fade into .progress-bar.finished {
opacity: 0;
transition: opacity 1s linear;
}
.progress-bar.finished.error {
opacity: 0.2;
} |
Suppose that the loading takes 5 seconds, the user has to pay attention to the top and go back to the Save button after seeing the progress bar disappear. False start will lead to a failure of incomplete saves. So, a state change in the save button will save effort. |
Can you elaborate? What is the difference between progress bar and numbers on the save button? What makes the button better?
How about adding a confirmation to the save button when some images are still loading?
👍 We can add a tooltip like |
A color/border instead of a number comparison? plus #284.
Good. |
The current progress on the top of the screen, and when loading has been completed there will be no identifier.
A style of the save button in the lower right corner, will help the user to stay view. A color or borders, and even a reminder to confirm (like #288).
The text was updated successfully, but these errors were encountered: