From cb695f58e881e67387852688c109d6e5c1fe5b8e Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Tue, 23 Apr 2024 05:44:49 +0200 Subject: Add nodriver to docker --- g4f/gui/client/static/css/style.css | 1 + 1 file changed, 1 insertion(+) (limited to 'g4f/gui/client/static/css/style.css') diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index a28c9cd6..dd829a1a 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -222,6 +222,7 @@ body { .conversations i, .bottom_buttons i { color: var(--conversations); cursor: pointer; + width: 14px; } .convo-title { -- cgit v1.2.3 From 74c399d675676938f31faf18174a98ed7a1709da Mon Sep 17 00:00:00 2001 From: Heiner Lohaus Date: Tue, 23 Apr 2024 17:34:42 +0200 Subject: Add conversation title change in gui Fix bug with multiple requests a .har in OpenaiChat --- g4f/gui/client/static/css/style.css | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'g4f/gui/client/static/css/style.css') diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index dd829a1a..979f9f96 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -210,7 +210,9 @@ body { .conversations .convo .fa-ellipsis-vertical { position: absolute; - right: 14px; + right: 8px; + width: 14px; + text-align: center; } .conversations .convo .choise { @@ -222,6 +224,9 @@ body { .conversations i, .bottom_buttons i { color: var(--conversations); cursor: pointer; +} + +.bottom_buttons i { width: 14px; } @@ -233,9 +238,17 @@ body { overflow: hidden; white-space: nowrap; margin-right: 10px; + background-color: transparent; + border: 0; + width: 100%; } -.convo-title .datetime { +.convo-title:focus { + outline: 1px solid var(--colour-3) !important; +} + +.convo .datetime { + white-space: nowrap; font-size: 10px; } -- cgit v1.2.3