patch.less 761 B

12345678910111213141516171819202122232425262728293031323334
  1. // inline mode
  2. .@{picker-prefix-cls}-inline {
  3. padding: 0;
  4. border: none;
  5. .@{picker-prefix-cls} {
  6. &-range-arrow {
  7. display: none !important;
  8. }
  9. &-dropdown {
  10. z-index: auto;
  11. }
  12. }
  13. }
  14. // overwrite css in index.less to make sure picker popup is in the right position
  15. .@{picker-prefix-cls}-dropdown {
  16. top: unset;
  17. left: unset;
  18. }
  19. // ensure table is correct width to display week numbers in date mode
  20. .@{picker-prefix-cls}-panel-container.@{picker-prefix-cls}-week-number .@{picker-prefix-cls}-date-panel .@{picker-prefix-cls}-content {
  21. width: 100%;
  22. th {
  23. width: inherit;
  24. }
  25. }
  26. // make arrow in the right position in right direction
  27. .@{picker-prefix-cls}-range-arrow {
  28. margin-right: @input-padding-horizontal-base * 1.5;
  29. }