diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-23 09:23:08 -0800 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2010-01-23 09:23:08 -0800 |
commit | 06ef3885b30be843a7c86a93f5642680ab881b1c (patch) | |
tree | 15fc27b5ea0b902ac603b5df85e70bd817fb13f2 /modules/gallery/views/form_uploadify.html.php | |
parent | ece403877fa0a8bf385a1c52d7be99b1e2b002f4 (diff) |
Increase the size of the 'select photos' button so that it doesn't wrap and set the size of the underlying flash object.
Diffstat (limited to 'modules/gallery/views/form_uploadify.html.php')
-rw-r--r-- | modules/gallery/views/form_uploadify.html.php | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/modules/gallery/views/form_uploadify.html.php b/modules/gallery/views/form_uploadify.html.php index f3b9c883..b3b81ecb 100644 --- a/modules/gallery/views/form_uploadify.html.php +++ b/modules/gallery/views/form_uploadify.html.php @@ -2,17 +2,21 @@ <style> #g-add-photos-canvas object { height: 33px; - left: -60px; + left: -80px; position: relative; z-index: 100; } +#g-add-photos-canvas span { + height: 33px; + width: 150px; +} #g-add-photos-button { float: left; - left: 175px; + left: 155px; padding-bottom: .5em; padding-top: .5em; position: relative; - width: 110px; + width: 150px; z-index: 1; } </style> @@ -21,6 +25,8 @@ <script type="text/javascript"> $("#g-add-photos-canvas").ready(function () { $("#g-uploadify").uploadify({ + width: 150, + height: 33, uploader: "<?= url::file("lib/uploadify/uploadify.swf") ?>", script: "<?= url::site("simple_uploader/add_photo/{$album->id}") ?>", scriptData: <?= json_encode($script_data) ?>, |