-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrtl.css
158 lines (110 loc) · 2.51 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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
/*
* Theme Name: Orchid store
* Package: Orchid store
* Contributor: Themebeez
* Author url: https://themebeez.com/
* File: RTL css
* Uses: We generate RTL CSS file using gulp. Generated RTL CSS is located at assets/dist/css/. This RTL CSS file overwrites generated RTL CSS file.
*/
/*
====================================
=
= RTL direction
=
==========================
*/
body.rtl {
direction: rtl;
unicode-bidi: embed;
}
/*
====================================
=
= General styles
=
==========================
*/
/* menu */
body.rtl .sub-toggle .fa-angle-right {
-webkit-transform: rotate(-180deg);
-moz-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
transform: rotate(-180deg);
}
body.rtl .sub-toggle .fa-angle-left {
-webkit-transform: rotate(180deg);
-moz-transform: rotate(180deg);
-ms-transform: rotate(180deg);
-o-transform: rotate(180deg);
transform: rotate(180deg);
}
/* post metas */
body.rtl .entry-metas ul li.posted-by a:before {
padding-left: 0;
padding-right: 5px;
}
/* back to top */
body.rtl .orchid-backtotop {
right: 20px;
left: auto;
}
/* carousel */
body.rtl .owl-carousel {
direction: rtl;
}
body.rtl .owl-carousel .owl-item {
float: right;
}
.owl-carousel.owl-rtl {
direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
float: right;
}
.woocommerce .woocommerce-pagination .page-numbers li a.prev,
.woocommerce .woocommerce-pagination .page-numbers li a.next {
-webkit-transform: scaleX(-1);
-ms-transform: scaleX(-1);
-moz-transform: scaleX(-1);
transform: scaleX(-1);
}
/*
==================================================
=
= Base default widget styles
=
====================================
*/
body.rtl .widget_product_categories ul.children li a::before {
content: '\f104';
}
/*
====================================
=
= Woocommerce styles
=
==========================
*/
body.rtl .yith-wcwl-add-button>a i {
margin-right: 0;
}
body.rtl #yith-quick-view-close {
top: 1px;
left: 15px;
right: auto;
}
body.rtl.woocommerce ul.products li .product-hover-items .add_to_wishlist i {
margin-right: 0;
}
body.rtl.woocommerce-page .woocommerce-MyAccount-navigation ul li::before {
content: '\f104';
}
body.rtl .woocommerce div.product div.images .woocommerce-product-gallery__trigger::before,
body.rtl .woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
content: '';
display: none;
}
body.rtl .woocommerce#yith-quick-view-content div.product .entry-summary form.cart {
justify-content: flex-end;
}