index.less 692 B

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