Completed
Last Updated: 30 Jul 2015 13:02 by ADMIN
ADMIN
Ianko
Created on: 18 Jul 2014 06:26
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Layout issues with the ImageMapDialog in Windows7 skin under IE
When the Editor is set with Skin=Window7, fieldsets has a non designed margin top value. The New Area bottom also drop to a new line, where it should be next to the radio buttons. 

Possible solutions is setting a CSS file to the DialogsCssFile property with CSS rules that resolve the issue:

<telerik:RadEditor ID="RadEditor1" runat="server" Skin="Windows7" DialogsCssFile="~/Styles/Styles.css">
</telerik:RadEditor>


Styles.css

html.redImageMapDialog.RadForm_Windows7 #dialogControl fieldset {
	margin-top:0;
}


button#ImageMap_NewArea {
	width:110px !important;
}


0 comments