mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:26:35 +08:00
174d392e5a
Run `prettier --write "app/assets/stylesheets/**/*.scss" "plugins/**/*.scss"` after making sure you installed it with `yarn` It's recommended to configure your editor to run prettier on file save.
34 lines
517 B
SCSS
34 lines
517 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: $line-height-small;
|
|
width: 300px;
|
|
}
|
|
}
|
|
|
|
.history-item-actor {
|
|
a {
|
|
display: flex;
|
|
align-items: center;
|
|
span {
|
|
margin-left: 0.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|