diff options
author | Jakob Hilden <jhild@umich.edu> | 2009-03-20 17:22:12 +0000 |
---|---|---|
committer | Jakob Hilden <jhild@umich.edu> | 2009-03-20 17:22:12 +0000 |
commit | 6fc195213410374a967dc6bf483fb9a7f63ff3ae (patch) | |
tree | 0dc5a7372394a50dc49ec23d1969fb560dfcdc63 | |
parent | 863e353911c5bab59e4bd6e9d0d70f79bcf37e46 (diff) |
minor UI and CSS improvements
(the styling of the flash button is a not themable solution and I put the CSS in the file for now)
-rw-r--r-- | core/views/simple_uploader.html.php | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/core/views/simple_uploader.html.php b/core/views/simple_uploader.html.php index 05a8abc3..246e59b2 100644 --- a/core/views/simple_uploader.html.php +++ b/core/views/simple_uploader.html.php @@ -21,11 +21,11 @@ </ul> <p><?= t("Upload Queue") ?></p> - <div id="gAddPhotosCanvas"> + <div id="gAddPhotosCanvas" style="text-align: center;"> <div id="gAddPhotosQueue"></div> <div id="gEditPhotosQueue"></div> + <span id="gChooseFilesButtonPlaceholder"></span> </div> - <span id="gChooseFilesButtonPlaceholder"></span> <button id="gUploadCancel" class="ui-state-default ui-corner-all" type="button" onclick="swfu.cancelQueue();" disabled="disabled"> @@ -38,6 +38,29 @@ </button> </div> +<style> + #SWFUpload_0 { + margin-top: 100px; + } + #gAddPhotos .gBreadcrumbs { + border: 0; + margin: 0; + padding-left:10px; + } + #gAddPhotosCanvas { + border: 1px solid #CCCCCC; + margin: .5em 0 .5em 0; + width: 469px; + } + #gAddPhotos button { + margin-bottom: .5em; + float: right; + } + #gAddPhotos #gUploadCancel { + float: left; + } +</style> + <script type="text/javascript"> var swfu = new SWFUpload({ flash_url : "<?= url::file("lib/swfupload/swfupload.swf") ?>", @@ -56,14 +79,14 @@ debug: false, // Button settings - // button_image_url: "...", - button_width: "130", - button_height: "29", + button_image_url: "<?= url::file("themes/default/images/select-photos-backg.png") ?>", + button_width: "202", + button_height: "45", button_placeholder_id: "gChooseFilesButtonPlaceholder", button_text: '<span class="swfUploadFont">Select photos...</span>', - button_text_style: ".swfUploadFont { font-size: 16; font-family: Arial; }", - button_text_left_padding: 12, - button_text_top_padding: 3, + button_text_style: ".swfUploadFont { color: #2E6E9E; font-size: 16px; font-family: Lucida Grande,Lucida Sans,Arial,sans-serif; font-weight: bold; }", + button_text_left_padding: 30, + button_text_top_padding: 10, // The event handler functions are defined in handlers.js file_queued_handler : file_queued, |