Spaces:
Sleeping
Sleeping
Create web/styles/rtl.css
Browse files- web/styles/rtl.css +74 -0
web/styles/rtl.css
ADDED
@@ -0,0 +1,74 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/* تنسيقات خاصة بدعم اللغة العربية والكتابة من اليمين إلى اليسار */
|
2 |
+
|
3 |
+
/* اتجاه الصفحة من اليمين إلى اليسار */
|
4 |
+
body {
|
5 |
+
direction: rtl;
|
6 |
+
text-align: right;
|
7 |
+
}
|
8 |
+
|
9 |
+
/* إعادة تعيين محاذاة العناصر */
|
10 |
+
.stTextInput, .stNumberInput, .stDateInput, .stTimeInput, .stTextArea, .stSelectbox {
|
11 |
+
direction: rtl;
|
12 |
+
text-align: right;
|
13 |
+
}
|
14 |
+
|
15 |
+
/* محاذاة الشريط الجانبي */
|
16 |
+
.css-1q8dd3e {
|
17 |
+
direction: rtl;
|
18 |
+
text-align: right;
|
19 |
+
}
|
20 |
+
|
21 |
+
/* محاذاة القوائم المنسدلة */
|
22 |
+
.css-16huue1 {
|
23 |
+
direction: rtl;
|
24 |
+
text-align: right;
|
25 |
+
}
|
26 |
+
|
27 |
+
/* تعديل محاذاة الأزرار */
|
28 |
+
button {
|
29 |
+
direction: rtl;
|
30 |
+
}
|
31 |
+
|
32 |
+
/* محاذاة المقاييس والعدادات */
|
33 |
+
.stMetric {
|
34 |
+
text-align: right;
|
35 |
+
}
|
36 |
+
|
37 |
+
/* تعديلات للجداول */
|
38 |
+
table {
|
39 |
+
direction: rtl;
|
40 |
+
text-align: right;
|
41 |
+
}
|
42 |
+
|
43 |
+
th, td {
|
44 |
+
text-align: right;
|
45 |
+
}
|
46 |
+
|
47 |
+
/* تعديلات للرسوم البيانية */
|
48 |
+
.plotly .gtitle, .plotly .xtitle, .plotly .ytitle, .plotly .annotation-text {
|
49 |
+
direction: rtl;
|
50 |
+
text-align: right;
|
51 |
+
}
|
52 |
+
|
53 |
+
/* تعديلات لمربعات الاختيار */
|
54 |
+
.stCheckbox > label > div:first-child {
|
55 |
+
margin-left: 0.5rem;
|
56 |
+
margin-right: 0;
|
57 |
+
}
|
58 |
+
|
59 |
+
/* تعديلات للقوائم والنقاط */
|
60 |
+
ul, ol {
|
61 |
+
padding-right: 1.5rem;
|
62 |
+
padding-left: 0;
|
63 |
+
}
|
64 |
+
|
65 |
+
/* تعديلات للأيقونات */
|
66 |
+
.icon-text {
|
67 |
+
flex-direction: row-reverse;
|
68 |
+
}
|
69 |
+
|
70 |
+
/* تعديلات للهوامش والمسافات البادئة */
|
71 |
+
.stMarkdown p, .stMarkdown h1, .stMarkdown h2, .stMarkdown h3, .stMarkdown h4, .stMarkdown h5, .stMarkdown h6 {
|
72 |
+
direction: rtl;
|
73 |
+
text-align: right;
|
74 |
+
}
|