Skip to content

Commit

Permalink
fix: normalize by dropdown was clipping behind other gui elements
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusRainerSchmidt committed Oct 17, 2023
1 parent 2510404 commit 404c4b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
4 changes: 4 additions & 0 deletions biosmoother/static/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,10 @@ button {
white-space: nowrap;
}

.z_index_100 {
z-index: 100;
}

.tab-button-fill{
width: 100%;
}
Expand Down
4 changes: 3 additions & 1 deletion biosmoother/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,9 @@
</div>

<div id="mainNormTab" class="normTab scroll_y" style="display:block">
{{ embed(doc.roots.mainNorm) }}
<div style="z-index:100;position:relative">
{{ embed(doc.roots.mainNorm) }}
</div>

<div class="tab-header tab-header-3">
<div class="tab-button tab-button-spacer tab-level-3">
Expand Down

0 comments on commit 404c4b6

Please sign in to comment.