diff --git a/changelog.md b/changelog.md index b339183..1c120b2 100644 --- a/changelog.md +++ b/changelog.md @@ -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 diff --git a/src/gui.css b/src/gui.css index b076e2d..ab81f7b 100644 --- a/src/gui.css +++ b/src/gui.css @@ -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; }