Skip to content

Commit 516288e

Browse files
ottermataJenkins
authored andcommitted
graphing/designer: lift the header above the metrics table's sticky rows
The table pins its header and footer rows with a z-index of their own, which outranked the designer header and painted over the time picker's flyout. Change-Id: I3e80f1b250b78c70c8dfdf896a75ce6beaaf9173 JIRA-Ref: CMK-37485
1 parent a8db061 commit 516288e

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

packages/cmk-frontend-vue/src/graphing/designer/CustomGraphDesignerApp.vue

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,10 @@ function onSaved(savedGraph: CustomGraphObject, savedEtag: string | null): void
261261
.graphing-custom-graph-designer-app__header {
262262
position: sticky;
263263
top: 0;
264-
z-index: 1;
264+
265+
/* Above the sticky header and footer rows of the tables below, which carry z-indices of their
266+
own. Kept well under the overlay scale so floating content still opens over the header. */
267+
z-index: 10;
265268
flex-shrink: 0;
266269
display: flex;
267270
flex-direction: column;

0 commit comments

Comments
 (0)