Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Bug 1071235 - Fix touching fullscreen video displaying controls r=alive
Browse files Browse the repository at this point in the history
CSS background-color in ".appWindow.collapsible .screenshot-overlay"
makes the platform breaking tapping on a fullscreen video. Setting
'visiblity: hidden' when we are fullscreen does workaround the issue.
  • Loading branch information
lissyx authored and rvandermeulen committed Oct 7, 2014
1 parent 8a97e51 commit 4c26454
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions apps/system/style/window.css
Expand Up @@ -315,6 +315,11 @@
background-color: inherit;
}

/* Bug 1071235: Workaround for bug 1076783 */
.browser-container:-moz-full-screen-ancestor > .screenshot-overlay {
visibility: hidden;
}

.appWindow.collapsible:not(.active) .screenshot-overlay {
margin-top: 4.6rem;
}
Expand Down

0 comments on commit 4c26454

Please sign in to comment.