Disable pointer-events on fullscreen overlay

This commit is contained in:
Chris van Marle 2017-01-04 19:22:59 +01:00
parent 1a1736ca0e
commit 92e0affb85
2 changed files with 6 additions and 0 deletions

View File

@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/). This project adheres to [Semantic Versioning](http://semver.org/).
## [2.1.1] - Unreleased ## [2.1.1] - Unreleased
- Make mouse events pass through the region fullscreen_above to modules below.
## [2.1.0] - 2016-12-31 ## [2.1.0] - 2016-12-31

View File

@ -135,6 +135,11 @@ sup {
left: -60px; left: -60px;
right: -60px; right: -60px;
bottom: -60px; bottom: -60px;
pointer-events: none;
}
.region.fullscreen * {
pointer-events: auto;
} }
.region.right { .region.right {