Skip to content

Commit 70a6059

Browse files
committed
fix(Dialog): resolve issue with dialog sizing
1 parent e13433e commit 70a6059

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

packages/webui/public/origo-ui/dist/origo.css

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4007,7 +4007,6 @@ input[type=search].pi-input {
40074007
margin-left: -10px; }
40084008

40094009
.title-box-content {
4010-
height: 100%;
40114010
max-height: 28em;
40124011
overflow-y: auto;
40134012
overflow-x: hidden; }

packages/webui/src/client/lib/ModalDialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ export function ModalDialog({
150150
<div className="glass-pane-content">
151151
<motion.dialog
152152
open={true}
153-
className={'border-box overlay-m ' + className || ''}
153+
className={'border-box overlay-m ' + (className || '')}
154154
role="alertdialog"
155155
onKeyUp={onDialogKeyUp}
156156
onKeyDown={onDialogKeyDown}

packages/webui/src/client/styles/supportAndSwitchboardPanel.scss

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@
8686

8787
.switchboard-pop-up-panel {
8888
top: auto;
89-
z-index: -1;
9089
white-space: nowrap;
9190
overflow: hidden;
9291
text-align: left;
@@ -101,7 +100,6 @@
101100

102101
.media-status-panel {
103102
top: auto;
104-
z-index: -1;
105103
white-space: nowrap;
106104
overflow: hidden;
107105
text-align: left;
@@ -175,8 +173,6 @@
175173
--panel-background: #eee;
176174
background: var(--panel-background);
177175

178-
z-index: -1;
179-
180176
.status-bar__controls__button {
181177
color: #999;
182178
}

0 commit comments

Comments
 (0)