diff options
author | H Lohaus <hlohaus@users.noreply.github.com> | 2024-04-10 15:55:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-10 15:55:01 +0200 |
commit | 48a4f1308119b565a86806a3ce270b25e96a0264 (patch) | |
tree | abbeb618fca668a60d81cb58d1aeeb8701b30754 /g4f/gui/client/static/css/style.css | |
parent | Add OpenRouter and DeepInfraImage Provider (#1814) (diff) | |
parent | Increase conversation title lenght (diff) | |
download | gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.tar gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.tar.gz gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.tar.bz2 gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.tar.lz gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.tar.xz gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.tar.zst gpt4free-48a4f1308119b565a86806a3ce270b25e96a0264.zip |
Diffstat (limited to 'g4f/gui/client/static/css/style.css')
-rw-r--r-- | g4f/gui/client/static/css/style.css | 40 |
1 files changed, 27 insertions, 13 deletions
diff --git a/g4f/gui/client/static/css/style.css b/g4f/gui/client/static/css/style.css index 8e967806..058fd521 100644 --- a/g4f/gui/client/static/css/style.css +++ b/g4f/gui/client/static/css/style.css @@ -201,6 +201,7 @@ body { } .conversations .convo .left { + width: 100%; cursor: pointer; display: flex; align-items: center; @@ -226,9 +227,11 @@ body { .convo-title { color: var(--colour-3); font-size: 14px; + max-width: 100%; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; + margin-right: 10px; } .convo-title .datetime { @@ -406,7 +409,7 @@ body { .count_total { font-size: 12px; - padding-left: 100px; + padding-left: 25px; padding-top: 10px; } @@ -646,6 +649,21 @@ select { width: 160px; } +#systemPrompt, .settings textarea { + font-size: 15px; + width: 100%; + color: var(--colour-3); + min-height: 50px; + height: 59px; + outline: none; + padding: var(--inner-gap) var(--section-gap); + resize: vertical; +} + +#systemPrompt { + padding-left: 35px; +} + @media only screen and (min-width: 40em) { select { width: 200px; @@ -659,6 +677,9 @@ select { .settings .bottom_buttons { flex-direction: row; } + .count_total { + padding-left: 98px; + } } .input-box { @@ -836,6 +857,10 @@ ul { .mobile-sidebar { display: flex !important; } + + #systemPrompt { + padding-left: 48px; + } } .shown { @@ -1064,22 +1089,11 @@ a:-webkit-any-link { border: 1px solid #e4d4ffc9; } -#systemPrompt, .settings textarea { - font-size: 15px; - width: 100%; - color: var(--colour-3); - min-height: 50px; - height: 59px; - outline: none; - padding: var(--inner-gap) var(--section-gap); - resize: vertical; -} - .settings textarea { height: 51px; } -.settings { +.settings, .images { width: 100%; display: flex; flex-direction: column; |