From e73ac46480b2c2e34ea7af71d75a466d0680b7fb Mon Sep 17 00:00:00 2001 From: craftxbox Date: Sun, 7 Feb 2021 19:17:35 -0330 Subject: move bars and text input out of misc panel --- webAO/client.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'webAO') diff --git a/webAO/client.html b/webAO/client.html index b5bf968..1b6b9c2 100644 --- a/webAO/client.html +++ b/webAO/client.html @@ -102,18 +102,18 @@ + +
+ +
+
+ +
+
+
- -
- -
-
- -
-
-

@@ -524,4 +524,4 @@ - \ No newline at end of file + -- cgit From 154db7b25b82ff4b3aeae8c0ebcb6ca5e9beaf09 Mon Sep 17 00:00:00 2001 From: craftxbox Date: Sun, 7 Feb 2021 19:20:09 -0330 Subject: Make the ic wrapper a flexbox and hide its overflow --- webAO/styles/client.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'webAO') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index 99381ec..aef8187 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -115,8 +115,9 @@ } #client_icwrapper { - overflow-x: hidden; - overflow-y: auto; + overflow: hidden; + display:flex; + flex-flow: column nowrap; height: 100%; } @@ -616,4 +617,4 @@ .hrtext:after { left: 0.5em; margin-right: -50%; -} \ No newline at end of file +} -- cgit From cbd34433530304845c80d48dbf4c39679eb23e1e Mon Sep 17 00:00:00 2001 From: craftxbox Date: Sun, 7 Feb 2021 19:21:17 -0330 Subject: allow the ic controls/misc panel to overflow --- webAO/styles/client.css | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'webAO') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index aef8187..b86e188 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -121,6 +121,10 @@ height: 100%; } +#client_iccontrols { + overflow-y:auto; +} + @keyframes shake { 0%, -- cgit