diff options
-rw-r--r-- | lib/tpl/default/design.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/tpl/default/design.css b/lib/tpl/default/design.css index fdc41e55b..07ea6b55e 100644 --- a/lib/tpl/default/design.css +++ b/lib/tpl/default/design.css @@ -91,7 +91,10 @@ div.dokuwiki textarea.edit { background-color: __background__; border: 1px solid __border__; padding: 0.3em 0 0 0.3em; - width: 100%; + /* should just be "width: 100%", but IE8 doesn't like it, see FS#1910 + FS#1667 */ + width: 700px; + min-width: 100%; + max-width: 100%; } /* nice alphatransparency background except for IE <7 */ |