mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
Fixed CSS rendering issue where form styling was affecting theme preview selector
--HG-- branch : dev
This commit is contained in:
@@ -180,6 +180,7 @@ legend { font-weight: bold; font-size:1.2em; }
|
|||||||
/* Form fields
|
/* Form fields
|
||||||
-------------------------------------------------------------- */
|
-------------------------------------------------------------- */
|
||||||
|
|
||||||
|
|
||||||
input[type=text],
|
input[type=text],
|
||||||
input.text, input.title,
|
input.text, input.title,
|
||||||
textarea, select {
|
textarea, select {
|
||||||
@@ -209,9 +210,11 @@ input.checkbox, input.radio {
|
|||||||
position:relative; top:.25em;
|
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; }
|
form.inline p { margin-bottom:0; }
|
||||||
|
|
||||||
|
|
||||||
/*- Login Control -*/
|
/*- Login Control -*/
|
||||||
|
|
||||||
.login-form { border: solid 1px #e2e2e2; padding: 20px; font-size: 1.2em; font-weight: normal; }
|
.login-form { border: solid 1px #e2e2e2; padding: 20px; font-size: 1.2em; font-weight: normal; }
|
||||||
|
|||||||
Reference in New Issue
Block a user