From 84db1ce9a2eaf6670605104d2ede8683159b67df Mon Sep 17 00:00:00 2001 From: stonedDiscord Date: Sat, 31 Aug 2024 14:30:52 +0200 Subject: playerlist fixes --- webAO/styles/client.css | 4 ++++ webAO/styles/mod.css | 3 +++ webAO/styles/nomod.css | 3 +++ 3 files changed, 10 insertions(+) create mode 100644 webAO/styles/mod.css create mode 100644 webAO/styles/nomod.css (limited to 'webAO/styles') diff --git a/webAO/styles/client.css b/webAO/styles/client.css index f95613a..1525500 100644 --- a/webAO/styles/client.css +++ b/webAO/styles/client.css @@ -563,6 +563,10 @@ color: #fff; } +#client_playerlist { + overflow-y: scroll; +} + #client_menu { overflow-y: auto; height: 100%; diff --git a/webAO/styles/mod.css b/webAO/styles/mod.css new file mode 100644 index 0000000..859996f --- /dev/null +++ b/webAO/styles/mod.css @@ -0,0 +1,3 @@ +table#client_playerlist td:nth-child(5), td:nth-child(6) { + display: inherit; +} \ No newline at end of file diff --git a/webAO/styles/nomod.css b/webAO/styles/nomod.css new file mode 100644 index 0000000..79d4d12 --- /dev/null +++ b/webAO/styles/nomod.css @@ -0,0 +1,3 @@ +table#client_playerlist td:nth-child(5), td:nth-child(6) { + display: none; +} \ No newline at end of file -- cgit