美文网首页
vue editor 弹窗优先级

vue editor 弹窗优先级

作者: CodeYang | 来源:发表于2022-03-31 15:23 被阅读0次

我遇到的问题:

我在弹窗内放了一个富文本编辑器,但是在富文本编辑器点击预览,插入图片时,发现富文本的弹窗,在该弹窗的后面,类似以下结果:

image.png

解决方式:

路径:/tinymce/skins/ui/oxide/skin.css
找到 skin.css 样式文件,将所有的 z-index在原来的数字前面拼接6000 ,
例如下面1300 --> 60001300
如果修改还不行,可能是修改错文件了,去找 skin.min.css 文件

.tox-tinymce-aux {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  z-index: 1300;
}

3.展示效果


image.png

相关文章

网友评论

      本文标题:vue editor 弹窗优先级

      本文链接:https://www.haomeiwen.com/subject/bmhnjrtx.html