Allow horizontal scroll on small screens for tables

This is applied to the .hosts and #t01 tables only
This commit is contained in:
Roan Horning 2024-10-20 10:18:20 -04:00
parent 85258d03ba
commit 5cfb37cae2
Signed by: rho_n
GPG Key ID: 234AEF20B72D5769

View File

@ -291,6 +291,17 @@ table.hosts {
} }
table#t01,
table.hosts {
display: block;
overflow-x: auto;
}
table#t01 tbody,
table.hosts tbody {
display: table;
}
table#t01 tr:nth-child(even), table#t01 tr:nth-child(even),
table.hosts tr:nth-child(even) { table.hosts tr:nth-child(even) {
background-color: #cccccc; background-color: #cccccc;