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;
|
padding: 8px;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
background: #e6e6e6;
|
background: #e6e6e6;
|
||||||
margin-top: 8px
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.moduleFeed .item .message .quote {
|
.moduleFeed .item .message .quote {
|
||||||
@ -48,6 +47,7 @@
|
|||||||
|
|
||||||
.moduleFeed .item .message .info {
|
.moduleFeed .item .message .info {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
margin-bottom: 8px
|
||||||
}
|
}
|
||||||
|
|
||||||
.moduleFeed .item .message .info .time {
|
.moduleFeed .item .message .info .time {
|
||||||
|
@ -13,7 +13,9 @@ var ModuleFeed = {
|
|||||||
$('<div/>', {
|
$('<div/>', {
|
||||||
'class': 'info'
|
'class': 'info'
|
||||||
}).append(
|
}).append(
|
||||||
reTwist.userName
|
$('<a/>', {
|
||||||
|
'href': 'follow/' + userName
|
||||||
|
}).append(reTwist.userName)
|
||||||
).append(
|
).append(
|
||||||
$('<span/>', {
|
$('<span/>', {
|
||||||
'class': 'time'
|
'class': 'time'
|
||||||
@ -31,10 +33,14 @@ var ModuleFeed = {
|
|||||||
$('<div/>', {
|
$('<div/>', {
|
||||||
'class': 'avatar'
|
'class': 'avatar'
|
||||||
}).append(
|
}).append(
|
||||||
$('<img/>', {
|
$('<a/>', {
|
||||||
'src': '/api/image?hash=' + userName,
|
'href': 'follow/' + userName
|
||||||
'alt': '',
|
}).append(
|
||||||
})
|
$('<img/>', {
|
||||||
|
'src': '/api/image?hash=' + userName,
|
||||||
|
'alt': '',
|
||||||
|
})
|
||||||
|
)
|
||||||
)
|
)
|
||||||
).append(
|
).append(
|
||||||
$('<div/>', {
|
$('<div/>', {
|
||||||
@ -43,7 +49,9 @@ var ModuleFeed = {
|
|||||||
$('<div/>', {
|
$('<div/>', {
|
||||||
'class': 'info'
|
'class': 'info'
|
||||||
}).append(
|
}).append(
|
||||||
userName
|
$('<a/>', {
|
||||||
|
'href': 'follow/' + userName
|
||||||
|
}).append(userName)
|
||||||
).append(
|
).append(
|
||||||
$('<span/>', {
|
$('<span/>', {
|
||||||
'class': 'time'
|
'class': 'time'
|
||||||
|
Loading…
x
Reference in New Issue
Block a user