fix: increase z-index of skills dropdown to appear above skill tags#775
Open
Farihashifa15 wants to merge 4 commits into
Open
fix: increase z-index of skills dropdown to appear above skill tags#775Farihashifa15 wants to merge 4 commits into
Farihashifa15 wants to merge 4 commits into
Conversation
|
@Farihashifa15 is attempting to deploy a commit to the komalsony234-1530's projects Team on Vercel. A member of the Team first needs to authorize it. |
Author
|
Hi @komalharshita, I've submitted a fix for this issue: |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
This PR fixes the z-index stacking issue where the skills dropdown suggestions were rendering behind the skill tag badges below the input box. Added
position: absoluteandz-index: 50to the.skills-suggestionsclass instatic/style.css.Related Issue
Closes #773
Type of Change
What Was Changed
static/style.cssposition: absoluteandz-index: 50to.skills-suggestionsclass to fix dropdown stacking orderHow to Test This PR
git checkout fix/skills-dropdown-zindexpip install -r requirements.txtpython app.pyTest Results
27 passed, 0 failed out of 27 tests
Screenshots
Before: Dropdown hidden behind skill tags (see issue #773 for screenshot)
After: Dropdown now appears above skill tags with z-index: 50
Self-Review Checklist
fix/skills-dropdown-zindexprint()orconsole.log()debug statementsNotes for Reviewer
CSS-only fix. Added z-index: 50 and position: absolute to .skills-suggestions to ensure the dropdown renders above the skill tag badges.