index.less 662 B

1234567891011121314151617181920212223242526272829303132333435
  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. word-break: break-all;
  16. word-wrap:break-word;
  17. }
  18. .textWap {
  19. overflow: hidden;
  20. position: relative;
  21. .textareaWarring {
  22. position: absolute;
  23. left: 0;
  24. top: 0;
  25. color: #a5a3a3;
  26. z-index: 5;
  27. }
  28. }
  29. // .divTextarea:empty:before{
  30. // content: '报告描述或意见';
  31. // color: #a5a3a3;
  32. // }
  33. // .divTextarea:focus:before{
  34. // content:none;
  35. // }