Fixed CSS for IE in categories editor of preferences window.

Monotone-Parent: 39c75e19bf860149cbc9f36ece8744fbd26e0134
Monotone-Revision: 5a7e429f43453ecb7e1ca7ac57a0e13f01a7d0be

Monotone-Author: flachapelle@inverse.ca
Monotone-Date: 2009-11-26T01:09:50
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Francis Lachapelle
2009-11-26 01:09:50 +00:00
parent 33b662f136
commit a66386c85a
4 changed files with 5 additions and 10 deletions

View File

@@ -143,9 +143,9 @@ function makeEditable (element) {
element.removeClassName ("categoryListCell");
var tmp = element.innerHTML;
element.innerHTML = "";
var textField = new Element ("input", {"type": "text",
"width": "100%"});
var textField = new Element ("input", {"type": "text"});
textField.value = tmp;
textField.setStyle({ width: '98%' });
textField.observe ("keydown", interceptEnter);
element.appendChild (textField);
textField.focus ();