rtl.less 242 B

1234567891011121314
  1. @tooltip-prefix-cls: ~'@{ant-prefix}-tooltip';
  2. // Base class
  3. .@{tooltip-prefix-cls} {
  4. &-rtl {
  5. direction: rtl;
  6. }
  7. // Wrapper for the tooltip content
  8. &-inner {
  9. .@{tooltip-prefix-cls}-rtl & {
  10. text-align: right;
  11. }
  12. }
  13. }