diff options
| author | stonedDiscord <Tukz@gmx.de> | 2021-02-08 00:55:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-08 00:55:08 +0100 |
| commit | fa7d03b900cd5f96a42dc98d5822334c7759df7e (patch) | |
| tree | 08fc5a8ab35e8bf130eb919d2c07ff812228104d /webAO/styles | |
| parent | 891bca54f8ed848d180a716055c21af19046ef71 (diff) | |
| parent | e568aec6a5c65989b342a9ed186c138447c86c0e (diff) | |
Merge pull request #79 from craftxbox/patch-2
Fix OOC horizontal scrolling from typing too much in the input box.
Diffstat (limited to 'webAO/styles')
| -rw-r--r-- | webAO/styles/client.css | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/webAO/styles/client.css b/webAO/styles/client.css index b86e188..5a4c10e 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -125,6 +125,7 @@ overflow-y:auto; } + @keyframes shake { 0%, @@ -449,6 +450,20 @@ border: none; } +#client_oocinput { + display:flex; + flex-flow: row nowrap; + whitespace: nowrap; +} + +#client_oocinputbox { + flex-grow:1; +} + +#OOC_name { + width:15%; +} + #client_musicsearch { width: 100%; } |
