diff options
| author | stonedDiscord <stoned@derpymail.org> | 2019-07-17 22:37:54 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-17 22:37:54 +0200 |
| commit | 95652a6182fb2848eebdbdd8afdd63adea0dbbbd (patch) | |
| tree | 03035602a35e69d76b01f669405bd6b2ab2ebeb8 /webAO/client.css | |
| parent | 050ede4a488c11a5c0cae05bcc17cd2dc0b17d01 (diff) | |
| parent | ce424437a06d9e7219b7ac9da994dfb8ce685044 (diff) | |
Merge pull request #21 from AttorneyOnline/resizing-fix
Resizing fix
Diffstat (limited to 'webAO/client.css')
| -rw-r--r-- | webAO/client.css | 29 |
1 files changed, 12 insertions, 17 deletions
diff --git a/webAO/client.css b/webAO/client.css index bb5822b..ade55c7 100644 --- a/webAO/client.css +++ b/webAO/client.css @@ -84,7 +84,7 @@ img { left: 0; width: 100%; height: 100%; - overflow-y: scroll; + overflow-y: auto; justify-content: center; align-items: center; vertical-align: middle; @@ -110,12 +110,10 @@ img { border: 1px solid black; } -#client_wrapper { - background-color: #888888; - overflow: auto; - overflow-y: hidden; - min-width: 256px; - resize: horizontal; +#client_icwrapper { + overflow-x: hidden; + overflow-y: auto; + height: 100%; } @media (max-width: 360px) { @@ -190,14 +188,6 @@ img { left: 0; } -#client_background { - position: absolute; - background-color: transparent; - width: 100%; - height: auto; - padding-bottom: 75%; -} - #client_name { display: none; height: 7%; @@ -269,7 +259,7 @@ img { word-break: keep-all; word-wrap: break-word; overflow-wrap: break-word; - overflow-y: scroll; + overflow-y: auto; font-size: medium; background-color: #242424; text-align: start; @@ -298,7 +288,7 @@ img { font-family: "Source Code Pro", "Consolas", monospace; font-size: small; overflow-wrap: break-word; - overflow-y: scroll; + overflow-y: auto; text-rendering: optimizelegibility; resize: none; flex: 1 1 auto; @@ -458,6 +448,11 @@ img { margin-right: -50%; } +#client_menu { + overflow-y: auto; + height: 100%; +} + .menu_content { margin: 15px 15px; display: none; |
