-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtl.css
135 lines (112 loc) · 2.11 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* Theme Name: Arcade
* Description: Adds support for languages written in a Right To Left (RTL) direction.
*
* See http://codex.wordpress.org/Right_to_Left_Language_Support
*/
body {
direction: rtl;
unicode-bidi: embed;
}
.navbar-toggle {
right: auto;
left: 15px;
}
.navbar-nav {
padding: 0;
}
blockquote {
border-left: 0;
border-right: 5px solid #eeeeee;
}
.tags span {
margin-right: 0;
margin-left: 5px;
}
.format-status .avatar {
margin: 0 0 0 17px;
}
#posts-pagination a,
table th,
table td,
.home-jumbotron .lead {
text-align: right;
}
#posts-pagination .next a,
.format-quote cite {
text-align: left;
}
.comment .avatar,
.gallery-item,
.format-status .avatar,
i.quote,
.pullquote,
#author-info img,
#posts-pagination .previous,
.navigation .nav-previous {
float: right !important;
}
#cancel-comment-reply-link,
.pullquote.alignright,
#posts-pagination .next,
.navigation .nav-next {
float: left !important;
}
.comment-author,
.comment-meta,
.comment-text,
.format-quote .entry-content,
#author-info .author-text,
.commentlist .children > .comment {
padding-left: 0 !important;
}
.format-quote .entry-content {
padding-right: 70px;
}
#author-info .author-text {
padding-right: 90px;
}
/* =Pullquotes
-------------------------------------------------------------- */
.pullquote {
margin: 1em 0 1em 1.625em;
text-align: left;
}
.pullquote.alignright {
margin: 1em 1.625em 1em 0;
text-align: right;
}
@media (max-width: 480px) {
.pullquote {
text-align: right;
}
}
/* =Comments
-------------------------------------------------------------- */
.comment-author,
.comment-meta,
.comment-text {
padding-right: 75px;
}
.commentlist .children .comment {
border-left: 0;
border-right: 1px solid #ddd;
}
.commentlist .children > .comment {
padding-right: 23px !important;
}
.commentlist .children .comment:before,
.commentlist .children .comment:after {
left: auto;
}
.commentlist .children .comment:before {
right: -6px;
}
.commentlist .children .comment:after {
right: -5px;
}
/* =bbPress
-------------------------------------------------------------- */
.subscription-toggle {
float: left;
}