diff options
author | chrisaga <chrisaga@piwigo.org> | 2006-04-25 19:14:47 +0000 |
---|---|---|
committer | chrisaga <chrisaga@piwigo.org> | 2006-04-25 19:14:47 +0000 |
commit | 94fd47c416c79fad3f979c55ecbc0bd8d8c75508 (patch) | |
tree | b95e213e19a33b66a94516d6ecc51bf72c43d04b /template/yoga/default-layout.css | |
parent | d772f9025c2569a97359eb60277e64ddb5b769af (diff) |
- fix : bug 353 (radio and date in search.tpl
git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1267 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/default-layout.css | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/template/yoga/default-layout.css b/template/yoga/default-layout.css index b1256e1bc..62cfd7a13 100644 --- a/template/yoga/default-layout.css +++ b/template/yoga/default-layout.css @@ -125,7 +125,8 @@ FORM#cat_modify TABLE { width: auto; } /** * Filter forms are displayed label by label with the input (or select...) - * below the label. Use a SPAN to group objects in a single line. + * below the label. Use an UL to make a group (radiobox for instance). + * Use a SPAN to group objects in line */ FIELDSET { padding: 1em; @@ -133,14 +134,28 @@ FIELDSET { overflow: hidden; /* <- makes Opera happy */ } +FORM.filter FIELDSET UL { + margin: 0; +} +FORM.filter FIELDSET UL, FORM.filter FIELDSET LABEL { display: block; float: left; - width: auto; margin-right: 1em; padding: 0; } -FORM.filter FIELDSET UL LABEL { + +FORM.filter FIELDSET LI { + list-style: none; + margin-bottom: 0.5em; +} + +FORM.filter FIELDSET LI LABEL { + display: inline; + float: none; +} + +FORM.filter FIELDSET UL.tagSelection LABEL { display: inline; float: none; } @@ -154,11 +169,11 @@ FORM.filter FIELDSET LABEL TEXTAREA { margin: 0.5em 0; } FORM.filter FIELDSET * LABEL INPUT, -FORM.filter FIELDSET LABEL * INPUT, FORM.filter FIELDSET * LABEL SELECT, -FORM.filter FIELDSET LABEL * SELECT, FORM.filter FIELDSET * LABEL TEXTAREA, -FORM.filter FIELDSET LABEL * TEXTAREA { +FORM.filter FIELDSET LABEL SPAN INPUT, +FORM.filter FIELDSET LABEL SPAN SELECT, +FORM.filter FIELDSET LABEL SPAN TEXTAREA { display: inline; vertical-align: top; margin: 0 0.5em 0 0; |