mirror of
https://github.com/twisterarmy/cloud-server.git
synced 2025-09-11 13:22:12 +00:00
make profiles clickable, fix paddings
This commit is contained in:
parent
7cbe0a2f79
commit
8de37a244f
@ -39,7 +39,6 @@
|
||||
padding: 8px;
|
||||
border-radius: 3px;
|
||||
background: #e6e6e6;
|
||||
margin-top: 8px
|
||||
}
|
||||
|
||||
.moduleFeed .item .message .quote {
|
||||
@ -48,6 +47,7 @@
|
||||
|
||||
.moduleFeed .item .message .info {
|
||||
font-weight: bold;
|
||||
margin-bottom: 8px
|
||||
}
|
||||
|
||||
.moduleFeed .item .message .info .time {
|
||||
|
@ -13,7 +13,9 @@ var ModuleFeed = {
|
||||
$('<div/>', {
|
||||
'class': 'info'
|
||||
}).append(
|
||||
reTwist.userName
|
||||
$('<a/>', {
|
||||
'href': 'follow/' + userName
|
||||
}).append(reTwist.userName)
|
||||
).append(
|
||||
$('<span/>', {
|
||||
'class': 'time'
|
||||
@ -31,10 +33,14 @@ var ModuleFeed = {
|
||||
$('<div/>', {
|
||||
'class': 'avatar'
|
||||
}).append(
|
||||
$('<img/>', {
|
||||
'src': '/api/image?hash=' + userName,
|
||||
'alt': '',
|
||||
})
|
||||
$('<a/>', {
|
||||
'href': 'follow/' + userName
|
||||
}).append(
|
||||
$('<img/>', {
|
||||
'src': '/api/image?hash=' + userName,
|
||||
'alt': '',
|
||||
})
|
||||
)
|
||||
)
|
||||
).append(
|
||||
$('<div/>', {
|
||||
@ -43,7 +49,9 @@ var ModuleFeed = {
|
||||
$('<div/>', {
|
||||
'class': 'info'
|
||||
}).append(
|
||||
userName
|
||||
$('<a/>', {
|
||||
'href': 'follow/' + userName
|
||||
}).append(userName)
|
||||
).append(
|
||||
$('<span/>', {
|
||||
'class': 'time'
|
||||
|
Loading…
x
Reference in New Issue
Block a user