hipp0
20 يناير 2026، 9:03م
1
أريد أن تكون أسماء المستخدمين باللون الرمادي لمستويات الثقة 0-1-2، وملونة لمستويات الثقة 3-4.
يمكنني فعل ذلك إلى حد كبير باستخدام CSS ولكن تحدث الكثير من الأخطاء مثل اختفاء اسم المستخدم للمنشئ الأصلي عند الرد على موضوع.
سيكون من الرائع أن يكون هذا خيارًا لتعطيل الصور الرمزية (avatars) في قائمة المواضيع لإعطاء مظهر المنتدى القديم.
أنا أحب الصور الرمزية في المناطق الأخرى ولكن ليس في قائمة المواضيع الرئيسية.
مرحباً، جرب هذا:
// سطح المكتب
.topic-list td.topic-list-data.posters {
display: none !important;
}
// الهاتف المحمول
.pull-left {
display: none !important;
}
.topic-list .right {
margin-left: 0 !important;
}
يزيل هذا الصور الرمزية في قائمة المواضيع على سطح المكتب والهاتف المحمول.
إعجاب واحد (1)
hipp0
21 يناير 2026، 1:28ص
3
يزيل هذا الصور الرمزية، ولكني أريد الاحتفاظ بأسماء المستخدمين. سأرى ما إذا كان ذلك سيساعد الذكاء الاصطناعي.
hipp0
21 يناير 2026، 1:29ص
4
هذا ما توصلت إليه بالذكاء الاصطناعي، ولكن أسماء المستخدمين تختفي عندما يرد شخص ما على موضوع. لم أتمكن أيضًا من تعديل ألوان مجموعة مستوى الثقة للأشخاص الذين ينشرون.
.topic-list .posters img.avatar { display: none; }
.topic-list .posters { text-align: center !important; }
.topic-list .posters a.latest.single {
display: block;
padding: 4px 0;
}
.topic-list .posters a.latest.single::after {
content: attr(data-user-card);
display: block;
font-size: 17px;
font-weight: normal;
text-align: center;
}
.topic-list-header th.posters {
text-align: center !important;
padding: 0px;
display: flex;
justify-content: center;
align-items: center;
}
.topic-list-header th.posters {
padding-top: 16px !important; /* اضبط القيمة حسب الحاجة */
}
.topic-list-header th.posters::before {
content: "Poster";
font-size: 18px;
font-weight: normal;
color: #a6a6a6;
}
.topic-list .posters {
display: flex;
justify-content: center;
}
.topic-list th.posters,
.topic-list td.posters {
width: 100px !important; /* اضبط 80-120 بكسل حسب الحاجة */
min-width: 100px !important;
}
.topic-list .posters a.latest.single::after {
margin-top: 10px; /* اضبط القيمة للموضع العمودي المطلوب */
}
.topic-list .posters a.latest.single::after {
text-decoration: underline transparent;
text-underline-offset: 1px;
transition: text-decoration-color 0.2s;
}
.topic-list .posters a.latest.single:hover::after {
text-decoration-color: #8e0086; /* أو #800080 */
}
a.latest.single {
padding-right: 5px !important;
}
.topic-list-data.posters {
padding: 13.5px 45px !important; /* أعلى/أسفل 8 بكسل، يسار/يمين 12 بكسل - اضبط حسب الحاجة */
}
.posters.topic-list-data,
.posters.topic-list-data a, {
font-size: 17px !important;
}
.posters.topic-list-data a.latest.single {
display: flex;
align-items: center;
justify-content: center;
}
.posters.topic-list-data a.latest.single::after {
padding-top: 0 !important;
margin-top: 0 !important;
}
.topic-list .posters a.latest.single::after {
content: attr(data-user-card) !important;
display: block !important;
}
//الرؤية
.topic-list .posters a {
display: none !important;
}
.topic-list .posters a.latest {
display: inline-block !important;
}
.topic-list .posters a.latest::after {
content: attr(data-user-card) !important;
display: block !important;
font-size: 17px;
margin-top: 4px;
}
Moin
21 يناير 2026، 9:07ص
5
لدي انطباع بأن مسألة تغيير لون أسماء المستخدمين مستقلة عن عرضها في قائمة المواضيع. ربما يكون من الأفضل مواصلة مناقشة تلك المسألة هنا: Unable to change Usernames a specific color based on the group they are in