Browse Source

fix paddings

main
ghost 3 years ago
parent
commit
2bd6758aa6
  1. 9
      src/public/css/app.css
  2. 6
      src/public/js/home.js

9
src/public/css/app.css

@ -154,7 +154,6 @@ a:active { @@ -154,7 +154,6 @@ a:active {
padding-left: 73px;
letter-spacing: 0.2px;
font-size: 13px;
padding-right: 8px;
}
.container .content .item .message .retwist {
@ -162,13 +161,15 @@ a:active { @@ -162,13 +161,15 @@ a:active {
padding: 8px;
border-radius: 3px;
background: #e6e6e6;
margin-top: 8px
}
.container .content .item .message .quote {
margin-top: 8px
}
.container .item .message .info {
font-weight: bold;
/*border-bottom: 1px #ccc solid;*/
padding-bottom: 4px;
margin-bottom: 8px;
}
.container .item .message .info .time {

6
src/public/js/home.js

@ -53,7 +53,11 @@ var Home = { @@ -53,7 +53,11 @@ var Home = {
time
)
)
).append(rt).append(message)
).append(rt).append(
$('<div/>', {
'class': (message != '' ? 'quote' : '')
}).append(message)
)
)
);
}

Loading…
Cancel
Save