Take full width on public sharing files view

Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ (skjnldsv) 2020-03-05 16:10:51 +01:00
parent 41afaa999e
commit 40b8b3d70c
No known key found for this signature in database
GPG key ID: 60C25B8C072916CF

View file

@ -8,21 +8,25 @@ $min-table-width: 688px;
background-color: rgba(255, 255, 255, 1)!important; background-color: rgba(255, 255, 255, 1)!important;
} }
#body-user #filestable { table#filestable {
min-width: 250px; // reduce horizontal padding
display: initial; td.filesize,
} td.date {
padding: 0 5px;
}
table th#headerSize, // Hide size and date columns on mobile
table td.filesize, th#headerSize,
table th#headerDate, th#headerDate,
table td.date { td.filesize,
td.date {
display: none; display: none;
} }
/* remove padding to let border bottom fill the whole width*/ // Only the name is displayed, lets' make sure it takes the full width
table td { td.filename a.name {
padding: 0; width: 100vw;
}
} }
/* remove shift for multiselect bar to account for missing navigation */ /* remove shift for multiselect bar to account for missing navigation */
@ -37,6 +41,7 @@ table.multiselect thead {
#fileList .fileActionsMenu { #fileList .fileActionsMenu {
margin-right: 6px; margin-right: 6px;
} }
/* hide text of the share action on mobile */ /* hide text of the share action on mobile */
/* .hidden-visually for accessbility */ /* .hidden-visually for accessbility */
#fileList a.action-share span:not(.icon):not(.avatar) { #fileList a.action-share span:not(.icon):not(.avatar) {