background-color: white;
width: 730px;
min-height:400px;
- -webkit-border-radius: 12px;
- -moz-border-radius: 12px;
+ -webkit-border-radius: 8px;
+ -moz-border-radius: 8px;
}
#facebox .loading {
text-align: center;
* @uses string $vars['content'] Pre-formatted content.
*
*/
+$active_section = elgg_get_array_value('section', $vars, array());
-$content = elgg_get_array_value('content', $vars, '');
+$content = "<div class='embed_modal_".$active_section."'>" . elgg_get_array_value('content', $vars, '') . "</div>";
echo $content;
\ No newline at end of file
* @uses string $vars['content'] Pre-formatted content.
*
*/
+$active_section = elgg_get_array_value('section', $vars, array());
-$content = elgg_get_array_value('content', $vars, '');
+$content = "<div class='embed_modal_" . $active_section . "'>" . elgg_get_array_value('content', $vars, '') . "</div>";
echo $content;
\ No newline at end of file
'value' => $active_section
));
+ echo "<div class='embed_modal_upload'>";
echo "<p>$input</p>";
if (!$upload_content = elgg_view($upload_sections[$active_section]['view'])) {
$upload_content = elgg_echo('embed:no_upload_content');
}
- echo $upload_content;
+ echo $upload_content . "</div>";
?>
<script type="text/javascript">