Take full width on public sharing files view
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
This commit is contained in:
parent
41afaa999e
commit
40b8b3d70c
1 changed files with 18 additions and 13 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Reference in a new issue