get reportButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0 dropdown-item"
+ className="btn btn-link btn-animate d-flex align-items-center rounded-0 py-0 dropdown-item"
onClick={linkEvent(this, this.handleShowReportDialog)}
data-tippy-content={i18n.t("show_report_dialog")}
aria-label={i18n.t("show_report_dialog")}
get blockButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0 dropdown-item"
+ className="btn btn-link btn-animate d-flex align-items-center rounded-0 py-0 dropdown-item"
onClick={linkEvent(this, this.handleBlockPersonClick)}
data-tippy-content={i18n.t("block_user")}
aria-label={i18n.t("block_user")}
get editButton() {
return (
<button
- className="btn btn-link text-muted dropdown-item"
+ className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleEditClick)}
aria-label={i18n.t("edit")}
>
const label = !deleted ? i18n.t("delete") : i18n.t("restore");
return (
<button
- className="btn btn-link text-muted dropdown-item"
+ className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleDeleteClick)}
aria-label={label}
>
const label = locked ? i18n.t("unlock") : i18n.t("lock");
return (
<button
- className="btn btn-link text-muted dropdown-item"
+ className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModLock)}
aria-label={label}
>
<>
<li>
<button
- className="btn btn-link text-muted dropdown-item"
+ className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModFeaturePostCommunity)}
data-tippy-content={labelCommunity}
aria-label={labelCommunity}
<li>
{amAdmin() && (
<button
- className="btn btn-link text-muted dropdown-item"
+ className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModFeaturePostLocal)}
data-tippy-content={labelLocal}
aria-label={labelLocal}
const removed = this.postView.post.removed;
return (
<button
- className="btn btn-link text-muted dropdown-item"
+ className="btn btn-link d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(
this,
!removed ? this.handleModRemoveShow : this.handleModRemoveSubmit