rtl.scss 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. $module: #{$prefix}-scrolllist;
  2. .#{$prefix}-rtl,
  3. .#{$prefix}-portal-rtl {
  4. .#{$module} {
  5. direction: rtl;
  6. &-body {
  7. .#{$module}-item {
  8. &:not(:last-child) {
  9. border-right: 0;
  10. border-left: $width-scrollList_item-border solid $color-scrollList-border;
  11. }
  12. }
  13. .#{$module}-item,
  14. .#{$module}-item-wheel .#{$module}-list-outer {
  15. & > ul {
  16. & > li {
  17. &.#{$module}-item-sel {
  18. > svg {
  19. margin-right: 0;
  20. margin-left: $spacing-scrollList_item_sel_svg-marginRight;
  21. }
  22. }
  23. }
  24. }
  25. }
  26. .#{$module}-item-wheel {
  27. &:not(:last-child) {
  28. border-right: 0;
  29. border-left: $width-scrollList_item_wheel-border solid $color-scrollList-border;
  30. }
  31. .#{$module}-list-outer {
  32. padding-right: 0;
  33. padding-left: $spacing-scrollList_item_wheel_list_outer-paddingRight;
  34. }
  35. }
  36. }
  37. }
  38. }