-
Notifications
You must be signed in to change notification settings - Fork 0
/
rtl.css
58 lines (46 loc) · 1.06 KB
/
rtl.css
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
/*
Theme Name: WP Bootstrap 4
Adding support for languages written in a Right To Left (RTL) direction is easy -
it's just a matter of overwriting all the horizontal positioning attributes
of your CSS stylesheet in a separate stylesheet file named rtl.css.
https://codex.wordpress.org/Right-to-Left_Language_Support
*/
body {
direction: rtl;
unicode-bidi: embed;
text-align: right;
}
.navbar-brand {
margin-left: 1rem;
margin-right: 0;
}
.ml-auto {
margin-right: auto !important;
margin-left: 0 !important;
}
.dropdown-toggle::after {
margin-left: 0em;
margin-right: 0.255em;
}
.navbar-dark .navbar-nav .dropdown-menu a {
text-align: right;
}
blockquote {
border-left: 0;
border-right: 3px solid rgba(33, 37, 41, 0.25);
}
.sidebar-1-area .widget ul, .footer-widgets .widget ul {
padding-right: 20px;
}
.comments-area .logged-in-as {
padding-right: 15px;
}
.oi-chevron-right:before {
content: '\e035';
}
.widget-area .star-rating:before {
margin-right: 30px;
float: right;
left: auto;
right: 0;
}