]> git.mxchange.org Git - friendica-addons.git/blobdiff - widgets/widget_friends.php
Merge remote-tracking branch 'friendica/master'
[friendica-addons.git] / widgets / widget_friends.php
old mode 100644 (file)
new mode 100755 (executable)
index 2286f68..195667e
@@ -11,6 +11,11 @@ function friends_widget_args(){
        return Array();
 }
 
+function friends_widget_size(){
+       return Array('100%','200px');
+}
+
+
 function friends_widget_content(&$a, $conf){
 
        $r = q("SELECT `profile`.`uid` AS `profile_uid`, `profile`.* , `user`.* FROM `profile` 
@@ -23,10 +28,15 @@ function friends_widget_content(&$a, $conf){
 
        $o = "";
        $o .= "<style>
-               .f9k_widget .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
-               .f9k_widget #contact-block-end { clear: left; }
+               body {font-size: 0.8em; margin: 0px; padding: 0px;}
+               #contact-block { overflow: hidden; height: auto; }
+               .contact-block-h4 { float: left; margin: 0px; }
+               .allcontact-link { float: right; margin: 0px; }
+               .contact-block-content { clear:both; }
+               .contact-block-div { display: block !important; float: left!important; width: 50px!important; height: 50px!important; margin: 2px!important;}
+               
        </style>";
        $o .= _abs_url(contact_block());
-       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". t('Connect on Friendika!') ."</a>";
+       $o .= "<a href='".$a->get_baseurl().'/profile/'.$a->profile['nickname']."'>". t('Connect on Friendica!') ."</a>";
        return $o;
 }