Files
ultimatemember/assets/css/pickadate/rtl.css
T

47 lines
898 B
CSS
Raw Normal View History

2014-12-15 22:38:07 +02:00
/*!
* Styling for RTL (right-to-left) languages using pickadate.js
*/
/**
* Switch the direction - only really necessary if
* it hasnt already been applied higher up in the DOM.
*/
2016-05-18 18:17:36 +08:00
.um .picker {
2014-12-15 22:38:07 +02:00
direction: rtl;
}
/**
* Flip around the “next” and “previous” buttons.
*/
2016-05-18 18:17:36 +08:00
.um .picker__nav--next {
2014-12-15 22:38:07 +02:00
right: auto;
left: -1em;
}
2016-05-18 18:17:36 +08:00
.um .picker__nav--prev {
2014-12-15 22:38:07 +02:00
left: auto;
right: -1em;
}
2016-05-18 18:17:36 +08:00
.um .picker__nav--next:before {
2014-12-15 22:38:07 +02:00
border-left: 0;
border-right: 0.75em solid #000000;
}
2016-05-18 18:17:36 +08:00
.um .picker__nav--prev:before {
2014-12-15 22:38:07 +02:00
border-right: 0;
border-left: 0.75em solid #000000;
}
2017-04-03 17:18:39 +03:00
.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;
}