Skip to content

Commit e8365cb

Browse files
authored
fix(dashboards): metric widget overflow (#64644)
1 parent 5252401 commit e8365cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

static/app/views/dashboards/dashboard.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -630,6 +630,4 @@ const WidgetWidthWrapper = styled('div')`
630630
left: 16px !important;
631631
right: 16px !important;
632632
width: auto !important;
633-
/* minimal working z-index */
634-
z-index: 6;
635633
`;

static/app/views/dashboards/widgetCard/metricWidgetCard/inlineEditor.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -346,6 +346,8 @@ const InlineEditorWrapper = styled('div')`
346346
padding: ${space(1)};
347347
gap: ${space(1)};
348348
width: 100%;
349+
/* minimal z-index that allows dropdowns to expand over other dashboard elements */
350+
z-index: 6;
349351
`;
350352

351353
const QueryDefinitionWrapper = styled('div')`

0 commit comments

Comments
 (0)