mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2024-10-01 01:26:03 -04:00
CSS: don't change --chat-height when outside the chat tab
This commit is contained in:
parent
c419206ce1
commit
a4079e879e
@ -339,6 +339,7 @@ function updateCssProperties() {
|
|||||||
// Set the height of the chat area
|
// Set the height of the chat area
|
||||||
const chatContainer = document.getElementById("chat").parentNode.parentNode.parentNode;
|
const chatContainer = document.getElementById("chat").parentNode.parentNode.parentNode;
|
||||||
const chatInputHeight = document.querySelector("#chat-input textarea").clientHeight;
|
const chatInputHeight = document.querySelector("#chat-input textarea").clientHeight;
|
||||||
|
if (chatContainer.clientHeight > 0) {
|
||||||
const newChatHeight = `${chatContainer.clientHeight - chatInputHeight + 40}px`;
|
const newChatHeight = `${chatContainer.clientHeight - chatInputHeight + 40}px`;
|
||||||
document.documentElement.style.setProperty("--chat-height", newChatHeight);
|
document.documentElement.style.setProperty("--chat-height", newChatHeight);
|
||||||
document.documentElement.style.setProperty("--input-delta", `${chatInputHeight - 40}px`);
|
document.documentElement.style.setProperty("--input-delta", `${chatInputHeight - 40}px`);
|
||||||
@ -353,6 +354,7 @@ function updateCssProperties() {
|
|||||||
chatContainer.scrollTop += chatInputHeight > currentChatInputHeight ? chatInputHeight : -chatInputHeight;
|
chatContainer.scrollTop += chatInputHeight > currentChatInputHeight ? chatInputHeight : -chatInputHeight;
|
||||||
currentChatInputHeight = chatInputHeight;
|
currentChatInputHeight = chatInputHeight;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
new ResizeObserver(updateCssProperties)
|
new ResizeObserver(updateCssProperties)
|
||||||
|
Loading…
Reference in New Issue
Block a user