﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4454	CKEditor should resize itself automatically in resizable floating window	Wiktor Walc		"CKEditor behaves in a different way than FCKeditor when height is set to percentage value.

Suppose we have a floating resizable window, where the editor is running. When height of the editor is set to 95% and window is resized, CKEditor does not change its height. FCKeditor adjusts its height to match the new size of the window without any problems.

CKEditor can be easily changed to work in a similar way as FCKeditor, by changing the CSS style to:
{{{
.cke_skin_kama .cke_editor{
  display:inline-table;
  width:100%;
  height:95%; /* < --- added */
}
}}}
in skins/kama/editor.css

.. but this way the ""resize"" plugin stops working."	New Feature	confirmed	Normal		General	3.0		Discussion	
