mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-11-17 11:37:10 +00:00
webui: Fix clickability around chat processing statistics UI (#17278)
* fix: Better pointer events handling in chat processing info elements * chore: update webui build output
This commit is contained in:
committed by
GitHub
parent
1411d9275a
commit
22e1ce2f81
Binary file not shown.
@@ -76,10 +76,10 @@
|
|||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div class="chat-processing-info-container" class:visible={showSlotsInfo}>
|
<div class="chat-processing-info-container pointer-events-none" class:visible={showSlotsInfo}>
|
||||||
<div class="chat-processing-info-content">
|
<div class="chat-processing-info-content">
|
||||||
{#each processingDetails as detail (detail)}
|
{#each processingDetails as detail (detail)}
|
||||||
<span class="chat-processing-info-detail">{detail}</span>
|
<span class="chat-processing-info-detail pointer-events-auto">{detail}</span>
|
||||||
{/each}
|
{/each}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -92,7 +92,6 @@
|
|||||||
padding: 1.5rem 1rem;
|
padding: 1.5rem 1rem;
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
transform: translateY(50%);
|
transform: translateY(50%);
|
||||||
pointer-events: none;
|
|
||||||
transition:
|
transition:
|
||||||
opacity 300ms ease-out,
|
opacity 300ms ease-out,
|
||||||
transform 300ms ease-out;
|
transform 300ms ease-out;
|
||||||
@@ -100,7 +99,6 @@
|
|||||||
|
|
||||||
.chat-processing-info-container.visible {
|
.chat-processing-info-container.visible {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
pointer-events: auto;
|
|
||||||
transform: translateY(0);
|
transform: translateY(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user