mirror of
https://github.com/pierre42100/ComunicWeb
synced 2024-11-26 05:49:22 +00:00
Friends list correctly shown
This commit is contained in:
parent
21f8301d45
commit
4010ce9cbf
@ -3,3 +3,34 @@
|
|||||||
*
|
*
|
||||||
* @author Pierre HUBERT
|
* @author Pierre HUBERT
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
.friends-list-ro .friend {
|
||||||
|
display: inline-block;
|
||||||
|
width: 170px;
|
||||||
|
max-width: 100%;
|
||||||
|
margin: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.friends-list-ro .friend a {
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.friends-list-ro .friend a:hover {
|
||||||
|
color: #001F3F;
|
||||||
|
}
|
||||||
|
|
||||||
|
.friends-list-ro .friend img {
|
||||||
|
margin: auto 10px auto auto;
|
||||||
|
max-width: 40px;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 50%;
|
||||||
|
visibility: visible;
|
||||||
|
}
|
||||||
|
|
||||||
|
.friends-list-ro .friend .friends-name {
|
||||||
|
display: inline-block;
|
||||||
|
white-space: normal;
|
||||||
|
max-width: 100px;
|
||||||
|
text-align: left;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
@ -198,7 +198,7 @@ ComunicWeb.components.friends.listModal = {
|
|||||||
//Add users name
|
//Add users name
|
||||||
createElem2({
|
createElem2({
|
||||||
appendTo: userLink,
|
appendTo: userLink,
|
||||||
type: "span",
|
type: "div",
|
||||||
class: "friends-name",
|
class: "friends-name",
|
||||||
innerHTML: userFullName(users["user-" + id])
|
innerHTML: userFullName(users["user-" + id])
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user