diff options
Diffstat (limited to 'webAO/styles')
| -rw-r--r-- | webAO/styles/client.css | 4 | ||||
| -rw-r--r-- | webAO/styles/mod.css | 3 | ||||
| -rw-r--r-- | webAO/styles/nomod.css | 3 |
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 |
