Hiding post buttons

Is it possible to control the visibility of the buttons below a topic? I refer specifically to:

I’ve been able to hide the buttons within the post:

Using:

But do similar settings exist for the the buttons identified above?

「いいね!」 2

You can use CSS to do it.

「いいね!」 1

CSSの例:

// トピックボタンを非表示にする
// 割り当て
#topic-footer-button-assign {
	display: none;
}

// 延期
#topic-footer-button-defer {
	display: none;
}

// フラグ
#topic-footer-button-flag {
	display: none;
}

// ブックマーク
#topic-footer-button-bookmark {
	display: none;
}

// 共有
#topic-footer-button-share-and-invite {
	display: none;
}

または

// フォローを除くメインボタンを一度に非表示にする
#topic-footer-buttons .topic-footer-main-buttons {
	display: none;
}

または

// フォローを含むすべてのボタンを非表示にする
#topic-footer-buttons {
	display: none;
}

このコードを外部テーマに適用するには、元のGithubリポジトリをフォークし、リポジトリURLを使用してテーマを再インストールし、このコードをリポジトリ(desktop.scssなど)に適用して変更をコミットし、Discourseでテーマを更新する必要があります。

「いいね!」 2