2017-02-01 17:39:27 +00:00
|
|
|
/* 938 = table min-width(688) + app-navigation width: 250
|
|
|
|
769 = size where app-navigation (768) is hidden +1
|
|
|
|
688 = table min-width */
|
|
|
|
@media only screen and (max-width: 938px) and (min-width: 769px), only screen and (max-width: 688px) {
|
2014-03-14 08:16:53 +00:00
|
|
|
|
2016-06-15 11:11:25 +00:00
|
|
|
.app-files #app-content.dir-drop{
|
|
|
|
background-color: rgba(255, 255, 255, 1)!important;
|
|
|
|
}
|
|
|
|
|
2014-03-14 08:16:53 +00:00
|
|
|
#body-user #filestable {
|
2018-10-01 10:33:13 +00:00
|
|
|
min-width: 250px;
|
2014-03-14 08:16:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
table th#headerSize,
|
|
|
|
table td.filesize,
|
|
|
|
table th#headerDate,
|
|
|
|
table td.date {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2014-05-16 15:00:39 +00:00
|
|
|
/* remove padding to let border bottom fill the whole width*/
|
|
|
|
table td {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2014-03-21 13:34:05 +00:00
|
|
|
/* remove shift for multiselect bar to account for missing navigation */
|
|
|
|
table.multiselect thead {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
2018-06-02 15:15:19 +00:00
|
|
|
|
2015-08-07 15:58:37 +00:00
|
|
|
#fileList a.action.action-menu img {
|
2015-08-26 07:47:09 +00:00
|
|
|
padding-left: 0;
|
2015-08-07 15:58:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#fileList .fileActionsMenu {
|
2015-08-26 09:07:29 +00:00
|
|
|
margin-right: 6px;
|
2014-03-14 08:16:53 +00:00
|
|
|
}
|
2015-08-07 15:58:37 +00:00
|
|
|
/* hide text of the share action on mobile */
|
2019-06-14 12:16:25 +00:00
|
|
|
/* .hidden-visually for accessbility */
|
|
|
|
#fileList a.action-share span:not(.icon):not(.avatar) {
|
|
|
|
position: absolute;
|
|
|
|
left:-10000px;
|
|
|
|
top: auto;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
overflow: hidden;
|
2014-03-14 08:16:53 +00:00
|
|
|
}
|
|
|
|
|
2017-12-30 06:51:50 +00:00
|
|
|
|
2014-03-25 23:04:11 +00:00
|
|
|
/* proper notification area for multi line messages */
|
|
|
|
#notification-container {
|
|
|
|
display: flex;
|
|
|
|
}
|
2014-06-16 11:51:49 +00:00
|
|
|
|
|
|
|
/* shorten elements for mobile */
|
2014-08-11 00:37:01 +00:00
|
|
|
#uploadprogressbar, #uploadprogressbar .label.inner {
|
2014-06-16 11:51:49 +00:00
|
|
|
width: 50px;
|
|
|
|
}
|
2014-08-11 00:37:01 +00:00
|
|
|
/* hide desktop-only parts */
|
|
|
|
#uploadprogressbar .desktop {
|
|
|
|
display: none !important;
|
2014-03-14 08:16:53 +00:00
|
|
|
}
|
2014-08-11 00:37:01 +00:00
|
|
|
#uploadprogressbar .mobile {
|
|
|
|
display: block !important;
|
2014-03-14 08:16:53 +00:00
|
|
|
}
|
2014-08-11 00:37:01 +00:00
|
|
|
|
2017-12-14 03:05:49 +00:00
|
|
|
/* ensure that it is visible over #app-content */
|
|
|
|
table.dragshadow {
|
|
|
|
z-index: 1000;
|
|
|
|
}
|
|
|
|
|
2016-10-18 09:18:25 +00:00
|
|
|
}
|
2017-12-30 06:51:50 +00:00
|
|
|
@media only screen and (max-width: 480px) {
|
|
|
|
/* Only show icons */
|
2018-06-02 15:15:19 +00:00
|
|
|
table th .selectedActions {
|
|
|
|
float: right;
|
|
|
|
}
|
|
|
|
table th .selectedActions > a span:not(.icon) {
|
2017-12-30 06:51:50 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2018-01-03 00:32:39 +00:00
|
|
|
|
|
|
|
/* Increase touch area for the icons */
|
|
|
|
table th .selectedActions a {
|
|
|
|
padding: 17px 14px;
|
|
|
|
}
|
2018-01-03 01:22:00 +00:00
|
|
|
|
|
|
|
/* Remove the margin to reduce the overlap between the name and the icons */
|
|
|
|
table.multiselect th .columntitle.name {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2017-12-30 06:51:50 +00:00
|
|
|
}
|