diff options
author | Cash Costello <cash.costello@gmail.com> | 2009-08-23 22:17:23 +0000 |
---|---|---|
committer | Cash Costello <cash.costello@gmail.com> | 2009-08-23 22:17:23 +0000 |
commit | a2c5023bed6a515270d23efeb097b613bb978ffb (patch) | |
tree | de3642ee9c5a40194772589fd83902ce36599151 /views/default/tidypics | |
parent | 6dece54ca3973b9d6f69ef53ea358723ba74684b (diff) | |
download | elgg-a2c5023bed6a515270d23efeb097b613bb978ffb.tar.gz elgg-a2c5023bed6a515270d23efeb097b613bb978ffb.tar.bz2 |
improved the css of the popups for tagging
Diffstat (limited to 'views/default/tidypics')
-rw-r--r-- | views/default/tidypics/css.php | 10 | ||||
-rw-r--r-- | views/default/tidypics/tagging.php | 4 |
2 files changed, 11 insertions, 3 deletions
diff --git a/views/default/tidypics/css.php b/views/default/tidypics/css.php index f95bc1d58..a614705bf 100644 --- a/views/default/tidypics/css.php +++ b/views/default/tidypics/css.php @@ -194,6 +194,8 @@ display:none; overflow:hidden; position:absolute; z-index:10000; +-webkit-border-radius: 8px; +-moz-border-radius: 8px; } #tidypics_tag_instruct_text { @@ -214,13 +216,16 @@ margin:0; width:240px; max-height:400px; overflow:hidden; +-webkit-border-radius: 8px; +-moz-border-radius: 8px; } -#tidypics_tagmenu_header { +#tidypics_popup_header { width:100%; margin-bottom:10px; } + #tidypics_tagmenu_left { width:175px; float:left; @@ -235,6 +240,9 @@ margin-top:2px; } #tidypics_delete_tag_menu { +-webkit-border-radius: 8px; +-moz-border-radius: 8px; +overflow:hidden; } .tidypics_tag { diff --git a/views/default/tidypics/tagging.php b/views/default/tidypics/tagging.php index a3ba57cf8..f911fe217 100644 --- a/views/default/tidypics/tagging.php +++ b/views/default/tidypics/tagging.php @@ -27,7 +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>
+ <div id='tidypics_popup_header'><h3><?php echo elgg_echo('tidypics:tagthisphoto'); ?></h3></div>
<?php
if($viewer) {
@@ -64,9 +64,9 @@ ?>
</div>
<div id="tidypics_delete_tag_menu" class="tidypics_popup">
+<div id='tidypics_popup_header'><h3><?php echo elgg_echo('tidypics:deltag_title'); ?></h3></div>
<?php
if ($photo_tags) {
- echo elgg_echo('tidypics:deltag_title') . '<br />';
$content = "<input type='hidden' name='image_guid' value='{$file_guid}' />";
foreach ($links as $id => $text) {
$name = "tags[{$id}]";
|