aboutsummaryrefslogtreecommitdiffstats
path: root/template/default/default.css
diff options
context:
space:
mode:
Diffstat (limited to 'template/default/default.css')
-rw-r--r--template/default/default.css34
1 files changed, 33 insertions, 1 deletions
diff --git a/template/default/default.css b/template/default/default.css
index 2b5ed28fc..e8e63c8a5 100644
--- a/template/default/default.css
+++ b/template/default/default.css
@@ -412,4 +412,36 @@ label:hover {
margin: 5px;
border:1px solid gray;
padding: 10px 50px 10px 10px;
-} \ No newline at end of file
+}
+
+/**
+ * Filter forms are displayed label by label with the input (or select...)
+ * below the label
+ */
+form.filter FIELDSET {
+ padding: 10px;
+}
+
+form.filter FIELDSET LABEL {
+ display: block;
+ float: left;
+ width: auto;
+ margin-right: 10px;
+ padding: 0;
+}
+
+form.filter FIELDSET INPUT, form.filter FIELDSET SELECT {
+ display: block;
+}
+
+form.filter FIELDSET P {
+ clear: left;
+}
+
+form.filter FIELDSET {
+ border: 1px solid gray;
+}
+
+form.filter FIELDSET + INPUT {
+ margin-top: 10px;
+}