I myself use the following home-brewed User stylesheet (in conjunction with Stylish). I don't need the whole bar to stick to the top, only the StackExchange™ MultiCollider SuperDropdown™, for inbox messages.
@namespace url(http://www.w3.org/1999/xhtml);
@-moz-document domain('stackoverflow.com'),
domain('stackexchange.com'),
domain('superuser.com'),
domain('serverfault.com'),
domain('stackapps.com'),
domain('askubuntu.com') {
#portalLink {
position: fixed;
background-color: #EEE !important;
padding: 8px 6px 6px 16px !important;
margin: -2px 0 0 -22px !important;
border-radius: 5px;
}
}
@-moz-document url-prefix('http://stackexchange.com/') {
#portalLink {
background-image: -moz-element(#topBar) !important;
}
}
#EEE is the grey-ish background color of the Stack Overflow bar. For the Stack Exchange main site, I've used a different method to have the same background: -moz-element. This eliminates the need for hard-coding colours.
Here's how it looks like (notice the StackExchange box at the top of the page):

/reviewpage (the one with the "accept," "close" and "not sure" buttons) is sticky. It doesn't come into play very often because mosts posts aren't that long. Or maybe it does, and I just can't tell because I orient my monitor vertically. – Popular Demand Aug 3 '12 at 19:40