Sin descripción

rtl.css 944B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*!
  2. * Styling for RTL (right-to-left) languages using pickadate.js
  3. */
  4. /**
  5. * Switch the direction - only really necessary if
  6. * it hasn’t already been applied higher up in the DOM.
  7. */
  8. .um .picker {
  9. direction: rtl;
  10. }
  11. /**
  12. * Flip around the “next” and “previous” buttons.
  13. */
  14. .um .picker__nav--next {
  15. right: auto;
  16. left: -1em;
  17. }
  18. .um .picker__nav--prev {
  19. left: auto;
  20. right: -1em;
  21. }
  22. .um .picker__nav--next:before {
  23. border-left: 0;
  24. border-right: 0.75em solid #000000;
  25. }
  26. .um .picker__nav--prev:before {
  27. border-right: 0;
  28. border-left: 0.75em solid #000000;
  29. }
  30. .um-popup .picker__nav--next {
  31. right: auto;
  32. left: -1em;
  33. }
  34. .um-popup .picker__nav--prev {
  35. left: auto;
  36. right: -1em;
  37. }
  38. .um-popup .picker__nav--next:before {
  39. border-left: 0;
  40. border-right: 0.75em solid #000000;
  41. }
  42. .um-popup .picker__nav--prev:before {
  43. border-right: 0;
  44. border-left: 0.75em solid #000000;
  45. }