We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4804f7 commit a8c12d0Copy full SHA for a8c12d0
1 file changed
public/js/index.js
@@ -2663,9 +2663,10 @@ function renderUserStatusList(list) {
2663
var usericon = $(item.elm).find('.ui-user-icon');
2664
if (item.values().login && item.values().photo) {
2665
usericon.css('background-image', 'url(' + item.values().photo + ')');
2666
- usericon.css('box-shadow', '0px 0px 2px ' + item.values().color);
2667
//add 1px more to right, make it feel aligned
2668
usericon.css('margin-right', '6px');
+ $(item.elm).css('border-left', '4px solid ' + item.values().color);
2669
+ usericon.css('margin-left', '-4px');
2670
} else {
2671
usericon.css('background-color', item.values().color);
2672
}
0 commit comments