]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
removed uses of CSS class .right from plugins
authorCash Costello <cash.costello@gmail.com>
Sun, 6 Nov 2011 22:51:59 +0000 (17:51 -0500)
committerCash Costello <cash.costello@gmail.com>
Sun, 6 Nov 2011 22:51:59 +0000 (17:51 -0500)
mod/embed/views/default/js/embed/embed.php
mod/likes/views/default/annotation/likes.php
mod/messages/views/default/object/messages.php
mod/thewire/views/default/thewire/profile_status.php
mod/twitter_api/views/default/forms/twitter_api/interstitial_settings.php

index 8e543ac37af6dc0b4df4137fe5a3081de63d6dd7..8a8f0290c4d9fe6156bd8129832dc703a86ababc 100644 (file)
@@ -41,10 +41,9 @@ elgg.embed.insert = function(event) {
        
 <?php
 // See the TinyMCE plugin for an example of this view
- echo elgg_view('embed/custom_insert_js');
+echo elgg_view('embed/custom_insert_js');
 ?>
 
-
        $.fancybox.close();
 
        event.preventDefault();
index 314d0790d1a0666995df0da835d494dcd6a8c0d3..d41522fc4b4f1836808d7323fbaa45ecafc0ddf9 100644 (file)
@@ -30,7 +30,7 @@ $friendlytime = elgg_view_friendly_time($like->time_created);
 if ($like->canEdit()) {
        $delete_button = elgg_view("output/confirmlink",array(
                                                'href' => "action/likes/delete?annotation_id={$like->id}",
-                                               'text' => "<span class=\"elgg-icon elgg-icon-delete right\"></span>",
+                                               'text' => "<span class=\"elgg-icon elgg-icon-delete float-alt\"></span>",
                                                'confirm' => elgg_echo('deleteconfirm'),
                                                'encode_text' => false,
                                        ));
index e8e745e94a4c3731fd8dcb45e3920dbc439b64d6..b12f98522ecd26fb5dc21b1b05dc7c4b6eb3880c 100644 (file)
@@ -66,7 +66,7 @@ $subject_info .= elgg_view('output/url', array(
 
 $delete_link = elgg_view("output/confirmlink", array(
                                                'href' => "action/messages/delete?guid=" . $message->getGUID(),
-                                               'text' => "<span class=\"elgg-icon elgg-icon-delete right\"></span>",
+                                               'text' => "<span class=\"elgg-icon elgg-icon-delete float-alt\"></span>",
                                                'confirm' => elgg_echo('deleteconfirm'),
                                                'encode_text' => false,
                                        ));
index ab20b534138f2ea0174812189c20a0c66a687b8f..b5d9dbd804a595dadc3a4c47deb8591883fe643a 100644 (file)
@@ -27,7 +27,7 @@ if ($latest_wire && count($latest_wire) > 0) {
                $button = elgg_view('output/url', array(
                        'text' => elgg_echo('thewire:update'),
                        'href' => $url_to_wire,
-                       'class' => 'elgg-button elgg-button-action right',
+                       'class' => 'elgg-button elgg-button-action float-alt',
                        'is_trusted' => true,
                ));
        }
index 2592013c6d35656b7c2d7e14140fc40e0f40fdad..cad2be345082e86f921648f0b349a59206191ebd 100644 (file)
@@ -55,7 +55,7 @@ echo elgg_view('input/submit', array(
 ));
 
 echo elgg_view('output/url', array(
-       'class' => 'right',
+       'class' => 'float-alt',
        'text' => elgg_echo('twitter_api:interstitial:no_thanks'),
        'href' => '/',
        'is_trusted' => true,