https://bugzilla.wikimedia.org/show_bug.cgi?id=48016
Kelson [Emmanuel Engelhart] <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |PATCH_TO_REVIEW --- Comment #4 from Kelson [Emmanuel Engelhart] <[email protected]> --- The bug root cause is the following one: this is CSS stacking context problem: https://developer.mozilla.org/en-US/docs/Web/Guide/CSS/Understanding_z_index/The_stacking_context On monobook (from skin/monobook/main.css): * the div #content, where article are displayed, has a z-index=2 * the div #p-personal, which is the top-right personal list of links (where the Echo notification comes from), has a z-index=0 Both are in the same (main) stacking context, and for this reason everything which is in p-personal will will displayed behind the main div. I propose to set for #p-personal "z-index: 2", the same than content. The other solution is to change the z-index for #content, but this seems to me to be more intrusive. -- You are receiving this mail because: You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
