يمكنك التفكير في استخدام مكون السمة Filtered Topic Lists مع الاستعلام in:pinned.
إذا كنت تفضل الالتزام بـ CSS، فيمكنك القيام بشيء مثل هذا:
// استهداف آخر دبوس في القائمة
tr.topic-list-item.pinned:has(+ tr:not(.pinned)) td {
// طريقة تقريبية لفرض مساحة داخل صف جدول
padding-bottom: 1.8em;
}
tr.topic-list-item.pinned:has(+ tr:not(.pinned))::after {
// المحتوى المراد عرضه في المساحة إذا رغبت في ذلك
content: 'regular';
width: 100%;
position: absolute;
display: flex;
height: 1em;
left: 0;
right: 0;
bottom: 0;
justify-content: center;
border-top: 1px solid var(--primary-low);
}