summaryrefslogtreecommitdiff
path: root/lib/tpl
diff options
context:
space:
mode:
authorAnika Henke <anika@selfthinker.org>2010-06-26 13:57:50 +0100
committerAnika Henke <anika@selfthinker.org>2010-06-26 13:57:50 +0100
commit2b2693ccbd870382d9b02623a4bffa6849cf70d4 (patch)
tree616dfc9709cc254b90829bed67d46889f47d4da1 /lib/tpl
parentb038bf62450c4c0aceb9f2cf7d4e24335d6e7bdf (diff)
downloadrpg-2b2693ccbd870382d9b02623a4bffa6849cf70d4.tar.gz
rpg-2b2693ccbd870382d9b02623a4bffa6849cf70d4.tar.bz2
fix for textarea bug in IE8 (FS#1910)
Diffstat (limited to 'lib/tpl')
-rw-r--r--lib/tpl/default/design.css5
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 */