diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-31 14:27:31 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2010-03-31 14:27:31 +0200 |
commit | 53865e7411fa0528093cbfa5f4ba7591e71f2ef8 (patch) | |
tree | 11f463c460755c96700e0feba5e68e31052c9195 /module/web/media/default | |
parent | freespace for windows (diff) | |
download | pyload-53865e7411fa0528093cbfa5f4ba7591e71f2ef8.tar.xz |
parser fix
Diffstat (limited to 'module/web/media/default')
-rw-r--r-- | module/web/media/default/css/default.css | 69 |
1 files changed, 67 insertions, 2 deletions
diff --git a/module/web/media/default/css/default.css b/module/web/media/default/css/default.css index 24bb9febf..398cb03b6 100644 --- a/module/web/media/default/css/default.css +++ b/module/web/media/default/css/default.css @@ -1227,12 +1227,13 @@ label.simple { label.block input.edit {
width:50%;
}
-fieldset {
+/*fieldset {
width:300px;
text-align:center;
padding:0.5em;
margin:auto;
}
+*/
div.editor {
margin:0 0 0 0;
}
@@ -1513,4 +1514,68 @@ div.codearea pre span.Preprc { .header, .header th{
text-align: left;
font-weight: normal;
-}
\ No newline at end of file +}
+
+#horizontalForm fieldset
+{
+ display: block;
+ margin: 0 0 3em 0;
+ padding: 0 1em 1em 1em;
+}
+
+#horizontalForm fieldset.radio
+{
+ margin: 1em 0 2em 0;
+}
+
+#horizontalForm fieldset.radio input
+{
+ clear: both;
+ float: left;
+ width: auto;
+}
+
+#horizontalForm fieldset.radio label
+{
+ font-weight: normal;
+}
+
+#horizontalForm input
+{
+ display: block;
+ width: 15em;
+}
+
+#horizontalForm input.submit
+{
+ clear: both;
+}
+
+#horizontalForm label
+{
+ float: left;
+ display: block;
+ margin: 1em 1em 0 0;
+ font-weight: bold;
+}
+
+#horizontalForm select
+{
+ display: block;
+}
+
+.clearer
+{
+ clear: both;
+ height: 1px;
+}
+
+.left
+{
+ float: left;
+}
+
+.right
+{
+ float: right;
+}
|