Added an ie6 stylesheet for setup screen.

--HG--
branch : dev
This commit is contained in:
Jonathan Wall
2010-03-07 16:21:05 -08:00
parent 1a4ffc86fb
commit 142422e34b
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
#branding
{
height:50px;
margin:0 0 0 20px;
background:transparent url(images/orchardLogo.gif) no-repeat scroll 0 0;
}
#branding h1 {
padding:8px 0 0 38px;
}
/* Forms
----------------------------------------------------------*/
legend {
color:#333;
}
#AdminPassword, .text-box
{
border:1px solid #DDDEDF;
padding:4px;
width:98%;
}

View File

@@ -11,6 +11,10 @@
var siteCss = ResolveUrl("../Styles/site.css");
Model.Zones.AddAction("head:styles", html =>
html.ViewContext.Writer.Write(@"<link rel=""stylesheet"" type=""text/css"" href=""" + siteCss + @"""/>")); %>
<!--[if lte IE 6]>
<link rel="stylesheet" type="text/css" media="screen, projection" href="/Themes/SafeMode/Styles/ie6.css" />
<![endif]-->
<div id="header">
<div id="branding"><h1>Welcome to Orchard</h1></div>
</div>