editor.wxss 778 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @import "../common/lib/weui.wxss";
  2. @import "./assets/iconfont.wxss";
  3. .container {
  4. position: absolute;
  5. top: 0;
  6. left: 0;
  7. width: 100%;
  8. }
  9. .ql-container {
  10. box-sizing: border-box;
  11. width: 100%;
  12. height: 100%;
  13. font-size: 16px;
  14. line-height: 1.5;
  15. overflow: auto;
  16. padding: 10px 10px 20px 10px;
  17. border: 1px solid #ECECEC;
  18. }
  19. .ql-active {
  20. color: #22C704;
  21. }
  22. .iconfont {
  23. display: inline-block;
  24. width: 30px;
  25. height: 30px;
  26. cursor: pointer;
  27. font-size: 20px;
  28. }
  29. .toolbar {
  30. box-sizing: border-box;
  31. padding: 0 10px;
  32. height: 50px;
  33. width: 100%;
  34. position: fixed;
  35. left: 0;
  36. right: 100%;
  37. bottom: 0;
  38. display: flex;
  39. align-items: center;
  40. justify-content: space-between;
  41. border: 1px solid #ECECEC;
  42. border-left: none;
  43. border-right: none;
  44. }