If you tick a few rows in a table then click the edit button at the bottom, on the editing page the "actions panel" (the fieldset element with [Save] and then [Go back...] and Go/Cancel buttons) is not at the bottom. It instead appears towards the end, but has one or more rows to edit following that. Screenshot attached.
Seems to be Chrome only (i's okay in Firefox). When inspecting in Chrome Dev Tools, the actions panel appears to be at the bottom in the source below all the row-editing tables, so it could be a Chrome bug. Though I did see a similar issue on another site that had invalid HTML, so perhaps it's that?
Which version of Chrome were you using?
I am not able to reproduce this bug. Could you please elaborate on how to reproduce it.
I haven't used PMA much in the past couple weeks but I haven't noticed this bug for a while. It's possible it was a bug with Chrome as mentioned above.
http://code.google.com/p/chromium/issues/detail?id=262679
This is a standard bug in chromium. refer to comment 2.
This could be solved with a display:inline tag applied to the fieldset in action_panel. But as you can see the rows are not sorted according to the primary key.
So to fix this issue I enclosed each row in a div tag and put the float:left and clear both properties.
Also I didn't know where excatly to put the css so I put it in both the themes's common.css.php
https://github.com/phpmyadmin/phpmyadmin/pull/1014
PR merged.