rtl.css
944 Bytes
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
/*!
* Styling for RTL (right-to-left) languages using pickadate.js
*/
/**
* Switch the direction - only really necessary if
* it hasn’t already been applied higher up in the DOM.
*/
.um .picker {
direction: rtl;
}
/**
* Flip around the “next” and “previous” buttons.
*/
.um .picker__nav--next {
right: auto;
left: -1em;
}
.um .picker__nav--prev {
left: auto;
right: -1em;
}
.um .picker__nav--next:before {
border-left: 0;
border-right: 0.75em solid #000000;
}
.um .picker__nav--prev:before {
border-right: 0;
border-left: 0.75em solid #000000;
}
.um-popup .picker__nav--next {
right: auto;
left: -1em;
}
.um-popup .picker__nav--prev {
left: auto;
right: -1em;
}
.um-popup .picker__nav--next:before {
border-left: 0;
border-right: 0.75em solid #000000;
}
.um-popup .picker__nav--prev:before {
border-right: 0;
border-left: 0.75em solid #000000;
}