diff --git a/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts.Settings.SiteSettingsPart.cshtml b/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts.Settings.SiteSettingsPart.cshtml
index 14a7a886e..3e5e493cc 100644
--- a/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts.Settings.SiteSettingsPart.cshtml
+++ b/src/Orchard.Web/Core/Settings/Views/EditorTemplates/Parts.Settings.SiteSettingsPart.cshtml
@@ -16,7 +16,7 @@
@T("Base URL")
- @Html.TextBoxFor(m => m.BaseUrl, new { @class = "text medium" })
+ @Html.TextBoxFor(m => m.BaseUrl, new { @class = "text medium is-url" })
@T("Enter the fully qualified base URL of the web site.")
@T("e.g., http://localhost:30320/orchardlocal, http://www.yourdomain.com")
diff --git a/src/Orchard.Web/Modules/Orchard.Autoroute/Views/EditorTemplates/Parts.Autoroute.Edit.cshtml b/src/Orchard.Web/Modules/Orchard.Autoroute/Views/EditorTemplates/Parts.Autoroute.Edit.cshtml
index 67ed1ee8c..7eb4ac247 100644
--- a/src/Orchard.Web/Modules/Orchard.Autoroute/Views/EditorTemplates/Parts.Autoroute.Edit.cshtml
+++ b/src/Orchard.Web/Modules/Orchard.Autoroute/Views/EditorTemplates/Parts.Autoroute.Edit.cshtml
@@ -21,9 +21,9 @@
@T("Permalink")
@if (Model.Settings.AllowCustomPattern) {
-
+
@Url.MakeAbsolute("/")@urlPrefix
- @Html.TextBoxFor(m => m.CurrentUrl, new { @class = "text" })
+ @Html.TextBoxFor(m => m.CurrentUrl, new { @class = "text is-url" })
@T("Save the current item and leave the input empty to have it automatically generated using the pattern {0} e.g., {1}", defaultPattern.Name, defaultPattern.Description)
}
diff --git a/src/Orchard.Web/Themes/TheAdmin/Styles/site.css b/src/Orchard.Web/Themes/TheAdmin/Styles/site.css
index d46e76cdf..cb2e63c9c 100644
--- a/src/Orchard.Web/Themes/TheAdmin/Styles/site.css
+++ b/src/Orchard.Web/Themes/TheAdmin/Styles/site.css
@@ -1095,12 +1095,16 @@ html.dyn #submit-pager, html.dyn .apply-bulk-actions-auto { display:none; }
margin-left:0;
margin-right:2em;
width:350px;
+ direction: ltr;
}
.permalink input.text:focus {
background:#FFF;
border-color:#666d51;
border-style:solid;
}
+.is-url {
+ direction: ltr !important;
+}
/* Routable and Containers (Core) */
.with-checkbox .checkbox-and-label { /* todo: (heskew) routable should be changed to use this too */
margin-left:10px;