aboutsummaryrefslogtreecommitdiffstats
path: root/template/default/default.css
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2005-06-21 21:08:11 +0000
committerplegall <plg@piwigo.org>2005-06-21 21:08:11 +0000
commit49fb2b6fd30bf4830c344ca93c64e2ecd92d2dff (patch)
tree63875a998bd9009384e721f89f363c02e083a07e /template/default/default.css
parentcc20eaf128d0d1c39aea9fee46d6519be2d55b95 (diff)
- comments page rewritten : comments are displayed one by one, with filters
and display options available. The list of comments is paginated. git-svn-id: http://piwigo.org/svn/trunk@796 68402e56-0260-453c-a942-63ccdbb3a9ee
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;
+}