diff options
author | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-03 05:27:47 +0000 |
---|---|---|
committer | ewinslow <ewinslow@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-11-03 05:27:47 +0000 |
commit | 5170cc2b677a9d521dbc2176c6bb1f25efbbc785 (patch) | |
tree | 05233623823df1dda4ee9202fb3b11215a281ee7 /mod/profile | |
parent | 037148770b5bc8c8682d8c992f9fbf490d608a48 (diff) | |
download | elgg-5170cc2b677a9d521dbc2176c6bb1f25efbbc785.tar.gz elgg-5170cc2b677a9d521dbc2176c6bb1f25efbbc785.tar.bz2 |
Fixes #2440: Converted clearfloat to clearfix, brought back orig clearfloat
git-svn-id: http://code.elgg.org/elgg/trunk@7223 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile')
3 files changed, 4 insertions, 4 deletions
diff --git a/mod/profile/views/default/profile/admin_menu.php b/mod/profile/views/default/profile/admin_menu.php index 434da5a74..99ed3a4f5 100755 --- a/mod/profile/views/default/profile/admin_menu.php +++ b/mod/profile/views/default/profile/admin_menu.php @@ -12,7 +12,7 @@ if (isadminloggedin()){ $token = generate_action_token($ts); ?> -<div class="owner_block_links clearfloat"> +<div class="owner_block_links clearfix"> <ul class="admin_menu"> <li><a href="#" onclick="elgg_slide_toggle(this,'.owner_block_links','.admin_menu_options');">Admin options…</a> diff --git a/mod/profile/views/default/profile/commentwall/commentwall_content.php b/mod/profile/views/default/profile/commentwall/commentwall_content.php index c334e33d8..15cb2584e 100644 --- a/mod/profile/views/default/profile/commentwall/commentwall_content.php +++ b/mod/profile/views/default/profile/commentwall/commentwall_content.php @@ -3,7 +3,7 @@ * Elgg Message board individual item display page */ ?> -<div class="entity_listing clearfloat"> +<div class="entity_listing clearfix"> <!-- display the user icon of the user that posted the message --> <div class="entity_listing_icon"> <?php diff --git a/mod/profile/views/default/profile/profile_ownerblock.php b/mod/profile/views/default/profile/profile_ownerblock.php index f80f54cc2..fd3ff6b11 100755 --- a/mod/profile/views/default/profile/profile_ownerblock.php +++ b/mod/profile/views/default/profile/profile_ownerblock.php @@ -29,7 +29,7 @@ if ($section == 'details') { $icon_class = "large"; } else { $icon = elgg_view("profile/icon",array('entity' => $user, 'size' => 'small')); - $more_info = "<div class='owner_block_contents clearfloat'>"; + $more_info = "<div class='owner_block_contents clearfix'>"; $more_info .= "<h3><a href='{$url}'>{$user->name}</a></h3>"; $more_info .= "<p class='profile_info briefdescription'>{$user->briefdescription}</p>"; $more_info .= "<p class='profile_info location'>{$location}</p>"; @@ -37,7 +37,7 @@ if ($section == 'details') { } $profile_actions = ""; if (isloggedin() && (get_loggedin_userid() == elgg_get_page_owner_guid())) { - $profile_actions = "<div class='clearfloat profile_actions'>"; + $profile_actions = "<div class='clearfix profile_actions'>"; $profile_actions .= "<a href='".elgg_get_site_url()."pg/profile/{$user->username}/edit/details' class='action_button'>". elgg_echo('profile:edit') ."</a>"; $profile_actions .= "<a href='".elgg_get_site_url()."pg/profile/{$user->username}/edit/icon' class='action_button'>". elgg_echo('profile:editicon') ."</a>"; $profile_actions .= "</div>"; |