Limit width of name cell in table to prevent abuse

This commit is contained in:
Phillip Kühne 2019-08-22 16:19:40 +02:00
parent 8f10f9b500
commit ae158fd920

View File

@ -28,6 +28,15 @@ main {
width: 100%; width: 100%;
} }
table td {
overflow: hidden;
text-overflow: ellipsis;
}
table td:first-child {
max-width: 200px !important;
}
@media (min-width: 768px) { @media (min-width: 768px) {
.topbutton { .topbutton {
width: auto; width: auto;