aboutsummaryrefslogtreecommitdiffstats
path: root/template/cclear/default-layout.css
diff options
context:
space:
mode:
Diffstat (limited to 'template/cclear/default-layout.css')
-rw-r--r--template/cclear/default-layout.css33
1 files changed, 33 insertions, 0 deletions
diff --git a/template/cclear/default-layout.css b/template/cclear/default-layout.css
index d8af28a93..e15db32c6 100644
--- a/template/cclear/default-layout.css
+++ b/template/cclear/default-layout.css
@@ -176,3 +176,36 @@ form#categoryOrdering ul.categoryActions {
}
form#cat_modify table { width: auto; }
+
+/**
+ * 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>LABEL>INPUT, FORM.filter>FIELDSET>LABEL>SELECT {
+ display: block;
+}
+
+FORM.filter FIELDSET P, FORM.filter FIELDSET>INPUT {
+ clear: left;
+ display: block;
+}
+
+FORM.filter FIELDSET {
+ border: 1px solid gray;
+}
+
+FORM.filter FIELDSET + INPUT {
+ margin-top: 10px;
+}