From 9819bf49d9f502bb5c3b3a58e00ad7a90818ea47 Mon Sep 17 00:00:00 2001 From: Sipke Schoorstra Date: Thu, 12 Sep 2013 22:36:36 -0700 Subject: [PATCH] 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. --- .../MediaLibraryPickerFieldSettings.cshtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Orchard.Web/Modules/Orchard.MediaLibrary/Views/DefinitionTemplates/MediaLibraryPickerFieldSettings.cshtml b/src/Orchard.Web/Modules/Orchard.MediaLibrary/Views/DefinitionTemplates/MediaLibraryPickerFieldSettings.cshtml index 589264b0d..026e8ab3a 100644 --- a/src/Orchard.Web/Modules/Orchard.MediaLibrary/Views/DefinitionTemplates/MediaLibraryPickerFieldSettings.cshtml +++ b/src/Orchard.Web/Modules/Orchard.MediaLibrary/Views/DefinitionTemplates/MediaLibraryPickerFieldSettings.cshtml @@ -14,14 +14,14 @@
- @Html.TextAreaFor(m => m.Hint, new { @class = "textMedium", rows = "5" } ) + @Html.TextAreaFor(m => m.Hint, new { @class = "text-medium", rows = "5" } ) @T("The help text is written under the field when authors are selecting media items.") @Html.ValidationMessageFor(m => m.Hint)
- @Html.TextBoxFor(m => m.DisplayedContentTypes) + @Html.TextBoxFor(m => m.DisplayedContentTypes, new { @class = "text-medium" }) @T("A comma separated value of all the content types or content parts to display.")