-
-
Notifications
You must be signed in to change notification settings - Fork 826
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
Added favorite button in Performer grid view #3369
Conversation
Thank your for your contribution! I'd love to merge this but there are a few outstanding comments:
Thanks! Feel free to comment with any questions. |
Would love a show/hide toggle to be added in the settings. I see it adds a unique class so it can be hidden via CSS, but a toggle would be more user-friendly. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The usability of this button on mobile should be improved by removing the hover effects on the bottom. Currently, 2 clicks are required to favorite a performer. 1 click to register the hover effect, and another to actually click the button.
@@ -85,6 +85,14 @@ | |||
width: 3rem; | |||
} | |||
|
|||
.not-favorite { | |||
color: rgba(191, 204, 214, 0.5); | |||
filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.9)); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A 50% opacity shadow should be enough here.
Thanks for your contribution! In the future, it would make tester's lives easier if you don't push changes directly to the |
I'm not sure I understand what this means? |
I essentially had to delete the develop branch I had locally to check out his changes since it was pushed directly to the develop branch on his fork. It's not a huge deal but it was an inconvenience. |
Ah, I see. I put the following in my .gitconfig,
So that I can do |
Sounds like that would save me some trouble. I'll need to try it out. Thanks! |
ill keep in mind to create feature/issue related branches in the future, sorry for the inconvenience ;) |
Fixed up the compile errors and changed the styling to be consistent with the older version. Unfavorited performers now only show the favorite button when the performer card is hovered over, since having all the buttons shown was pretty ugly. |
Resolves part of #705
By clicking the favorite icon the user can toggle whether or not the performer is favorite.