Skip to content

Commit

Permalink
Scrollbar bug for options panel
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarlslund committed May 15, 2023
1 parent aa4c038 commit 1dc2108
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
12 changes: 8 additions & 4 deletions modules/analyze/html/adalanche.css
Expand Up @@ -28,16 +28,20 @@ button, input, optgroup, select, textarea {
}

.fullscreen {
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
position: absolute;
top: 0px;
left: 0px;
}

.fullheight {
height: 100vh;
}

#windows {
width: 100%;
height: 100%;
width: 100vw;
height: 100vh;
position: absolute;
pointer-events: none;
z-index: 30;
Expand Down
4 changes: 2 additions & 2 deletions modules/analyze/html/index.html
Expand Up @@ -96,8 +96,8 @@
Options
</div>
<div id="optionswrap" class="fw-250 accordion">
<div id="optionscontent" class="fw-250 collapse-group h-full overflow-y-auto">
<div class="pointer-events-auto bg-dark">
<div id="optionscontent" class="fw-250 collapse-group fullheight overflow-y-auto pointer-events-auto">
<div class="bg-dark">
<details class="collapse-panel">
<summary class="collapse-header" id="headingTwo">
Analysis options
Expand Down

0 comments on commit 1dc2108

Please sign in to comment.