feat: increase namespace dropdown panel height for better UX (#6405) #10162
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.
What this PR does
Increases the dropdown panel height for the namespace selector to 600px using
::ng-deep .mat-select-panel
. This improves usability in environments with many namespaces, allowing more options to be visible without excessive scrolling.Why it's needed
Fixes #6405. The default dropdown height is too restrictive when handling clusters with a large number of namespaces, making selection inconvenient.
Implementation Notes
style.scss
of the namespace selector component.!important
was used because Angular Material styles are deeply scoped and cannot be overridden otherwise.::ng-deep
was necessary to penetrate view encapsulation and apply the rule globally.