The `hide` action was calling the `block` method while the `soft_block` action was calling the `hide` method. Combined with the fact that we also have a `block` permission which is used in `ModerateActions` the logic was hard to follow.
19 lines
280 B
SCSS
19 lines
280 B
SCSS
.moderation-users-index {
|
|
th:last-child,
|
|
td:last-child {
|
|
text-align: $global-right;
|
|
}
|
|
|
|
.table-actions {
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.hide-link {
|
|
@include hollow-button($color-warning);
|
|
}
|
|
|
|
.block-link {
|
|
@include hollow-button($alert-color);
|
|
}
|
|
}
|