input.scss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .demo-input {
  2. .el-select .el-input {
  3. width: 130px;
  4. }
  5. .el-input {
  6. width: 180px;
  7. }
  8. .el-textarea {
  9. width: 414px;
  10. }
  11. .el-input-group {
  12. width: 100%;
  13. }
  14. .demo-input-size {
  15. .el-input {
  16. vertical-align: top;
  17. margin: 0 10px 10px 0;
  18. }
  19. }
  20. .input-with-select .el-input-group__prepend {
  21. background-color: #fff;
  22. }
  23. .demo-autocomplete {
  24. text-align: center;
  25. .sub-title {
  26. margin-bottom: 10px;
  27. font-size: 14px;
  28. color: #8492a6;
  29. }
  30. .el-col:not(:last-child) {
  31. border-right: 1px solid rgba(224, 230, 237, 0.5);
  32. }
  33. .el-autocomplete {
  34. text-align: left;
  35. }
  36. }
  37. }
  38. .el-autocomplete-suggestion.my-autocomplete {
  39. li {
  40. line-height: normal;
  41. padding-top: 7px;
  42. padding-bottom: 7px;
  43. .name {
  44. text-overflow: ellipsis;
  45. overflow: hidden;
  46. }
  47. .addr {
  48. font-size: 12px;
  49. color: #b4b4b4;
  50. }
  51. .highlighted .addr {
  52. color: #ddd;
  53. }
  54. }
  55. }
  56. .demo-input-suffix {
  57. margin-bottom: 15px;
  58. .el-input {
  59. margin-right: 15px;
  60. }
  61. }