Bug #16704
Fulltext RTE in IE7 only 10 lines high
| Status: | Closed | Start date: | 2006-11-08 | |
|---|---|---|---|---|
| Priority: | Should have | Due date: | ||
| Assignee: | - | % Done: | 0% |
|
| Category: | - | |||
| Target version: | - | |||
| TYPO3 Version: | Complexity: | |||
| PHP Version: | ||||
| Votes: | 0 |
Description
In Internet Explorer 7, the height of the fullscreen RTE is only about 10 lines. No problem with IE6 or FF. Version of rtehtmlarea is 1.4.2 on Typo3 4.0.2..
(issue imported from #M4486)
History
Updated by Pim Broens over 6 years ago
I have looked into it for a second. The problem is that IE7 no longer uses the style="height:100%;" value for the <textarea>. It ignores it and uses the default height.
(In the file /t3lib/class.tx_rtehtmlarea_base.php on Line 597 it could be changed into a height using pixels. The only problem then is the fixed height)
Updated by Martin Kutschker over 6 years ago
Argh, on my installations it's not 10 lines but 1 pixel. I see no RTE at all !!!
I've seen tips to use "height:auto" or "min-height:100%", but neither works for the RTE.
Updated by Martin Kutschker over 6 years ago
Solution: add "html { height: 100% }"
Updated by Rickard Andersson over 6 years ago
I can confirm that Martin Kutschker's tip works. I added the line to sysext\t3skin\stylesheets\stylesheet_post.css and now full screen htmlarea works in IE7. This fix should definitely be incorporated into the next bugfix release.
Updated by Peter Faymonville over 6 years ago
I can also confirm this fix. This should really be in the next release.
Updated by Martin Kutschker over 6 years ago
Rejoice! The fix has been added to SVN (both 4.1 and 4.0.4).