blob: 2118cd31e4b6406fe8fc3f0407b95bef54ca4aa8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
@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;
}
/* on mobile, show single shared image at full width without margin */
#imgframe {
width: 100%;
padding: 0;
margin-bottom: 35px;
}
}
|