Bug 1168113 - Anonymous custom content container should use absolute position; r=pbrosset

This commit is contained in:
Matteo Ferretti 2015-11-17 07:04:00 +01:00
parent af7c14cf01
commit 3a4ab22052
2 changed files with 4 additions and 4 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

@ -511,12 +511,12 @@ div:-moz-native-anonymous.moz-selectioncaret-right.hidden > div {
visibility: hidden;
}
/* Custom content container in the CanvasFrame, fixed positioned on top of
everything else, not reacting to pointer events. */
/* Custom content container in the CanvasFrame, positioned on top of 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%;