Update workspace-card css to not specify z-index #37
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.
Problem
Closes #36.
tooltip-bubble
modals are displaying incorrectly with sibling workspace cards.Solution
Updates the
workspace-card
css class to not specifyz-index
, allowing thetooltip-bubble
class to correctly display on top of sibling workspace cards. Based on current css usage, this appears to be a simpler solution than adjusting thez-index
property of thetooltip-bubble
class to be higher than theworkspace-card
class:Caveats/Notes
I have little context on this application and its conventions, and I may be missing key context on why
workspace-card
has thez-index
property defined that may make this solution insufficient. I am happy to iterate on this proposal if this solution is not possible.