-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
1987 Panel Expander Arrow Overlapping on Dropdown #2211
Merged
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
f7b98ef
fix dropdown z-index
abdulsemiu-atanda 9d2d69c
use z-index variable
abdulsemiu-atanda 8eefb3d
Merge branch 'development' into atanda-panel-expander-issue-1987
abdulsemiu-atanda a627eb5
Merge branch 'development' into atanda-panel-expander-issue-1987
abdulsemiu-atanda c68d4af
reduce zindex-select variable value
abdulsemiu-atanda d3c63e0
Merge branch 'atanda-panel-expander-issue-1987' of https://github.com…
abdulsemiu-atanda fe29e15
override `react-select` select menu z-index
abdulsemiu-atanda d02cb1e
remove commented out style
abdulsemiu-atanda 7b1a7a3
Merge branch 'development' into atanda-panel-expander-issue-1987
brent-hoover 35e8ca6
fix improper variable value alignment
abdulsemiu-atanda eb7e530
Merge branch 'atanda-panel-expander-issue-1987' of https://github.com…
abdulsemiu-atanda 35e02e6
Merge branch 'development' into atanda-panel-expander-issue-1987
d669b42
Merge branch 'development' into atanda-panel-expander-issue-1987
abdulsemiu-atanda a558f9a
Merge branch 'development' into atanda-panel-expander-issue-1987
brent-hoover 9d3574e
move import to main.less
abdulsemiu-atanda f0420d0
Merge branch 'development' into atanda-panel-expander-issue-1987
mikemurray bf52676
Merge branch 'development' into atanda-panel-expander-issue-1987
mikemurray 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,3 +25,7 @@ | |
width: 44px; | ||
pointer-events: none; | ||
} | ||
|
||
.Select-menu-outer { | ||
z-index: 9999; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Try a zindex value from the variables. Want to avoid a war of z-indicies. in @zindex-navbar: 1000;
@zindex-dropdown: 1000;
@zindex-popover: 1060;
@zindex-tooltip: 1070;
@zindex-navbar-fixed: 1030;
@zindex-modal-background: 1040;
@zindex-modal: 1050; |
||
} |
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.
I don't believe we ever start class-names with a capital letter
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.
Yeah it shouldn't but this class-name is generated by
react-select
for all the dropdowns. Hence the capital letterThere 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.
Where is another example of this?