2014-01-15 01:14:06 +04:00
|
|
|
@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;
|
|
|
|
}
|
|
|
|
|
2014-01-15 17:45:10 +04:00
|
|
|
/* 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;
|
|
|
|
}
|
|
|
|
|
2014-01-16 18:56:18 +04:00
|
|
|
/* on mobile, show single shared image at full width without margin */
|
|
|
|
#imgframe {
|
|
|
|
width: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 35px;
|
|
|
|
}
|
|
|
|
|
2014-01-15 01:14:06 +04:00
|
|
|
|
|
|
|
}
|