diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-23 21:39:45 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-23 21:39:45 +0000 |
commit | 6dece54ca3973b9d6f69ef53ea358723ba74684b (patch) | |
tree | fb8ec4be25de9591af0fe44dbc1be1304b9f1ffd /views/default | |
parent | a69e45f03359ae0d94697d5cc48c4c29cd213cd8 (diff) | |
download | elgg-6dece54ca3973b9d6f69ef53ea358723ba74684b.tar.gz elgg-6dece54ca3973b9d6f69ef53ea358723ba74684b.tar.bz2 |
lined up the tag button with the text box on the tag menu pop-up for multiple browsers
Diffstat (limited to 'views/default')
-rw-r--r-- | views/default/js/tagging.php | 1 | ||||
-rw-r--r-- | views/default/tidypics/css.php | 10 | ||||
-rw-r--r-- | views/default/tidypics/tagging.php | 1 |
3 files changed, 10 insertions, 2 deletions
diff --git a/views/default/js/tagging.php b/views/default/js/tagging.php index 59214db9b..11f195783 100644 --- a/views/default/js/tagging.php +++ b/views/default/js/tagging.php @@ -17,7 +17,6 @@ attached: 'ul#tidypics_phototag_list',
loaderText: '',
inputClass: 'input-filter',
- labelText: "<p><?php echo elgg_echo('tidypics:tagthisphoto'); ?></p>",
delay: 100
});
diff --git a/views/default/tidypics/css.php b/views/default/tidypics/css.php index c86618cff..f95bc1d58 100644 --- a/views/default/tidypics/css.php +++ b/views/default/tidypics/css.php @@ -216,6 +216,11 @@ max-height:400px; overflow:hidden; } +#tidypics_tagmenu_header { +width:100%; +margin-bottom:10px; +} + #tidypics_tagmenu_left { width:175px; float:left; @@ -223,7 +228,10 @@ float:left; #tidypics_tagmenu_right { float:left; -margin-top:23px; +} + +#tidypics_tagmenu_right .submit_button { +margin-top:2px; } #tidypics_delete_tag_menu { diff --git a/views/default/tidypics/tagging.php b/views/default/tidypics/tagging.php index dffa834ec..a3ba57cf8 100644 --- a/views/default/tidypics/tagging.php +++ b/views/default/tidypics/tagging.php @@ -27,6 +27,7 @@ <div id='tidypics_tag_instruct_button_div'><button class='submit_button' id='tidypics_tag_instruct_button' onclick='stopTagging()'><?php echo elgg_echo('tidypics:finish_tagging'); ?></button></div>
</div>
<div id="tidypics_tag_menu" class="tidypics_popup">
+ <div id='tidypics_tagmenu_header'><h3><?php echo elgg_echo('tidypics:tagthisphoto'); ?></h3></div>
<?php
if($viewer) {
|