Applying .text-medium to the Content Types and Parts settings field of the MediaLibraryPicker settings editor for a more consistent look and breathing space when entering data.

This commit is contained in:
Sipke Schoorstra
2013-09-12 22:36:36 -07:00
parent 9403cd7ea7
commit 9819bf49d9

View File

@@ -14,14 +14,14 @@
</fieldset>
<fieldset>
<label for="@Html.FieldIdFor(m => m.Hint)">@T("Help text")</label>
@Html.TextAreaFor(m => m.Hint, new { @class = "textMedium", rows = "5" } )
@Html.TextAreaFor(m => m.Hint, new { @class = "text-medium", rows = "5" } )
<span class="hint">@T("The help text is written under the field when authors are selecting media items.")</span>
@Html.ValidationMessageFor(m => m.Hint)
</fieldset>
<fieldset>
<div>
<label for="@Html.FieldIdFor(m => m.DisplayedContentTypes)">@T("Content Types and Parts")</label>
@Html.TextBoxFor(m => m.DisplayedContentTypes)
@Html.TextBoxFor(m => m.DisplayedContentTypes, new { @class = "text-medium" })
<span class="hint">@T("A comma separated value of all the content types or content parts to display.")</span>
</div>
</fieldset>