diff options
author | plegall <plg@piwigo.org> | 2014-06-17 11:11:44 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2014-06-17 11:11:44 +0000 |
commit | 6f8caf22ba22395b0e038989bfdc2726cc4c2342 (patch) | |
tree | eb8f98932f9707adddf23d75d06b6c7f61cc5a71 /themes/default/theme.css | |
parent | 583af81d3d23ab0e3692dd7bb4a36314deab5994 (diff) |
feature 3093: search form, ability to select the list of properties on which
the search terms applies.
feature 3094: minor redesign on search form.
git-svn-id: http://piwigo.org/svn/trunk@28709 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/theme.css')
-rw-r--r-- | themes/default/theme.css | 32 |
1 files changed, 29 insertions, 3 deletions
diff --git a/themes/default/theme.css b/themes/default/theme.css index bbf5e4091..ab298ecb3 100644 --- a/themes/default/theme.css +++ b/themes/default/theme.css @@ -509,8 +509,7 @@ FIELDSET { margin: 1em; } -.filter UL, -.filter LABEL { +.filter UL { display: block; float: left; margin-right: 1em; @@ -522,15 +521,42 @@ FIELDSET { margin-bottom: 0.5em; } +.filter FIELDSET { + padding-bottom:0; +} + .filter LI LABEL { display: inline; float: none; } +.filter P { + text-align:left; + margin:0 0 15px 0; + line-height:20px; +} + +.filter input[name="search_allwords"] { + width:500px; +} + +.filter P input[type="checkbox"], .filter P input[type="radio"] { + vertical-align:middle; + margin-top:-4px; +} + +.filter input[type="submit"] { + margin-left:1em; +} + +.filter P LABEL { + margin-right:1em; +} + /*IE6 needs override because of > selector*/ .filter LABEL>INPUT, .filter LABEL>SELECT { - display: block; + /* display: block; */ margin: 0.5em 0; } |