Skip to content

Commit

Permalink
fix(Dialog): resolve issue with dialog sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
jstarpl committed Mar 7, 2025
1 parent e13433e commit 70a6059
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion packages/webui/public/origo-ui/dist/origo.css
Original file line number Diff line number Diff line change
Expand Up @@ -4007,7 +4007,6 @@ input[type=search].pi-input {
margin-left: -10px; }

.title-box-content {
height: 100%;
max-height: 28em;
overflow-y: auto;
overflow-x: hidden; }
Expand Down
2 changes: 1 addition & 1 deletion packages/webui/src/client/lib/ModalDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export function ModalDialog({
<div className="glass-pane-content">
<motion.dialog
open={true}
className={'border-box overlay-m ' + className || ''}
className={'border-box overlay-m ' + (className || '')}
role="alertdialog"
onKeyUp={onDialogKeyUp}
onKeyDown={onDialogKeyDown}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@

.switchboard-pop-up-panel {
top: auto;
z-index: -1;
white-space: nowrap;
overflow: hidden;
text-align: left;
Expand All @@ -101,7 +100,6 @@

.media-status-panel {
top: auto;
z-index: -1;
white-space: nowrap;
overflow: hidden;
text-align: left;
Expand Down Expand Up @@ -175,8 +173,6 @@
--panel-background: #eee;
background: var(--panel-background);

z-index: -1;

.status-bar__controls__button {
color: #999;
}
Expand Down

0 comments on commit 70a6059

Please sign in to comment.