diff options
author | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-08-27 18:12:50 +0200 |
---|---|---|
committer | Daniel Calviño Sánchez <danxuliu@gmail.com> | 2018-08-27 18:12:50 +0200 |
commit | c3610d1d172d49601e4cb688f0ec5b90c35ac09d (patch) | |
tree | 0df642727c4d3bc638603c1e3ebb2c0999d9aea7 | |
parent | 8824af324d1d63817a1df305d12bd103331c3f68 (diff) | |
download | nextcloud-server-c3610d1d172d49601e4cb688f0ec5b90c35ac09d.tar.gz nextcloud-server-c3610d1d172d49601e4cb688f0ec5b90c35ac09d.zip |
Remove limit on "max-width" for file names in drag shadow
The general file list sets "max-width: 0" in the file names, which
causes the file names in the drag shadow to have no width for their
content and thus to overlap with the file size.
As that limit is needed for proper layout in the general file list it is
removed only for file names in drag shadows.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
-rw-r--r-- | apps/files/css/files.scss | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 9929855212a..c41255b9868 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -618,6 +618,9 @@ table.dragshadow td.filename { padding-left:60px; padding-right:16px; height: 36px; + + /* Override "max-width: 0" to prevent file name and size from overlapping */ + max-width: unset; } table.dragshadow td.size { padding-right:8px; |