We updated to 2.8.4 in a self hosted situation & the media-buttons div did not show.
Looking at an old post as a guide found this to work:
in the file: wp-admin/css/global.css
find this:
`.hidden,
.closed .inside,
.hide-if-no-js {
display: none;
}`
and replace with this:
`.hidden,
.closed .inside {
display: none;
}
/*.hide-if-no-js {
display: none;
}*/`
Hope it works for u.