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