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)