Keep issue dialog above site navigation
This commit is contained in:
@@ -2654,6 +2654,10 @@ button:disabled,
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.issue-reports-column.has-open-modal {
|
||||||
|
z-index: 2000;
|
||||||
|
}
|
||||||
|
|
||||||
.issue-reports-column > .issue-history-heading {
|
.issue-reports-column > .issue-history-heading {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 14px 15px;
|
padding: 14px 15px;
|
||||||
|
|||||||
@@ -2020,7 +2020,9 @@ export default function PortalClient({ workspace }: PortalClientProps) {
|
|||||||
</>
|
</>
|
||||||
) : null}
|
) : null}
|
||||||
|
|
||||||
<div className={workspace === 'issue' ? 'issue-reports-column' : 'portal-lower-content'}>
|
<div className={workspace === 'issue'
|
||||||
|
? `issue-reports-column ${selectedItemId != null ? 'has-open-modal' : ''}`
|
||||||
|
: 'portal-lower-content'}>
|
||||||
{workspace === 'issue' ? (
|
{workspace === 'issue' ? (
|
||||||
<div className="issue-history-heading">
|
<div className="issue-history-heading">
|
||||||
<div>
|
<div>
|
||||||
|
|||||||
Reference in New Issue
Block a user