Skip to content

Commit

Permalink
Fix z-index issue
Browse files Browse the repository at this point in the history
  • Loading branch information
colejd committed Dec 20, 2021
1 parent c8d290f commit 42e1f41
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 0.15.1

- Fixed the
- Fixed a bug preventing folders from being removed with `Remove()`.
- There was an issue introduced by 0.15.0 where the guify-container covers all content and has a higher z-index than the content underneath, eating all touch/click events. To fix this, the z-index of guify-container is now unset, and the sub-elements are given the z-index that guify-container used to get (9999).

## 0.15.0

Expand Down
4 changes: 4 additions & 0 deletions src/gui.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
left: 0;
width: 100%;
height: 100%;
}

/* Sub-elements of guify-container should appear over anything else. */
.guify-container > * {
z-index: 9999;
}

Expand Down

0 comments on commit 42e1f41

Please sign in to comment.