From 0f57bfcfe14a471f8a93c0cf6196c9a1deb78b42 Mon Sep 17 00:00:00 2001 From: Michael Dorian Bach Date: Wed, 10 Mar 2010 10:14:48 -0800 Subject: [PATCH] Fixed CSS rendering issue where form styling was affecting theme preview selector --HG-- branch : dev --- src/Orchard.Web/Themes/Contoso/Styles/site.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Orchard.Web/Themes/Contoso/Styles/site.css b/src/Orchard.Web/Themes/Contoso/Styles/site.css index a35cd399b..f1424626a 100644 --- a/src/Orchard.Web/Themes/Contoso/Styles/site.css +++ b/src/Orchard.Web/Themes/Contoso/Styles/site.css @@ -180,6 +180,7 @@ legend { font-weight: bold; font-size:1.2em; } /* Form fields -------------------------------------------------------------- */ + input[type=text], input.text, input.title, textarea, select { @@ -209,9 +210,11 @@ input.checkbox, input.radio { position:relative; top:.25em; } -form.inline { line-height:3; } +/* TODO: Causes form rendering issues with theme preview, had to add line-height: normal */ +form.inline { line-height: normal; } form.inline p { margin-bottom:0; } + /*- Login Control -*/ .login-form { border: solid 1px #e2e2e2; padding: 20px; font-size: 1.2em; font-weight: normal; }