proper variable name for z index

This commit is contained in:
tidy-dev 2021-11-22 06:58:32 -05:00
parent 0c2fd6697d
commit 8c08f001cb
3 changed files with 4 additions and 4 deletions

View file

@ -310,8 +310,8 @@ $overlay-background-color: rgba(0, 0, 0, 0.4);
--drag-overlay-z-index: 15;
--side-panel-z-index: 14;
// We want second level to fall under top level when scrolling
--list-sticky-header-top-level: 11;
--list-sticky-header-second-level: 10;
--list-sticky-header-top-level-z-index: 11;
--list-sticky-header-second-level-z-index: 10;
/**
* Toast notifications are shown temporarily for things like the zoom

View file

@ -8,7 +8,7 @@
position: sticky;
background-color: var(--background-color);
top: 29px;
z-index: var(--list-sticky-header-second-level);
z-index: var(--list-sticky-header-second-level-z-index);
}
&.selected .ci-check-name span {

View file

@ -12,6 +12,6 @@
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
z-index: var(--list-sticky-header-top-level);
z-index: var(--list-sticky-header-top-level-z-index);
}
}