index.less 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @import '../../app.less';
  2. .g-input-container {
  3. .g-input-wrapper {
  4. display: flex;
  5. background: #F7F7F7;
  6. height: 44px;
  7. padding: 8px 0;
  8. line-height: 28px;
  9. margin-bottom: 20px;
  10. .g-input {
  11. flex: 1;
  12. background: transparent;
  13. border: none;
  14. padding: 10px;
  15. height: 28px;
  16. }
  17. .g-input-left {
  18. position: relative;
  19. .g-input-left-select {
  20. height: 28px;
  21. border-right: 1px solid #eee;
  22. padding-left: 10px;
  23. i {
  24. margin-left: 5px;
  25. font-size: 10px;
  26. margin-right: 10px;
  27. }
  28. }
  29. }
  30. .g-input-right {
  31. padding: 0 10px;
  32. .g-input-right-verification {
  33. color: #41A6F3;
  34. }
  35. .g-input-right-verification.loading {
  36. color: #A7A7B7;
  37. }
  38. }
  39. }
  40. .g-input-wrapper.error {
  41. margin-bottom: 0;
  42. }
  43. .g-input-error {
  44. color: #FF562E;
  45. font-size: 10px;
  46. height: 20px;
  47. line-height: 20px;
  48. }
  49. .select-list {
  50. top: 36px;
  51. width: 61px;
  52. border: 1px solid #EAEDF2;
  53. max-height: 200px;
  54. overflow-y: auto;
  55. list-style: none;
  56. margin: 0;
  57. padding: 5px 10px;
  58. position: absolute;
  59. background: #fff;
  60. }
  61. }