Better use of space on search table for desktop.

This commit is contained in:
2023-11-05 08:36:14 -08:00
parent 69558f15b4
commit 035508f3ad
2 changed files with 15 additions and 2 deletions

View File

@@ -28,12 +28,24 @@ iframe {
height: 100%;
width: 100%;
}
.index {
table-layout: fixed;
width: 100%;
}
.index .from {
width: 200px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 15em;
}
.index .subject {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.index .date {
width: 8em;
white-space: nowrap;
}
.footer {