Hi
I appear to have an issue with differences in how FF/Chrome/IE render the dialog header background when the theme is Style1
In Chrome, the header background is rendered and so the double bar continues across the header. IN FF and IE, this is not the case. It is almost as if the panel for the dialog content is shifted up slightly.
In all cases, it would appear that the CSS is the same, just the browser interpretation somehow differs.
I have disabled theming on the page to ensure that no global style sheets are affecting the rendering.
Do you know what's wrong here?
Code: HTML/ASPX
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="EODialog.aspx.cs" Inherits="ClientApp.Pages.Test_Pages.EOWebControls.EODialog" EnableTheming="false" Theme="" StylesheetTheme="" %>
<%@ Register TagPrefix="eo" Namespace="EO.Web" Assembly="EO.Web" %>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<eo:dialog id="LoginDialog" runat="server" Height="260px" Width="360px"
ControlSkinID="None" EnableTheming="False"
BackColor="White" HeaderHtml="Dialog"
CloseButtonUrl="00020312" InitialState="Visible" ClientSideOnCancel="CloseWindow"
ClientSideOnAccept="AcceptHandler" EnableViewState="False" IsModal="False">
<ContentTemplate>
<div>test</div>
</ContentTemplate>
<FooterStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma"></FooterStyleActive>
<HeaderStyleActive CssText="background-image:url('00020311');color:black;font-family:Trebuchet MS;font-size:9pt;font-weight:bold;padding-bottom:5px;padding-left:8px;padding-right:3px;padding-top:0px;"></HeaderStyleActive>
<ContentStyleActive CssText="padding-right: 4px; padding-left: 4px; font-size: 8pt; padding-bottom: 4px; padding-top: 4px; font-family: tahoma"></ContentStyleActive>
<ShowEffect Type="Fade"></ShowEffect>
<BorderImages BottomBorder="00020305" RightBorder="00020307" TopRightCornerBottom="00020308" TopRightCorner="00020309"
LeftBorder="00020303" TopLeftCorner="00020301" BottomRightCorner="00020306" TopLeftCornerBottom="00020302"
BottomLeftCorner="00020304" TopBorder="00020310"></BorderImages>
</eo:dialog>
</div>
</form>
</body>
</html>