mirror of
https://ghfast.top/https://github.com/discourse/discourse-akismet.git
synced 2026-07-15 11:36:24 +08:00
* Ported akismet review actions to its own Reviewable * Ported action logging. Removed attributes that were being filtered * Create a new reviewable when spam is detected * Added custom serializer and template to display reviewable. Do not show actions if reviewable is not in pending state * Added a new prompt message. Added backwards compatibility support to the old Akismet queue. Moved model outside of /app to conditionally require it as a dependency. Added some custom styles * Adressing minor issues and changing Dismiss -> Ignore. * Drop calls to DiscourseAkismet#move_to_state inside the reviewable * Created a rake tasks that will allow us to migrate old Akismet reviews.
39 lines
534 B
SCSS
39 lines
534 B
SCSS
.admin-header {
|
|
background: #ededed;
|
|
padding: 30px;
|
|
margin-bottom: 25px;
|
|
}
|
|
|
|
table.spam-stats {
|
|
margin-bottom: 1.5em;
|
|
}
|
|
|
|
table.akismet-queue {
|
|
td {
|
|
vertical-align: top;
|
|
}
|
|
.post-link {
|
|
float: right;
|
|
}
|
|
.queue-actions {
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
button {
|
|
margin-right: 0.5em;
|
|
}
|
|
}
|
|
.cooked {
|
|
img {
|
|
max-width: 200px !important;
|
|
max-height: 100px !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
h3.review-queue {
|
|
margin: 1em 0 1em 0.5em;
|
|
}
|
|
|
|
.settings-button {
|
|
margin-right: 10px;
|
|
}
|