index.less 466 B

12345678910111213141516171819202122232425262728293031323334
  1. .rc-input {
  2. &-out-of-range {
  3. color: red;
  4. }
  5. &-affix-wrapper {
  6. padding: 2px 8px;
  7. overflow: hidden;
  8. border: 1px solid lightgray;
  9. border-radius: 2px;
  10. &:hover,
  11. &:focus-within {
  12. border-color: #000;
  13. }
  14. input {
  15. padding: 0;
  16. border: none;
  17. outline: none;
  18. }
  19. }
  20. &-clear-icon {
  21. padding: 0;
  22. font-size: 12px;
  23. background: none;
  24. border: none;
  25. &-hidden {
  26. display: none;
  27. }
  28. }
  29. }