TL;DR: Fixed in the next build.
For web devs, the details on this may be interesting though:
There is a discussion on the W3C mailing list to make elements that are position: fixed create their own stacking context, even if they're z-index: auto (usually for an element to create a new stacking context, it needs to be both positioned and have a non-auto z-index).
This is only a discussion so far, but there is one (non-mobile) browser that already implements it: Chrome. More details on html5rocks; relevant SO question.
The chat sidebar is position: fixed, but does not have a non-auto z-index. The popup menu is a descendent of the sidebar, and it's z-index: 50. The message time stamp is z-index: 1 (because of this).
So until the change appeared in Chrome 22, the sidebar did not create a new stacking context, and thus the popup and the time stamp were in the same stacking context, with the popup appearing on top because of the higher z-index.
In Chrome 22+, where position: fixed now implies z-index: 0, the sidebar establishes a new stacking context, and because 0 < 1 it is below the timestamps. The popup menu is part of this new stacking context, and thus its z-index of 50 doesn't matter anymore – it's still below the time stamp.