editor.wxss 1005 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* @import "../../../weui/components/weui-wxss/dist/style/weui.wxss"; */
  2. @import "./assets/iconfont.wxss";
  3. page>view {
  4. max-width: 100%;
  5. }
  6. .container {
  7. position: absolute;
  8. top: 0;
  9. left: 0;
  10. width: 100%;
  11. }
  12. .ql-container {
  13. box-sizing: border-box;
  14. width: 100%;
  15. height: 100%;
  16. font-size: 16px;
  17. line-height: 1.5;
  18. overflow: auto;
  19. padding: 10px 10px 20px 10px;
  20. border: 1px solid #ECECEC;
  21. -webkit-overflow-scrolling: touch; /* 惯性滚动 */
  22. }
  23. .ql-active {
  24. color: #22C704;
  25. }
  26. .iconfont {
  27. display: inline-block;
  28. width: 30px;
  29. height: 30px;
  30. cursor: pointer;
  31. font-size: 20px;
  32. }
  33. .toolbar {
  34. box-sizing: border-box;
  35. padding: 0 10px;
  36. height: 50px;
  37. width: 100%;
  38. position: fixed;
  39. left: 0;
  40. right: 100%;
  41. bottom: 0;
  42. display: flex;
  43. align-items: center;
  44. justify-content: space-between;
  45. border: 1px solid #ECECEC;
  46. border-left: none;
  47. border-right: none;
  48. padding-bottom: constant(safe-area-inset-bottom);
  49. padding-bottom: env(safe-area-inset-bottom);
  50. }