InputAddon.css 750 B

123456789101112131415161718192021222324252627282930313233
  1. .input-addon {
  2. display: inline-flex;
  3. align-items: center;
  4. padding: 0 11px;
  5. height: 32px;
  6. font-size: 14px;
  7. line-height: 30px;
  8. background-color: var(--ant-color-fill-tertiary);
  9. border: 1px solid var(--ant-color-border);
  10. border-radius: 6px;
  11. position: relative;
  12. z-index: 1;
  13. color: var(--ant-color-text);
  14. white-space: nowrap;
  15. }
  16. .ant-space-compact > .input-addon:not(:first-child) {
  17. margin-inline-start: -1px;
  18. }
  19. .ant-space-compact > .input-addon:first-child {
  20. border-start-end-radius: 0;
  21. border-end-end-radius: 0;
  22. }
  23. .ant-space-compact > .input-addon:last-child {
  24. border-start-start-radius: 0;
  25. border-end-start-radius: 0;
  26. }
  27. .ant-space-compact > .input-addon:not(:first-child):not(:last-child) {
  28. border-radius: 0;
  29. }