mirror of
https://github.com/oobabooga/text-generation-webui.git
synced 2025-12-06 07:12:10 +01:00
Disable the message version navigation hover effects during streaming
This commit is contained in:
parent
07e6f004c5
commit
ca226a54c6
14
css/main.css
14
css/main.css
|
|
@ -1291,18 +1291,16 @@ div.svelte-362y77>*, div.svelte-362y77>.form>* {
|
|||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Disable message action hover effects during generation */
|
||||
._generating .message:hover .message-actions,
|
||||
._generating .user-message:hover .message-actions,
|
||||
._generating .assistant-message:hover .message-actions {
|
||||
/* Disable message actions and version navigation hover effects during generation */
|
||||
._generating :is(.message, .user-message, .assistant-message):hover :is(.message-actions, .version-navigation) {
|
||||
opacity: 0 !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* Disable message action hover effects during scrolling */
|
||||
.scrolling .message:hover .message-actions,
|
||||
.scrolling .user-message:hover .message-actions,
|
||||
.scrolling .assistant-message:hover .message-actions {
|
||||
/* Disable message actions and version navigation hover effects during scrolling */
|
||||
.scrolling :is(.message, .user-message, .assistant-message):hover :is(.message-actions, .version-navigation) {
|
||||
opacity: 0 !important;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.footer-button svg {
|
||||
|
|
|
|||
Loading…
Reference in a new issue