Fix parameters definitions panel content clipping on AddCase page#370
Fix parameters definitions panel content clipping on AddCase page#370Vishal27alpha wants to merge 2 commits intoEAPD-DRB:mainfrom
Conversation
There was a problem hiding this comment.
Pull request overview
This PR addresses UI content clipping in the “Parameters definitions” dropdown/panel on the Model configuration (AddCase) page by adjusting the CSS for the extra-wide dropdown container.
Changes:
- Updated
.dropdown-menu-extra-widesizing rules to be responsive to viewport width. - Added horizontal scrolling (
overflow-x: auto) to prevent content from being clipped.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
|
Hey! Just a heads-up: GitHub's automation needs the format Closes #366 (without the brackets) to officially link the issue. You should edit the description to remove the [ ], then others can see it linked in the sidebar. |
|
@brightyorcerf Thanks,I have updated the description |
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 1 changed files in this pull request and generated 2 comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Summary
Fixes content clipping in the Parameters definitions panel on the
Model configuration page.
Linked issue
Closes #366
Change made
Modified
.dropdown-menu-extra-wideclass inosy.css:min-width: 1520pxtomin-width: 0to prevent the panelfrom overflowing the viewport
width: min(1520px, calc(100vw - 120px))so the panel respectsthe viewport width
max-width: calc(100vw - 120px)to cap the panel within screen boundsoverflow-x: autoto enable horizontal scrolling when contentexceeds the panel width
Related work reviewed
None found.
Overlap classification
None
Why this PR should proceed
Minimal fix for a confirmed UI bug. No architectural changes.