index.less 387 B

1234567891011121314151617181920
  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: 20px;
  8. // width: 100%;
  9. outline: none;
  10. line-height: 20px;
  11. resize: none;
  12. font-family: inherit;
  13. }
  14. .divTextarea:empty:before{
  15. content: '报告描述或意见';
  16. color: gray;
  17. }
  18. .divTextarea:focus:before{
  19. content:none;
  20. }