index.wxss 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .ant-input {
  2. display: flex;
  3. align-items: center;
  4. background: #ffffff;
  5. }
  6. .ant-input-disabled {
  7. opacity: 0.4;
  8. }
  9. .ant-input-line {
  10. position: relative;
  11. flex: 1;
  12. display: flex;
  13. align-items: center;
  14. overflow: hidden;
  15. }
  16. .ant-input-prefix {
  17. color: #cccccc;
  18. font-size: 17px;
  19. margin: 0 4px 0 4px;
  20. }
  21. .ant-input-prefix:empty {
  22. display: none;
  23. }
  24. .ant-input-suffix {
  25. color: #cccccc;
  26. font-size: 17px;
  27. margin: 0 4px 0 4px;
  28. }
  29. .ant-input-suffix:empty {
  30. display: none;
  31. }
  32. .ant-input-content {
  33. width: 100%;
  34. align-self: center;
  35. padding: 0;
  36. font-size: 17px;
  37. text-align: left;
  38. color: #333333;
  39. background: #ffffff;
  40. }
  41. .ant-input-clear {
  42. display: flex;
  43. justify-content: center;
  44. align-items: center;
  45. border-radius: 8px;
  46. margin-left: 4px;
  47. }
  48. .ant-input-clear-icon {
  49. color: #cccccc;
  50. font-size: 17px;
  51. }
  52. .ant-input-clear-show {
  53. display: flex;
  54. }
  55. .ant-input-clear-hidden {
  56. display: none;
  57. pointer-events: none;
  58. }
  59. .ant-input-placeholder {
  60. font-size: 17px;
  61. color: #cccccc;
  62. margin-left: -3px;
  63. }