Hi,
There is a problem to display InsertImage and InsertLink dialogs with Firefox (I am using FF version 15 and 16). These dialogs DO display, but with no elements visible inside. With IE, they are OK. I haven't check this with other versions of FF. Looking into Firebug, I found this CSS bug (in bold):
<tr class="rwContentRow">
I have to override css classes as below, and they are all OK now.
.reInsertImageWrapper, .reInsertLinkWrapper, .reInsertTableLightWrapper { overflow: visible !important;}
(Up to now, you can see this will affect InsertTableLight too).
Just giving this information, in case others may have the same problems, and the Telerik guys should take more investigation on this.
Thanks.
There is a problem to display InsertImage and InsertLink dialogs with Firefox (I am using FF version 15 and 16). These dialogs DO display, but with no elements visible inside. With IE, they are OK. I haven't check this with other versions of FF. Looking into Firebug, I found this CSS bug (in bold):
<tr class="rwContentRow">
<td class="rwCorner rwBodyLeft"> </td>
<td class="rwWindowContent" valign="top">
<div id="ContentEditor_InsertImage" class="reInsertImageWrapper" style="width: 334px; height: 154px; overflow: auto;">
<table class="reControlsLayout" border="0" cellspacing="0" cellpadding="0">
</div>
</td>
<td class="rwCorner rwBodyRight"> </td>
</tr>
I have to override css classes as below, and they are all OK now.
.reInsertImageWrapper, .reInsertLinkWrapper, .reInsertTableLightWrapper { overflow: visible !important;}
(Up to now, you can see this will affect InsertTableLight too).
Just giving this information, in case others may have the same problems, and the Telerik guys should take more investigation on this.
Thanks.