From 32bf7dfe41328eafb65354fc915f8adaf2446426 Mon Sep 17 00:00:00 2001 From: piedone Date: Wed, 2 May 2012 10:26:24 -0700 Subject: [PATCH] #18416: Adding more flavors for Body (and TextField) Work Item: 18416 --HG-- branch : 1.x --- .../Core/Common/Views/Body-Large.Editor.cshtml | 1 + .../Core/Common/Views/Body-Small.Editor.cshtml | 1 + .../Core/Common/Views/Body-Wide.Editor.cshtml | 1 + src/Orchard.Web/Core/Orchard.Core.csproj | 9 +++++++++ 4 files changed, 12 insertions(+) create mode 100644 src/Orchard.Web/Core/Common/Views/Body-Large.Editor.cshtml create mode 100644 src/Orchard.Web/Core/Common/Views/Body-Small.Editor.cshtml create mode 100644 src/Orchard.Web/Core/Common/Views/Body-Wide.Editor.cshtml diff --git a/src/Orchard.Web/Core/Common/Views/Body-Large.Editor.cshtml b/src/Orchard.Web/Core/Common/Views/Body-Large.Editor.cshtml new file mode 100644 index 000000000..6800134a0 --- /dev/null +++ b/src/Orchard.Web/Core/Common/Views/Body-Large.Editor.cshtml @@ -0,0 +1 @@ +@Html.TextBox("Text", (string)Model.Text, new { @class = "text large" }) \ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/Body-Small.Editor.cshtml b/src/Orchard.Web/Core/Common/Views/Body-Small.Editor.cshtml new file mode 100644 index 000000000..aefdfa835 --- /dev/null +++ b/src/Orchard.Web/Core/Common/Views/Body-Small.Editor.cshtml @@ -0,0 +1 @@ +@Html.TextBox("Text", (string)Model.Text, new { @class = "text text-small" }) \ No newline at end of file diff --git a/src/Orchard.Web/Core/Common/Views/Body-Wide.Editor.cshtml b/src/Orchard.Web/Core/Common/Views/Body-Wide.Editor.cshtml new file mode 100644 index 000000000..4a0065771 --- /dev/null +++ b/src/Orchard.Web/Core/Common/Views/Body-Wide.Editor.cshtml @@ -0,0 +1 @@ +@Html.TextBox("Text", (string)Model.Text, new { @class = "text textMedium" }) \ No newline at end of file diff --git a/src/Orchard.Web/Core/Orchard.Core.csproj b/src/Orchard.Web/Core/Orchard.Core.csproj index 5e13f09cb..a6d54773f 100644 --- a/src/Orchard.Web/Core/Orchard.Core.csproj +++ b/src/Orchard.Web/Core/Orchard.Core.csproj @@ -474,6 +474,15 @@ + + + + + + + + +