mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
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:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user