aboutsummaryrefslogtreecommitdiff
path: root/webAO/styles
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2024-08-31 14:30:52 +0200
committerstonedDiscord <Tukz@gmx.de>2024-08-31 14:30:52 +0200
commit84db1ce9a2eaf6670605104d2ede8683159b67df (patch)
tree57f22ac4384b78ec80f23ffac7445a5cc63c8ef3 /webAO/styles
parentc4f8f6fac11d9a40302d00ed3b3bee70a77b695c (diff)
playerlist fixes
Diffstat (limited to 'webAO/styles')
-rw-r--r--webAO/styles/client.css4
-rw-r--r--webAO/styles/mod.css3
-rw-r--r--webAO/styles/nomod.css3
3 files changed, 10 insertions, 0 deletions
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