Skip to content
Snippets Groups Projects
Commit 0fd4aec2 authored by Sascha Eggenberger's avatar Sascha Eggenberger :speech_balloon:
Browse files

Settings footer: increase z-index by 1 from header

Fixes an issue where a dropdown placed in the settings footer
would be below the following settings header.

Changelog: fixed
parent 4a76c63b
No related branches found
No related tags found
1 merge request!171404Settings footer: increase z-index by 1 from header
......@@ -68,11 +68,11 @@ $sticky-header-z-index: 98;
.settings-sticky-header,
.settings-sticky-footer {
position: sticky;
z-index: $sticky-header-z-index;
@apply gl-bg-default;
}
.settings-sticky-header {
z-index: $sticky-header-z-index;
top: $calc-application-header-height;
&::before {
......@@ -93,6 +93,7 @@ $sticky-header-z-index: 98;
}
.settings-sticky-footer {
z-index: #{$sticky-header-z-index +1};
bottom: 0;
padding: $gl-padding-8 0;
box-shadow: 0 -1px 0 var(--gl-border-color-default);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment