mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
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:
parent
f720349666
commit
3837790c7f
@ -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
|
||||
|
@ -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%;
|
||||
|
Loading…
Reference in New Issue
Block a user