@media only screen and (max-width: 600px) {
-/* make header and controls bar scroll up for more view of content on small screens */
-#header,
-#controls {
- position: absolute;
-}
/* hide size and date columns */
table th#headerSize,
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;
+}
+
}