index.less 610 B

123456789101112131415161718192021222324252627282930313233
  1. .divTextarea {
  2. overflow-y: auto;
  3. overflow-x: hidden;
  4. max-height: 100px;
  5. border-bottom: 1px dashed #333;
  6. box-sizing: border-box;
  7. min-height: 21px;
  8. // width: 100%;
  9. outline: none;
  10. line-height: 20px;
  11. resize: none;
  12. font-family: inherit;
  13. position: relative;
  14. z-index: 10;
  15. }
  16. .textWap {
  17. overflow: hidden;
  18. position: relative;
  19. .textareaWarring {
  20. position: absolute;
  21. left: 0;
  22. top: 0;
  23. color: #a5a3a3;
  24. z-index: 5;
  25. }
  26. }
  27. // .divTextarea:empty:before{
  28. // content: '报告描述或意见';
  29. // color: #a5a3a3;
  30. // }
  31. // .divTextarea:focus:before{
  32. // content:none;
  33. // }