FIX: Date format and styling for post notices

Follow-up to 35942f7.
This commit is contained in:
Dan Ungureanu 2019-03-08 12:23:44 +02:00
parent ad12b2a23d
commit ac8425ad30
No known key found for this signature in database
GPG Key ID: 0AA2A00D6ACC8B84
3 changed files with 7 additions and 3 deletions

View File

@ -870,9 +870,9 @@ a.mention-group {
border-top: 1px solid $primary-low;
color: $primary;
padding: 1em;
margin-bottom: 1em;
max-width: calc(
#{$topic-body-width} + #{$topic-avatar-width} - #{$topic-body-width-padding} + 3px
#{$topic-body-width} + #{$topic-avatar-width} - #{$topic-body-width-padding} +
3px
);
p {

View File

@ -475,3 +475,7 @@ span.highlighted {
margin-bottom: 0;
}
}
.post-notice {
margin-bottom: 1em;
}

View File

@ -524,7 +524,7 @@ class PostCreator
@post.custom_fields["post_notice_type"] = "first"
elsif SiteSetting.returning_users_days > 0 && last_post_time < SiteSetting.returning_users_days.days.ago
@post.custom_fields["post_notice_type"] = "returning"
@post.custom_fields["post_notice_time"] = last_post_time
@post.custom_fields["post_notice_time"] = last_post_time.iso8601
end
end