diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-24 06:57:20 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-02-24 06:57:20 +0100 |
commit | 43cb4e614ff585f8a55bd843b7125ab6168a14f1 (patch) | |
tree | f700490749e3e41487f240ca485ac381a8dafeba /g4f/gui/client/css | |
parent | Fix some typos (diff) | |
download | gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.tar gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.tar.gz gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.tar.bz2 gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.tar.lz gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.tar.xz gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.tar.zst gpt4free-43cb4e614ff585f8a55bd843b7125ab6168a14f1.zip |
Diffstat (limited to 'g4f/gui/client/css')
-rw-r--r-- | g4f/gui/client/css/style.css | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/g4f/gui/client/css/style.css b/g4f/gui/client/css/style.css index 8752dee5..aab7e555 100644 --- a/g4f/gui/client/css/style.css +++ b/g4f/gui/client/css/style.css @@ -316,13 +316,33 @@ body { z-index: 1000; } -.message .assistant i { +.message .assistant .fa-phone-arrow-up-right, +.message .assistant .fa-phone-arrow-down-left { position: absolute; bottom: -6px; right: -6px; z-index: 1000; } +.message .assistant .fa-xmark, +.message .user .fa-xmark { + position: absolute; + top: -2px; + left: 0px; + z-index: 1000; + display: none; + cursor: pointer; +} + +.message .user .fa-xmark { + color: var(--colour-1); +} + +.message .assistant:hover .fa-xmark, +.message .user:hover .fa-xmark { + display: block; +} + .new_convo { padding: 8px 12px; display: flex; |