blob: 3578aff17f2781a801aad562e42a671de0384804 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
@media only screen and (max-width: 600px) {
/* hide size and date columns */
table th#headerSize,
table td.filesize,
table th#headerDate,
table td.date {
display: none;
}
/* restrict length of displayed filename to prevent overflow */
table td.filename .nametext {
max-width: 80% !important;
}
/* and to make room for download button on hover */
table tr:hover td.filename .nametext,
table tr:focus td.filename .nametext {
max-width: 60% !important;
}
}
|