diff options
author | Bharat Mediratta <bharat@menalto.com> | 2012-10-08 14:51:15 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2012-10-08 14:51:15 -0700 |
commit | 10c2ea408bf261e8de6a11c413286285d5c5bed4 (patch) | |
tree | eaccf308ae7a9434a543af718d5b5c9001b412cb | |
parent | 304d8ce2ac1094a8528dad127a5958f7c57acc84 (diff) | |
parent | d8dce1e3e5bd6ed3976222fed2063b96f0569bc9 (diff) |
Merge pull request #73 from epeay/master
[#1875] Active area of upload photo button less than 40% of text area only - not button
-rw-r--r-- | modules/gallery/css/gallery.css | 1 | ||||
-rw-r--r-- | modules/gallery/views/form_uploadify.html.php | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/modules/gallery/css/gallery.css b/modules/gallery/css/gallery.css index ecf89565..9d773699 100644 --- a/modules/gallery/css/gallery.css +++ b/modules/gallery/css/gallery.css @@ -39,6 +39,7 @@ #g-add-photos-canvas object { z-index: 100; + padding: 0em; } #g-add-photos-canvas .uploadifyQueue { diff --git a/modules/gallery/views/form_uploadify.html.php b/modules/gallery/views/form_uploadify.html.php index 22332e82..c1f985c3 100644 --- a/modules/gallery/views/form_uploadify.html.php +++ b/modules/gallery/views/form_uploadify.html.php @@ -23,8 +23,8 @@ if (swfobject.hasFlashPlayerVersion("<?= $flash_minimum_version ?>")) { $("#g-uploadify").uploadify({ - width: 150, - height: 33, + width: 298, + height: 32, uploader: "<?= url::file("lib/uploadify/uploadify.swf") ?>", script: "<?= url::site("uploader/add_photo/{$album->id}") ?>", scriptData: <?= json_encode($script_data) ?>, |