@@ -30,20 +30,14 @@ using (Html.BeginFormAntiForgeryPost()) { %>
<%=Html.RadioButtonFor(svm => svm.DatabaseOptions, false, new { id = "sql" })%>
-
+
<%=Html.EditorFor(svm => svm.DatabaseConnectionString)%>
- <%=_Encoded("Example: Data Source=sqlServerName;Initial Catalog=dbName;Persist Security Info=True;User ID=userName;Password=password") %>
+ <%=_Encoded("Example:") %>
<%=_Encoded("Data Source=sqlServerName;Initial Catalog=dbName;Persist Security Info=True;User ID=userName;Password=password") %>
<%
-} %>
-
\ No newline at end of file
+} %>
\ No newline at end of file
diff --git a/src/Orchard.Web/Themes/SafeMode/Styles/site.css b/src/Orchard.Web/Themes/SafeMode/Styles/site.css
index 981b2801d..2de026cef 100644
--- a/src/Orchard.Web/Themes/SafeMode/Styles/site.css
+++ b/src/Orchard.Web/Themes/SafeMode/Styles/site.css
@@ -35,7 +35,10 @@ h3 {font-size: 130%;}
h4 {font-size: 120%;}
h5 {font-size: 105%;}
-
+.hint {
+ font-size:60%;
+ font-style:italic;
+}
#header {
background:#2d2f25 url(images/backgroundHeader.gif) no-repeat bottom right;
@@ -48,7 +51,7 @@ h5 {font-size: 105%;}
background:url(images/orchardLogo.gif) no-repeat;
display:block;
height:60px;
- margin:0 0 0 20px;;
+ margin:0 0 0 20px;
}
@@ -146,10 +149,6 @@ button:focus, .button:focus {
text-decoration:none;
}
-html.dyn fieldset.data.builtin div span {
- display:none;
-}
-
/* Confirmations, Messages and the like
----------------------------------------------------------*/
diff --git a/src/Orchard.Web/Themes/SafeMode/Views/Layout.ascx b/src/Orchard.Web/Themes/SafeMode/Views/Layout.ascx
index 7883ab83b..03a6412ee 100644
--- a/src/Orchard.Web/Themes/SafeMode/Views/Layout.ascx
+++ b/src/Orchard.Web/Themes/SafeMode/Views/Layout.ascx
@@ -4,10 +4,13 @@
<% //todo: (heskew) this should really be using the IResourceManager if it's to be a theme especially for the jquery dep (w/out needing to copy into this theme...)
var jquery = ResolveUrl("~/Core/Themes/Scripts/jquery-1.4.1.js");
Model.Zones.AddAction("head:scripts", html =>
- html.ViewContext.Writer.Write(@""));
+ html.ViewContext.Writer.Write(@""));
+ var basejs = ResolveUrl("~/Core/Themes/Scripts/base.js");
+ Model.Zones.AddAction("content:after", html =>
+ html.ViewContext.Writer.Write(@""));
var siteCss = ResolveUrl("../Styles/site.css");
Model.Zones.AddAction("head:styles", html =>
- html.ViewContext.Writer.Write(@"
")); %>
+ html.ViewContext.Writer.Write(@"
")); %>