Fixed updating displays sometimes eating clicks
This commit is contained in:
parent
76c81dc5b5
commit
5427f200c1
5 changed files with 20 additions and 0 deletions
|
@ -138,4 +138,8 @@ export default defineComponent({
|
||||||
.clickable.small {
|
.clickable.small {
|
||||||
min-height: unset;
|
min-height: unset;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.clickable > * {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
|
@ -141,4 +141,8 @@ export default defineComponent({
|
||||||
width: 120px;
|
width: 120px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.upgrade > * {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue