use bs5 classes for toggle

This commit is contained in:
Barış Soner Uşaklı
2023-05-29 19:32:20 -04:00
parent 0c4870ec12
commit 6aae88d5dd

View File

@@ -440,7 +440,7 @@ define('forum/topic/posts', [
blockquotes.each(function () {
const $this = $(this);
if ($this.find(':hidden:not(br)').length && !$this.find('.toggle').length) {
$this.append('<i class="fa fa-angle-down pointer toggle"></i>');
$this.append('<i class="d-inline-block fa fa-angle-down pointer toggle py-1 px-3 border text-bg-light"></i>');
}
});
};