Last modified: 2006-10-22 20:26:28 UTC
I experienced this on 1.7alpha (r14665). In the cologne-blue skin the search field in the menubar can get too big. This is because the width of the search field is specified in characters, and not pixels. (or equivalent) Right now it looks like this: <input type='text' name="search" size='14' value="" /> Can be fixed with something like: <input type='text' name="search" style='width: 120px;' value="" /> The error only occurs if your screen resolution is big. (or you have big default characters) Related with: cologne blue search field oversize menubar menu overflow
Can be seen on http://goxadidi.dk/filer/bug.png (cannot guarantee for reliability)
Created attachment 1938 [details] Illustration Illustrates the bug.
Fixed in r17122 with a CSS override.