I use this module in combination with the shiny administration theme. This results in the following screen layout:

This is due to a combination of this module setting an explicit height for the textarea and the administration theme setting a padding for text-area's. I suggest that his module trusts the browser to come up with a correct height based on the rows attribute, i.e: simply remove this line from stringoverrides.admin.css:
#stringoverrides-admin textarea {
width: 100%;
- height: 1.7em;
}
This would also allow another module to hook_form_alter the rows attribute based on smart guessing by text length.
Comments
Comment #1
fietserwinComment #2
fietserwinI always need 3 tries before getting images right :(
Comment #3
fietserwinComment #4
poedan commentedI needed a path for this
Comment #5
poedan commentedComment #6
fietserwinYes, that works.