Fixed updating displays sometimes eating clicks

This commit is contained in:
thepaperpilot 2022-04-24 01:03:25 -05:00
parent 76c81dc5b5
commit 5427f200c1
5 changed files with 20 additions and 0 deletions

View file

@ -138,4 +138,8 @@ export default defineComponent({
.clickable.small { .clickable.small {
min-height: unset; min-height: unset;
} }
.clickable > * {
pointer-events: none;
}
</style> </style>

View file

@ -87,4 +87,8 @@ export default defineComponent({
font-size: 10px; font-size: 10px;
background-color: var(--layer-color); background-color: var(--layer-color);
} }
.tile > * {
pointer-events: none;
}
</style> </style>

View file

@ -106,4 +106,8 @@ export default defineComponent({
:not(.floating) .tabButton:not(.active) { :not(.floating) .tabButton:not(.active) {
border-bottom-color: transparent; border-bottom-color: transparent;
} }
.tabButton > * {
pointer-events: none;
}
</style> </style>

View file

@ -112,4 +112,8 @@ export default defineComponent({
text-transform: capitalize; text-transform: capitalize;
display: flex; display: flex;
} }
.treeNode > *:first-child > * {
pointer-events: none;
}
</style> </style>

View file

@ -141,4 +141,8 @@ export default defineComponent({
width: 120px; width: 120px;
font-size: 10px; font-size: 10px;
} }
.upgrade > * {
pointer-events: none;
}
</style> </style>