#kiwi .memberlists ul li a.nick { }
/* The userbox shown when clicking a nick */
-#kiwi .userbox { position:relative; }
+#kiwi .userbox { position:relative; width:100px; }
#kiwi .userbox a { }
-#kiwi .userbox a i { }
+#kiwi .userbox a i { width:1em; text-align:center; }
/* Emoticons */
menubox = new _kiwi.view.MenuBox(member.get('nick') || 'User');
menubox.addItem('userbox', userbox.$el);
+ menu.showFooter(false);
menubox.show();
// Position the userbox + menubox
var menu = new _kiwi.view.MenuBox(member.get('nick') || 'User');
menu.addItem('userbox', userbox.$el);
+ menu.showFooter(false);
menu.show();
// Position the userbox + menubox
t = memberlist_bottom - menu.$el.outerHeight();
}
+ // If the top of the userbox is going to be too high.. lower it
+ if (t < 0){
+ t = 0;
+ }
+
// If the right of the userbox is going off screen.. bring it in
if (m_right > memberlist_right){
l = memberlist_right - menu.$el.outerWidth();