discourse/app/assets/stylesheets/common/admin/moderation_history.scss
Robin Ward 410994b7f5 FEATURE: Show a button to Staff for "Moderation History" on posts/topics
When clicked, it pops up a modal showing a history of moderation actions
taken on the post or topic.
2017-12-05 15:20:20 -05:00

33 lines
500 B
SCSS

.moderation-history {
width: 100%;
th {
text-align: left;
}
td.date {
padding-right: 1em;
}
td, th {
padding-bottom: 0.5em;
vertical-align: top;
}
.history-item-action {
.action-details {
margin: 1em 0;
color: $primary-medium;
white-space: pre-wrap;
line-height: 1em;
width: 300px;
}
}
.history-item-actor {
a {
display: flex;
align-items: center;
span {
margin-left: 0.5em;
}
}
}
}