Bug 1168113 - Anonymous custom content container should use absolute position. r=xidorn

MozReview-Commit-ID: JkfqzK6BsdE

--HG--
extra : rebase_source : 61a05f4ac4d030ecd266d44ea698a5fc1a9aac1a
This commit is contained in:
Matteo Ferretti 2016-04-19 22:22:57 +08:00
parent f720349666
commit 3837790c7f
2 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
*/
:-moz-native-anonymous .highlighter-container {
position: absolute;
position: fixed;
width: 100%;
height: 100%;
/* The container for all highlighters doesn't react to pointer-events by

View File

@ -431,12 +431,12 @@ div:-moz-native-anonymous.moz-accessiblecaret.none {
}
}
/* Custom content container in the CanvasFrame, fixed positioned on top of
/* Custom content container in the CanvasFrame, positioned on top of everything
everything else, not reacting to pointer events. */
div:-moz-native-anonymous.moz-custom-content-container {
pointer-events: none;
-moz-top-layer: top;
position: fixed;
position: absolute;
top: 0;
left: 0;
width: 100%;