Updated button text and margin.

--HG--
branch : 1.x
This commit is contained in:
jowall
2011-04-04 11:23:53 -07:00
parent a54beb26d2
commit eac0abe812
2 changed files with 4 additions and 4 deletions

View File

@@ -1,5 +1,5 @@
.orchard-contenttypes #main h2 {
margin:1.5em 0 0;
margin:40px 0 0;
border-bottom:1px solid #ccc;
}
@@ -8,7 +8,7 @@
}
.manage.add-to-type {
margin-top:-3.1em;
margin-top:-28px;
}
.manage-part {
margin-bottom:1em;

View File

@@ -26,12 +26,12 @@
<div class="manage-type">
<h2>@T("Fields")</h2>
<div class="manage add-to-type">
@Html.ActionLink(T("Add").Text, "AddFieldTo", new { area = "Orchard.ContentTypes", id = Model.Name }, new { @class = "button" })
@Html.ActionLink(T("Add Field").Text, "AddFieldTo", new { area = "Orchard.ContentTypes", id = Model.Name }, new { @class = "button" })
</div>
@Html.EditorFor(m => m.Fields, "Fields", "")
<h2>@T("Parts")</h2>
<div class="manage add-to-type">
@Html.ActionLink(T("Add").Text, "AddPartsTo", new { area = "Orchard.ContentTypes", id = Model.Name }, new { @class = "button" })
@Html.ActionLink(T("Add Parts").Text, "AddPartsTo", new { area = "Orchard.ContentTypes", id = Model.Name }, new { @class = "button" })
</div>
@Html.EditorFor(m => m.Parts, "TypeParts", "")
</div>