Fixed CSS rendering issue where form styling was affecting theme preview selector

--HG--
branch : dev
This commit is contained in:
Michael Dorian Bach
2010-03-10 10:14:48 -08:00
parent e065d5053c
commit 0f57bfcfe1

View File

@@ -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; }