patch.less 442 B

1234567891011121314151617181920212223242526272829
  1. .ant-dropdown-menu {
  2. & > ul {
  3. margin: 0;
  4. padding: 0;
  5. list-style: inherit;
  6. }
  7. }
  8. .ant-dropdown {
  9. position: relative;
  10. top: 0;
  11. left: 0;
  12. width: 100%;
  13. margin-top: 6px;
  14. margin-bottom: 6px;
  15. }
  16. .@{dropdown-prefix-cls} {
  17. &-menu {
  18. &-item,
  19. &-submenu-title {
  20. .@{dropdown-prefix-cls}-menu-submenu-arrow {
  21. .@{dropdown-prefix-cls}-rtl & {
  22. transform: rotate(180deg);
  23. }
  24. }
  25. }
  26. }
  27. }