textarea.scss 796 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. .m-textarea-default{
  2. width:auto;
  3. height:auto;
  4. display: inline-block;
  5. overflow: hidden;
  6. position: relative;
  7. textarea{
  8. padding:0;
  9. outline: none;
  10. border:1px solid #dcdfe6;
  11. transition: all .2s ease;
  12. border-radius: 3px;
  13. padding:8px;
  14. box-sizing: border-box;
  15. font-size:14px;
  16. color:#606266;
  17. background-color: transparent;
  18. font-family: auto;
  19. &:focus,&:active,&:focus-visible{
  20. border:1px solid #0e80eb;
  21. }
  22. }
  23. .m-textarea-disabled{
  24. cursor: not-allowed;
  25. background-color: #f5f7fa;
  26. border-color: #e4e7ed;
  27. color: #c0c4cc;
  28. &:focus,&:active,&:focus-visible{
  29. border:1px solid #dcdfe6;
  30. }
  31. }
  32. .max-length-box{
  33. font-size:14px;
  34. color:#606266;
  35. position: absolute;
  36. bottom:10px;
  37. right:10px;
  38. }
  39. }