-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Fix clear button hover effect #3278
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
Closed
ujjwaldubey1
wants to merge
6
commits into
processing:develop
from
ujjwaldubey1:fix-clear-button-hover-effect
Closed
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
92dd160
Just changed the cdn in code and it sarted working
ujjwaldubey1 85b834e
Fix Clear button hover effect by giving the backgroundColor
ujjwaldubey1 e9a7a8c
Merge branch 'develop' into fix-clear-button-hover-effect
ujjwaldubey1 f91bcf4
removed the scaling of the button background
ujjwaldubey1 fb34be6
Merge branch 'fix-clear-button-hover-effect' of https://github.com/uj…
ujjwaldubey1 4958117
Merge branch 'develop' into fix-clear-button-hover-effect
raclim File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Thanks for the update on this! I'm reviewing the code more closely and noticed a few areas that would need more adjustments.
First, I see that you removed the
&:hover
on line 91, presumably to address the hover styles instead within.light .preview-console__clear:hover
on lines 105 - 108. However, the&:hover
was already handling the hover styling effectively, so the additional lines on 105-108 don't seem necessary. Additionally, those lines only target the.light
theme, which creates a gap for the other themes,dark
andcontrast
.It seems like these lines were adapted from the attached issue, but that code was intended as a mockup rather than a fully implemented solution. To ensure consistency across all themes, I'd suggest continuing to manage the hover effect styling within
&:hover
, and to use thethemifyVariables
to assign color values rather than hardcoding hex codes.