Поправлена реакция на клик в строке статуса в режиме clickControl

This commit is contained in:
Book Pauk
2024-08-27 12:58:07 +07:00
parent 67bdfd853e
commit 5a910f80b3

View File

@@ -14,7 +14,7 @@
<div @copy.prevent="copyText" v-html="page2"></div> <div @copy.prevent="copyText" v-html="page2"></div>
</div> </div>
</div> </div>
<div v-show="showStatusBar" ref="statusBar" class="layout"> <div v-show="showStatusBar" ref="statusBar" class="layout" :class="{'no-events': clickControl}">
<div v-html="statusBar"></div> <div v-html="statusBar"></div>
</div> </div>
<div <div
@@ -1353,6 +1353,9 @@ export default vueComponent(TextPage);
background-color: rgba(0,0,0,0); background-color: rgba(0,0,0,0);
} }
.no-events {
pointer-events: none;
}
</style> </style>
<style> <style>
.note-para { .note-para {