If you press any of the "Reorder" buttons in the ThinLinc Web Administration, nothing happens.
This is because the re-order buttons are <input> tags of type "img", which according to the HTML spec[1] do not send a "value" in their query; they send the coordinates of the click on the image. Our server-side code looks for a "value" key, and it's not finding one. We could possibly reimplement the buttons as actual <button>s, containing an <img> instead. [1] http://www.w3.org/TR/html4/interact/forms.html#h-17.4.1
r27867.
Tested using Chrome 30, Firefox 24 and IE11. Works as expected.
They may work now, but they've been changed to much bigger buttons instead of the smaller icons used before.
Going back to an image control is difficult as we have to encode everything in the "name" attribute. Possible, but messy. So the button approach is probably the best solution, but we need to make sure it only renders the image. r28061 uses CSS to kill off the decorations provided by the browser.
Had a quick look and am happy with the solution, resolving bug for Henrik to test.
Im also happy with the change of appearance, and those buttons work as expected.