You haven't got a fix for the Facebook search field now being mis-placed have you?!
Actually, I already do.
Make a CSS file containing the following:
._50tk, ._2t-e {
display: flex;
}
._2t-e, ._50tm {
flex: 1;
}
Then set this file as the custom style sheet in site preferences for FB. Of course this solution may break when they make changes to the site again, but we'll see.
Does it still work?
Unfortunately, for me seems to not work on Opera 12.16 (Linux).
I've made some (really) ugly UserCSS which works for me now but that's not a good solution.
`._50tl ._2t-e {
width: 450px;
}
.__wu ._539-.roundedBox.reDesignedSearchBox {
width: 400px !important;
}`
Beside that to get rid of a prompt about upgrading the browser I use:
`div[id="outdatedBrowserBanner"] {
display: none !important;
}`
And to remove a bit of the empty space above the bar on the right side:
`.hasBanner ._5qqe {
height: 45px !important;
}`