diff options
author | Joey Hess <joey@kitenet.net> | 2010-08-25 14:57:45 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-08-25 14:57:45 -0400 |
commit | 37f62dde2d9b752ba559b796cf6c1b3bc3dee9bd (patch) | |
tree | 98910ad4a237be3c629c4ab8648430fc490b735a /doc | |
parent | ff73f44f88e294fc4b9d0cb0396457537fd4a7aa (diff) | |
download | ikiwiki-37f62dde2d9b752ba559b796cf6c1b3bc3dee9bd.tar ikiwiki-37f62dde2d9b752ba559b796cf6c1b3bc3dee9bd.tar.gz |
response
Diffstat (limited to 'doc')
-rw-r--r-- | doc/todo/edit_form:_no_fixed_size_for_textarea.mdwn | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/todo/edit_form:_no_fixed_size_for_textarea.mdwn b/doc/todo/edit_form:_no_fixed_size_for_textarea.mdwn index 8721277aa..77e46049f 100644 --- a/doc/todo/edit_form:_no_fixed_size_for_textarea.mdwn +++ b/doc/todo/edit_form:_no_fixed_size_for_textarea.mdwn @@ -42,3 +42,11 @@ browsers emulate it. [[done]] Wouldn't it be possible to just implement an integer-valued setting for this, accessible via the "Setup" wiki page? This would require a wiki regen, but such a setting would not be changed frequently I suppose. Also, Mediawiki has this implemented as a per-user setting (two settings, actually, -- number of rows and columns of the edit area); such a per-user setting would be the best possible implementation, but I'm not sure if ikiwiki already supports per-user settings. Please consider implementing this as the current 20 rows is a great PITA for any non-trivial page. > I don't think it would need a wiki rebuild, as the textarea is generated dynamically by the CGI when you perform a CGI action, and (as far as I know) is not cooked into any static content. -- [[Jon]] + +>> There is no need for a configuration setting for this -- to change +>> the default height from 20 rows to something else, you can just put +>> something like this in your `local.css`: --[[Joey]] + + #editcontent { + height: 50em; + } |