鼠标滚轮页面缩放时,默认仅工作台可用,其他位置禁用。事件部分主题颜色搭配bug

main
刘妍 2025-02-18 09:23:59 +08:00
parent b874a30f52
commit 21e63903bf
2 changed files with 11 additions and 1 deletions

View File

@ -178,7 +178,7 @@
}
.event-type {
.event-type__content {
background-color: #f5f5f5;
// background-color: #f5f5f5;
padding: 10px 20px;
border-radius: 6px;
.event-type__content__item {

View File

@ -69,6 +69,16 @@
//
const { menuOptions, onClickOutSide, mousePosition, handleMenuSelect } = useContextMenu();
// ctrl+
document.addEventListener(
'wheel',
function (event) {
if (event.ctrlKey) {
event.preventDefault();
}
},
{ passive: false },
);
</script>
<style lang="scss" scoped>