2018-11-14 11:19:35 -05:00
|
|
|
@media only screen and (max-width: $breakpoint-mobile) {
|
2014-01-14 16:14:06 -05:00
|
|
|
|
2014-01-29 11:20:55 -05:00
|
|
|
/* make header scroll up for single shares, more view of content on small screens */
|
|
|
|
|
#header.share-file {
|
|
|
|
|
position: absolute !important;
|
|
|
|
|
}
|
2014-01-14 16:14:06 -05:00
|
|
|
|
|
|
|
|
/* hide size and date columns */
|
|
|
|
|
table th#headerSize,
|
|
|
|
|
table td.filesize,
|
|
|
|
|
table th#headerDate,
|
|
|
|
|
table td.date {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-15 08:45:10 -05:00
|
|
|
/* restrict length of displayed filename to prevent overflow */
|
|
|
|
|
table td.filename .nametext {
|
2014-01-29 05:43:34 -05:00
|
|
|
max-width: 75% !important;
|
2014-01-15 08:45:10 -05:00
|
|
|
}
|
|
|
|
|
|
2014-01-16 09:56:18 -05:00
|
|
|
/* on mobile, show single shared image at full width without margin */
|
|
|
|
|
#imgframe {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 0;
|
|
|
|
|
margin-bottom: 35px;
|
|
|
|
|
}
|
2014-01-29 09:28:57 -05:00
|
|
|
/* some margin for the file type icon */
|
|
|
|
|
#imgframe .publicpreview {
|
|
|
|
|
margin-top: 32px;
|
|
|
|
|
}
|
2014-01-16 09:56:18 -05:00
|
|
|
|
2014-01-29 05:43:34 -05:00
|
|
|
/* some padding for better clickability */
|
|
|
|
|
#fileList a.action img {
|
|
|
|
|
padding: 0 6px 0 12px;
|
|
|
|
|
}
|
|
|
|
|
/* hide text of the actions on mobile */
|
2016-11-29 11:06:09 -05:00
|
|
|
#fileList a.action:not(.menuitem) span {
|
2014-01-29 05:43:34 -05:00
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2014-03-25 19:14:38 -04:00
|
|
|
/* ellipsis on file names */
|
|
|
|
|
.nametext {
|
|
|
|
|
width: 60%;
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-29 12:02:14 -04:00
|
|
|
#header .menutoggle {
|
|
|
|
|
padding-right: 14px;
|
|
|
|
|
background-position: center;
|
|
|
|
|
}
|
2018-11-06 04:54:58 -05:00
|
|
|
.note {
|
|
|
|
|
padding: 0 20px;
|
|
|
|
|
}
|
2018-10-03 03:40:22 -04:00
|
|
|
|
2018-11-06 04:54:58 -05:00
|
|
|
#emptycontent {
|
|
|
|
|
margin-top: 10vh;
|
|
|
|
|
}
|
2014-01-14 16:14:06 -05:00
|
|
|
}
|