diff options
author | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-19 18:48:32 +0100 |
---|---|---|
committer | Heiner Lohaus <hlohaus@users.noreply.github.com> | 2024-03-19 18:48:32 +0100 |
commit | 486e43dabd1198e6f3c94a4040fc01f5b2fe824c (patch) | |
tree | d328bf845d35e875c3c10964ac3b44d047ac352c /g4f/gui/client/static/css/style.css | |
parent | Fix abort in webview (diff) | |
download | gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.tar gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.tar.gz gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.tar.bz2 gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.tar.lz gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.tar.xz gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.tar.zst gpt4free-486e43dabd1198e6f3c94a4040fc01f5b2fe824c.zip |
Diffstat (limited to 'g4f/gui/client/static/css/style.css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 19 |
1 files changed, 6 insertions, 13 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index 936df0d2..28064159 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -482,25 +482,18 @@ body { display: none; } -label[for="image"]:has(> input:valid){ - color: var(--accent); -} - -label[for="camera"]:has(> input:valid){ - color: var(--accent); -} - -label[for="file"]:has(> input:valid){ - color: var(--accent); -} - -label[for="image"], label[for="file"], label[for="camera"] { +.file-label { cursor: pointer; position: absolute; top: 10px; left: 10px; } +.file-label:has(> input:valid), +.file-label.selected { + color: var(--accent); +} + label[for="image"] { top: 32px; } |