Fix linewrapping on profile-box
This commit is contained in:
parent
2bd6a207ba
commit
0fdf064904
|
@ -26,7 +26,7 @@ html(lang="en")
|
||||||
.alert.alert-danger.center.messagebox
|
.alert.alert-danger.center.messagebox
|
||||||
strong Profile Error
|
strong Profile Error
|
||||||
p= profileError
|
p= profileError
|
||||||
.profile-box(style="position: inherit; z-index: auto;")
|
.profile-box.linewrap(style="position: inherit; z-index: auto;")
|
||||||
img.profile-image(src=profileImage)
|
img.profile-image(src=profileImage)
|
||||||
strong= loginName
|
strong= loginName
|
||||||
p= profileText
|
p= profileText
|
||||||
|
|
|
@ -105,7 +105,7 @@ function formatUserlistItem(div) {
|
||||||
var top = ev.clientY + 5// - name.position().top;
|
var top = ev.clientY + 5// - name.position().top;
|
||||||
var left = ev.clientX;
|
var left = ev.clientX;
|
||||||
profile = $("<div/>")
|
profile = $("<div/>")
|
||||||
.addClass("profile-box")
|
.addClass("profile-box linewrap")
|
||||||
.css("top", top + "px")
|
.css("top", top + "px")
|
||||||
.css("left", left + "px")
|
.css("left", left + "px")
|
||||||
.appendTo(div);
|
.appendTo(div);
|
||||||
|
|
Loading…
Reference in a new issue