修复评论插件2.0.0及以上版本打开表情面板时的遮挡问题

This commit is contained in:
mjsoftware 2024-03-09 10:45:11 +08:00
parent 735d40a807
commit 8022ff3962

View File

@ -21,6 +21,12 @@
-webkit-tap-highlight-color: transparent; -webkit-tap-highlight-color: transparent;
} }
//todo 强制给评论插件增加z-index
#comment-wrapper {
z-index: 9999;
position: relative;
}
.gray-mode { .gray-mode {
filter: grayscale(1) !important; filter: grayscale(1) !important;
} }
@ -4863,6 +4869,9 @@ button.swiper-pagination-bullet {
&-comment { &-comment {
padding: 12px 0 2px 0; padding: 12px 0 2px 0;
display: none; display: none;
//todo 强制给评论插件增加z-index
position: relative;
z-index: 9999;
} }
} }