File size: 1,607 Bytes
82676b8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
/* إصلاحات لدعم اللغة العربية والعرض من اليمين إلى اليسار */
/* نقل الشريط الجانبي من اليسار إلى اليمين */
[data-testid="stSidebar"] {
right: 0;
left: unset !important;
}
section[data-testid="stSidebarContent"] {
direction: rtl !important;
text-align: right !important;
}
/* تعديل الاتجاه للمحتوى الرئيسي */
.main .block-container {
direction: rtl;
text-align: right;
margin-left: 0;
margin-right: 21rem;
max-width: calc(100% - 21rem);
}
@media (max-width: 768px) {
.main .block-container {
margin-right: 0;
max-width: 100%;
}
}
/* تصحيح اتجاه النصوص والعناصر */
.streamlit-expanderHeader,
.stRadio > div,
.stCheckbox > div,
.stSelectbox > div,
.stTextInput > div {
direction: rtl;
text-align: right;
}
/* تعديل قائمة الخيارات في streamlit_option_menu */
.nav-link {
text-align: right !important;
}
/* تحسين ظهور الجداول */
[data-testid="stTable"] {
direction: rtl;
}
/* تصحيح أزرار الأرقام والتواريخ */
.stNumberInput [data-baseweb="input"],
.stDateInput [data-baseweb="input"] {
direction: ltr;
}
/* جعل عناصر الملاحظات والخانات النصية تدعم العربية */
[data-testid="stMarkdown"], textarea {
direction: rtl;
text-align: right;
}
/* تحسين ظهور قوائم الاختيار */
.stMultiSelect div:first-child,
.stSelectbox div:first-child {
text-align: right;
} |