index.less 951 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. .g-input-left-select {
  19. height: 28px;
  20. border-right: 1px solid #eee;
  21. padding-left: 10px;
  22. i {
  23. margin-left: 5px;
  24. font-size: 10px;
  25. margin-right: 10px;
  26. }
  27. }
  28. }
  29. .g-input-right {
  30. padding: 0 10px;
  31. .g-input-right-verification {
  32. color: #41A6F3;
  33. }
  34. .g-input-right-verification.loading {
  35. color: #A7A7B7;
  36. }
  37. }
  38. }
  39. .g-input-wrapper.error {
  40. margin-bottom: 0;
  41. }
  42. .g-input-error {
  43. color: #FF562E;
  44. font-size: 10px;
  45. height: 20px;
  46. line-height: 20px;
  47. }
  48. }