Add
in pop-up translation panel
Appearance
Fragment of a discussion from Support/LiquidThreads
The field should still be accessible somehow, I don't think we can hide it entirely.
Nike
It could have a a standard size of e.g. 3em, and of 99% of the screen width while it has the focus.
That seems to be doable with JavaScript. Can someone make a prototype I could integrate in the extension?
Nike
It can be done with CSS, here is a sample that works with my system/browsers:
<head> <style type="text/css"> .dynwidth { width:3em; } .dynwidth:focus, .dynwidth:hover { width:99%; } </style> </head> <body> <form> |<input class="dynwidth" />| </form> </body>
Done and live.
Nike