diff options
author | plegall <plg@piwigo.org> | 2010-03-18 11:08:53 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-18 11:08:53 +0000 |
commit | b398e3f33adf18e4a2ed79be880b774dde47ffa9 (patch) | |
tree | 19f31e50c9ed3ea28b81ece2a0a77c90fc785c5f /admin/themes/default/template | |
parent | cd00dffa7210a16063ab8e8f7811929b75f9a8e8 (diff) |
make the fieldset labels easier to read (no italic, increased letter spacing,
bold)
make the fiedset border softer
photos_add 2 screens comply with the fieldset system instead of specific
formField divs.
git-svn-id: http://piwigo.org/svn/trunk@5174 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template')
-rw-r--r-- | admin/themes/default/template/photos_add_direct.tpl | 24 | ||||
-rw-r--r-- | admin/themes/default/template/photos_add_settings.tpl | 16 |
2 files changed, 24 insertions, 16 deletions
diff --git a/admin/themes/default/template/photos_add_direct.tpl b/admin/themes/default/template/photos_add_direct.tpl index 9f59c11a7..970bdf96c 100644 --- a/admin/themes/default/template/photos_add_direct.tpl +++ b/admin/themes/default/template/photos_add_direct.tpl @@ -75,6 +75,8 @@ jQuery(document).ready(function() { <h2>{'Upload photos'|@translate}</h2> </div> +<div id="photosAddContent"> + {if count($setup_errors) > 0} <div class="errors"> <ul> @@ -105,8 +107,8 @@ jQuery(document).ready(function() { <input name="upload_id" value="{$upload_id}" type="hidden"> {/if} - <div class="formField"> - <div class="formFieldTitle">{'Drop into category'|@translate}</div> + <fieldset> + <legend>{'Drop into category'|@translate}</legend> <label><input type="radio" name="category_type" value="existing"> {'existing category'|@translate}</label> <label><input type="radio" name="category_type" value="new" checked="checked"> {'create a new category'|@translate}</label> @@ -136,18 +138,18 @@ jQuery(document).ready(function() { </tr> </table> </div> - </div> + </fieldset> - <div class="formField"> - <div class="formFieldTitle">{'Who can see these photos?'|@translate}</div> + <fieldset> + <legend>{'Who can see these photos?'|@translate}</legend> <select name="level" size="1"> {html_options options=$level_options selected=$level_options_selected} </select> - </div> + </fieldset> - <div class="formField"> - <div class="formFieldTitle">{'Select files'|@translate}</div> + <fieldset> + <legend>{'Select files'|@translate}</legend> {if $upload_mode eq 'html'} <p><a href="{$switch_url}">{'... or switch to the multiple files form'|@translate}</a></p> @@ -159,7 +161,7 @@ jQuery(document).ready(function() { <a href="javascript:">{'+ Add an upload box'|@translate}</a> </div> - </div> <!-- formField --> + </fieldset> <p> <input class="submit" type="submit" name="submit_upload" value="{'Upload'|@translate}" {$TAG_INPUT_ENABLED}/> @@ -175,7 +177,7 @@ jQuery(document).ready(function() { <div id="fileQueue"></div> - </div> <!-- formField --> + </fieldset> <p> <input class="submit" type="button" value="{'Upload'|@translate}" onclick="javascript:jQuery('#uploadify').uploadifyUpload()"/> <input type="submit" name="submit_upload" style="display:none"/> @@ -183,3 +185,5 @@ jQuery(document).ready(function() { {/if} </form> {/if} + +</div> <!-- photosAddContent -->
\ No newline at end of file diff --git a/admin/themes/default/template/photos_add_settings.tpl b/admin/themes/default/template/photos_add_settings.tpl index 10e4633dd..856585404 100644 --- a/admin/themes/default/template/photos_add_settings.tpl +++ b/admin/themes/default/template/photos_add_settings.tpl @@ -23,10 +23,12 @@ $(document).ready(function(){ <h2>{'Upload Photos'|@translate}</h2> </div> +<div id="photosAddContent"> + <form id="uploadFormSettings" enctype="multipart/form-data" method="post" action="{$F_ACTION}" class="properties"> - <div class="formField"> - <div class="formFieldTitle">{'Web size photo'|@translate}</div> + <fieldset> + <legend>{'Web size photo'|@translate}</legend> <table> <tr> @@ -46,10 +48,10 @@ $(document).ready(function(){ <td><input type="text" name="websize_quality" value="{$values.websize_quality}" size="3" maxlength="3"> %</td> </tr> </table> - </div> + </fieldset> - <div class="formField"> - <div class="formFieldTitle">{'Thumbnail'|@translate}</div> + <fieldset> + <legend>{'Thumbnail'|@translate}</legend> <table> <tr> @@ -65,10 +67,12 @@ $(document).ready(function(){ <td><input type="text" name="thumb_quality" value="{$values.thumb_quality}" size="3" maxlength="3"> %</td> </tr> </table> - </div> + </fieldset> <p> <input class="submit" type="submit" name="submit" value="{'Save Settings'|@translate}"/> </p> </form> + +</div> <!-- photosAddContent -->
\ No newline at end of file |