index.module.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. .ZRichText {
  2. width: 1000px;
  3. height: 100%;
  4. :global {
  5. .txtBox {
  6. width: 100%;
  7. height: 100%;
  8. border: 1px solid #ccc;
  9. a{
  10. color: #fff !important;
  11. }
  12. // 隐藏媒体功能
  13. .control-item.media {
  14. display: none;
  15. }
  16. .bf-container {
  17. height:100%;
  18. }
  19. .bf-content {
  20. height: calc(100% - 92px);
  21. padding-bottom: 0px;
  22. }
  23. .bf-controlbar {
  24. position: relative;
  25. .upImgBox {
  26. position: absolute;
  27. bottom: 13px;
  28. right: 15px;
  29. cursor: pointer;
  30. color: var(--themeColor);
  31. // display: none;
  32. }
  33. .upImgBoxNo {
  34. display: none;
  35. }
  36. }
  37. }
  38. .noUpThumb {
  39. position: relative;
  40. overflow: hidden;
  41. opacity: 0;
  42. transition: top .2s;
  43. color: #ff4d4f;
  44. top: -10px;
  45. }
  46. .noUpThumbAc {
  47. top: 0;
  48. opacity: 1;
  49. }
  50. .bf-media .bf-image {
  51. float: initial !important;
  52. display: block;
  53. margin: 10px auto;
  54. text-align: center;
  55. // 不让拖动放大缩小图片(会报错)
  56. .bf-csize-icon {
  57. display: none !important;
  58. }
  59. img {
  60. max-width: 500px;
  61. max-height: 300px;
  62. }
  63. }
  64. }
  65. }