diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-12 20:51:53 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2018-10-18 13:44:10 +0200 |
commit | 25ae3ea29662d2312d09de2a9d0f634e23e9adf6 (patch) | |
tree | a581e510385694453ccba121cb8406f1dfee66bf /apps/files/css | |
parent | b62a48b2cd43a5950e842aa6cbb4c2f1c7f1b05b (diff) | |
download | nextcloud-server-25ae3ea29662d2312d09de2a9d0f634e23e9adf6.tar.gz nextcloud-server-25ae3ea29662d2312d09de2a9d0f634e23e9adf6.zip |
More space for filename on public share page since there is no share icon
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index bb6d942f305..61dbdaaf025 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -975,9 +975,16 @@ table.dragshadow td.size { /* Adjustments for public share page */ #body-public { - /* Position actions menu correctly below 3-dot-menu */ - #filestable.view-grid:not(.hidden) tbody td .popovermenu { - left: -80px; + #filestable.view-grid:not(.hidden) tbody td { + /* More space for filename since there is no share icon */ + &.filename .name .nametext .innernametext { + max-width: 124px; + } + + /* Position actions menu correctly below 3-dot-menu */ + .popovermenu { + left: -80px; + } } /* Right-align view toggle on public share page */ |