Safari stacking order bug: Elements like the
"solverReasonBox", "partyReasonBox", and "gameBox" divs
should be stacked on top of the "space" div
(and thus they should always appear on top of all of the 3d-transformed blocks
which are descendants of the "space" div)
since they're positioned (absolute or fixed) like the "space" div,
and they appear after it in the HTML
(see "
Stacking without z-index").
However, Safari will render the parts of 3d-transformed elements that
have Z coordinates greater than 0 above any such divs that should be
higher in the stacking order. Explicitly setting the z-index of all
involved elements (in CSS or JavaScript) doesn't change this behavior.
Mouse events, however, are sent correctly to the topmost element in
the stacking order. Firefox and Chrome render the stacking order
correctly. The workaround used in Block Party 3D is to push the blocks
below the z=0 plane when they're not being dragged.